:root {
            --primary-color: hsl(273, 68%, 44%);
            --secondary-color: hsl(273, 68%, 29%);
            --accent-color: hsl(273, 68%, 69%);
        }
        
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        .navbar {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
            padding: 1rem 0;
        }
        
        .navbar-brand {
            font-weight: 700;
            font-size: 1.5rem;
            color: white !important;
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }
        
        .navbar-brand:hover {
            color: var(--accent-color) !important;
            transform: scale(1.05);
            transition: all 0.3s ease;
        }
        
        .navbar-nav .nav-link {
            color: rgba(255, 255, 255, 0.9) !important;
            font-weight: 500;
            margin: 0 0.5rem;
            padding: 0.75rem 1rem !important;
            border-radius: 8px;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .navbar-nav .nav-link:hover {
            color: white !important;
            background: var(--accent-color);
            transform: translateY(-2px);
        }
        
        .navbar-toggler {
            border: none;
            padding: 0.5rem;
        }
        
        .navbar-toggler:focus {
            box-shadow: none;
        }
        
        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.9%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        .logo-glow {
            filter: drop-shadow(0 0 10px var(--accent-color));
        }
        
        @media (max-width: 991.98px) {
            .navbar-collapse {
                background: rgba(255, 255, 255, 0.1);
                backdrop-filter: blur(10px);
                border-radius: 12px;
                margin-top: 1rem;
                padding: 1rem;
            }
        }

.about-section {
    background: linear-gradient(135deg, hsl(273, 68%, 44%) 0%, hsl(273, 68%, 29%) 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="stars" x="0" y="0" width="10" height="10" patternUnits="userSpaceOnUse"><circle cx="2" cy="2" r="0.5" fill="rgba(255,255,255,0.1)"/><circle cx="8" cy="7" r="0.3" fill="rgba(255,255,255,0.08)"/></pattern></defs><rect width="100" height="100" fill="url(%23stars)"/></svg>') repeat;
    opacity: 0.3;
}

.about-content {
    position: relative;
    z-index: 2;
}

.about-title {
    color: white;
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 30px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    line-height: 1.2;
}

.about-subtitle {
    color: hsl(273, 68%, 69%);
    font-size: 1.4rem;
    margin-bottom: 40px;
    font-weight: 300;
    letter-spacing: 1px;
}

.about-text {
    color: rgba(255,255,255,0.9);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 30px;
    text-align: justify;
}

.about-highlight {
    background: rgba(255,255,255,0.1);
    padding: 30px;
    border-radius: 15px;
    border-left: 5px solid hsl(273, 68%, 69%);
    margin: 40px 0;
    backdrop-filter: blur(10px);
}

.about-highlight h4 {
    color: hsl(273, 68%, 69%);
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.about-image {
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    transition: transform 0.3s ease;
    width: 100%;
    height: auto;
    object-fit: cover;
}

.about-image:hover {
    transform: translateY(-10px);
}

.image-wrapper {
    position: relative;
    margin-bottom: 30px;
}

.image-wrapper::after {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    right: -20px;
    bottom: -20px;
    background: linear-gradient(45deg, hsl(273, 68%, 69%), hsl(273, 68%, 44%));
    border-radius: 20px;
    z-index: -1;
    opacity: 0.3;
}

.mission-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 50px 0;
}

.mission-card {
    background: rgba(255,255,255,0.05);
    padding: 25px;
    border-radius: 15px;
    border: 1px solid rgba(255,255,255,0.1);
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
}

.mission-card:hover {
    background: rgba(255,255,255,0.1);
    transform: translateY(-5px);
}

.mission-card h5 {
    color: hsl(273, 68%, 69%);
    font-size: 1.2rem;
    margin-bottom: 15px;
    font-weight: 600;
}

@media (max-width: 768px) {
    .about-title {
        font-size: 2.5rem;
    }
    
    .about-section {
        padding: 60px 0;
    }
    
    .image-wrapper::after {
        display: none;
    }
}

.advantages-section {
    background: linear-gradient(135deg, hsl(273, 68%, 44%) 0%, hsl(273, 68%, 29%) 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.advantages-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(255,255,255,0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(255,255,255,0.1) 0%, transparent 50%);
}

.section-title {
    color: white;
    font-size: 3.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.section-subtitle {
    color: hsl(273, 68%, 69%);
    font-size: 1.3rem;
    text-align: center;
    margin-bottom: 80px;
    font-weight: 300;
}

.timeline-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(to bottom, hsl(273, 68%, 69%), hsl(273, 68%, 44%));
    transform: translateX(-50%);
    border-radius: 2px;
    box-shadow: 0 0 20px rgba(255,255,255,0.3);
}

.advantage-item {
    position: relative;
    margin-bottom: 60px;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards;
}

.advantage-item:nth-child(1) { animation-delay: 0.1s; }
.advantage-item:nth-child(2) { animation-delay: 0.2s; }
.advantage-item:nth-child(3) { animation-delay: 0.3s; }
.advantage-item:nth-child(4) { animation-delay: 0.4s; }
.advantage-item:nth-child(5) { animation-delay: 0.5s; }
.advantage-item:nth-child(6) { animation-delay: 0.6s; }
.advantage-item:nth-child(7) { animation-delay: 0.7s; }
.advantage-item:nth-child(8) { animation-delay: 0.8s; }
.advantage-item:nth-child(9) { animation-delay: 0.9s; }
.advantage-item:nth-child(10) { animation-delay: 1.0s; }
.advantage-item:nth-child(11) { animation-delay: 1.1s; }
.advantage-item:nth-child(12) { animation-delay: 1.2s; }

.advantage-card {
    background: rgba(255,255,255,0.95);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
    transition: all 0.4s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.advantage-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: left 0.6s ease;
}

.advantage-card:hover::before {
    left: 100%;
}

.advantage-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0,0,0,0.3);
    border-color: hsl(273, 68%, 69%);
}

.advantage-left {
    text-align: right;
}

.advantage-right {
    text-align: left;
}

.advantage-left .advantage-card {
    margin-right: 60px;
}

.advantage-right .advantage-card {
    margin-left: 60px;
}

.timeline-dot {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 20px;
    height: 20px;
    background: hsl(273, 68%, 69%);
    border: 4px solid white;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 20px rgba(255,255,255,0.5);
    z-index: 10;
}

.advantage-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, hsl(273, 68%, 44%), hsl(273, 68%, 29%));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}

.advantage-left .advantage-icon {
    margin-left: auto;
    margin-right: 0;
}

.advantage-right .advantage-icon {
    margin-left: 0;
    margin-right: auto;
}

.advantage-icon i {
    font-size: 2rem;
    color: white;
}

.advantage-card:hover .advantage-icon {
    transform: rotate(360deg) scale(1.1);
    box-shadow: 0 15px 35px rgba(0,0,0,0.3);
}

.advantage-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: hsl(273, 68%, 29%);
    margin-bottom: 15px;
    line-height: 1.3;
}

.advantage-description {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.6;
    font-weight: 400;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .timeline-line {
        left: 30px;
    }
    
    .timeline-dot {
        left: 30px;
    }
    
    .advantage-left,
    .advantage-right {
        text-align: left;
    }
    
    .advantage-left .advantage-card,
    .advantage-right .advantage-card {
        margin-left: 80px;
        margin-right: 0;
    }
    
    .advantage-left .advantage-icon,
    .advantage-right .advantage-icon {
        margin-left: 0;
        margin-right: auto;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .section-subtitle {
        font-size: 1.1rem;
    }
}

.statistics-section {
    background: linear-gradient(135deg, hsl(273, 68%, 44%) 0%, hsl(273, 68%, 29%) 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.statistics-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="40" r="1.5" fill="rgba(255,255,255,0.08)"/><circle cx="40" cy="80" r="1" fill="rgba(255,255,255,0.12)"/><circle cx="90" cy="90" r="2" fill="rgba(255,255,255,0.06)"/><circle cx="10" cy="60" r="1.2" fill="rgba(255,255,255,0.1)"/><circle cx="60" cy="10" r="1.8" fill="rgba(255,255,255,0.07)"/></svg>');
    animation: starfield 20s linear infinite;
}

@keyframes starfield {
    0% { transform: translateY(0) rotate(0deg); }
    100% { transform: translateY(-100px) rotate(360deg); }
}

.section-title {
    color: white;
    font-size: 3.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.section-subtitle {
    color: hsl(273, 68%, 69%);
    font-size: 1.3rem;
    text-align: center;
    margin-bottom: 80px;
    font-weight: 300;
}

.stats-container {
    position: relative;
    z-index: 2;
}

.stat-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    height: 100%;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.1), transparent);
    transform: rotate(45deg);
    transition: all 0.6s ease;
    opacity: 0;
}

.stat-card:hover::before {
    opacity: 1;
    transform: rotate(45deg) translate(50%, 50%);
}

.stat-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
    border-color: hsl(273, 68%, 69%);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.stat-icon {
    font-size: 3rem;
    color: hsl(273, 68%, 69%);
    margin-bottom: 20px;
    display: block;
    transition: all 0.3s ease;
}

.stat-card:hover .stat-icon {
    color: white;
    transform: scale(1.1);
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 15px;
    line-height: 1;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.stat-label {
    font-size: 1.1rem;
    color: hsl(273, 68%, 69%);
    font-weight: 500;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat-description {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
    font-weight: 300;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2.5rem;
    }
    
    .section-subtitle {
        font-size: 1.1rem;
        margin-bottom: 60px;
    }
    
    .stat-card {
        padding: 30px 20px;
        margin-bottom: 30px;
    }
    
    .stat-number {
        font-size: 2.8rem;
    }
    
    .stat-icon {
        font-size: 2.5rem;
    }
}

.footer-section {
    background: linear-gradient(135deg, hsl(273, 68%, 29%) 0%, hsl(273, 68%, 44%) 100%);
    color: white;
    padding: 60px 0 30px;
    position: relative;
    overflow: hidden;
}

.footer-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 20"><defs><radialGradient id="star" cx="50%" cy="50%" r="50%"><stop offset="0%" style="stop-color:rgba(255,255,255,0.8)"/><stop offset="100%" style="stop-color:rgba(255,255,255,0)"/></radialGradient></defs><circle cx="10" cy="5" r="0.5" fill="url(%23star)"/><circle cx="30" cy="15" r="0.3" fill="url(%23star)"/><circle cx="70" cy="8" r="0.4" fill="url(%23star)"/><circle cx="90" cy="12" r="0.2" fill="url(%23star)"/></svg>') repeat;
    opacity: 0.3;
    animation: twinkle 3s ease-in-out infinite alternate;
}

@keyframes twinkle {
    0% { opacity: 0.2; }
    100% { opacity: 0.5; }
}

.footer-content {
    position: relative;
    z-index: 2;
}

.footer-title {
    color: hsl(273, 68%, 69%);
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.footer-description {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 30px;
    color: rgba(255,255,255,0.9);
}

.footer-links h5 {
    color: hsl(273, 68%, 69%);
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.footer-links a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    display: block;
    padding: 5px 0;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.footer-links a:hover {
    color: hsl(273, 68%, 69%);
    padding-left: 10px;
    transform: translateX(5px);
}

.contact-info {
    background: rgba(255,255,255,0.1);
    padding: 20px;
    border-radius: 10px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
}

.contact-info h5 {
    color: hsl(273, 68%, 69%);
    margin-bottom: 15px;
}

.contact-item {
    margin-bottom: 10px;
    color: rgba(255,255,255,0.9);
}

.contact-item i {
    color: hsl(273, 68%, 69%);
    margin-right: 10px;
    width: 20px;
}

.phone-link {
    color: rgba(255,255,255,0.9);
    text-decoration: none;
    transition: color 0.3s ease;
}

.phone-link:hover {
    color: hsl(273, 68%, 69%);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.2);
    margin-top: 40px;
    padding-top: 20px;
    text-align: center;
    color: rgba(255,255,255,0.7);
}

.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, hsl(273, 68%, 44%) 0%, hsl(273, 68%, 29%) 100%);
    color: white;
    padding: 20px 0;
    z-index: 9999;
    box-shadow: 0 -5px 20px rgba(0,0,0,0.3);
    transform: translateY(100%);
    transition: transform 0.5s ease;
}

.cookie-notice.show {
    transform: translateY(0);
}

.cookie-text {
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 15px;
}

.cookie-buttons .btn {
    margin: 5px;
    border-radius: 25px;
    font-weight: 600;
    padding: 8px 20px;
    transition: all 0.3s ease;
}

.btn-accept {
    background: hsl(273, 68%, 69%);
    border: none;
    color: hsl(273, 68%, 29%);
}

.btn-accept:hover {
    background: white;
    color: hsl(273, 68%, 29%);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.btn-learn {
    background: transparent;
    border: 2px solid hsl(273, 68%, 69%);
    color: hsl(273, 68%, 69%);
}

.btn-learn:hover {
    background: hsl(273, 68%, 69%);
    color: hsl(273, 68%, 29%);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .footer-section {
        padding: 40px 0 20px;
    }
    
    .footer-title {
        font-size: 1.8rem;
    }
    
    .cookie-notice {
        padding: 15px 0;
    }
    
    .cookie-buttons {
        text-align: center;
    }
    
    .cookie-buttons .btn {
        display: block;
        width: 100%;
        margin: 5px 0;
    }
}

:root {
            --primary-color: hsl(273, 68%, 44%);
            --secondary-color: hsl(273, 68%, 29%);
            --accent-color: hsl(273, 68%, 69%);
        }
        
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        .navbar {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
            padding: 1rem 0;
        }
        
        .navbar-brand {
            font-weight: 700;
            font-size: 1.5rem;
            color: white !important;
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }
        
        .navbar-brand:hover {
            color: var(--accent-color) !important;
            transform: scale(1.05);
            transition: all 0.3s ease;
        }
        
        .navbar-nav .nav-link {
            color: rgba(255, 255, 255, 0.9) !important;
            font-weight: 500;
            margin: 0 0.5rem;
            padding: 0.75rem 1rem !important;
            border-radius: 8px;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .navbar-nav .nav-link:hover {
            color: white !important;
            background: var(--accent-color);
            transform: translateY(-2px);
        }
        
        .navbar-toggler {
            border: none;
            padding: 0.5rem;
        }
        
        .navbar-toggler:focus {
            box-shadow: none;
        }
        
        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.9%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        .logo-glow {
            filter: drop-shadow(0 0 10px var(--accent-color));
        }
        
        @media (max-width: 991.98px) {
            .navbar-collapse {
                background: rgba(255, 255, 255, 0.1);
                backdrop-filter: blur(10px);
                border-radius: 12px;
                margin-top: 1rem;
                padding: 1rem;
            }
        }

.privacy-policy {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.7;
    color: #333;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
}

.policy-container {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
}

.policy-header {
    text-align: center;
    margin-bottom: 50px;
    padding-bottom: 30px;
    border-bottom: 3px solid #667eea;
}

.policy-title {
    font-size: 3rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.policy-subtitle {
    font-size: 1.2rem;
    color: #7f8c8d;
    font-weight: 300;
}

.section-title {
    font-size: 1.8rem;
    font-weight: 600;
    color: #34495e;
    margin: 40px 0 20px 0;
    padding-left: 20px;
    border-left: 5px solid #667eea;
    position: relative;
}

.section-title::before {
    content: '';
    position: absolute;
    left: -5px;
    top: 0;
    height: 100%;
    width: 5px;
    background: linear-gradient(45deg, #667eea, #764ba2);
    border-radius: 3px;
}

.policy-content {
    font-size: 1.1rem;
    margin-bottom: 25px;
    text-align: justify;
    color: #444;
}

.highlight-box {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: white;
    padding: 25px;
    border-radius: 15px;
    margin: 30px 0;
    box-shadow: 0 10px 20px rgba(240, 147, 251, 0.3);
}

.rights-list {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 15px;
    margin: 25px 0;
    border: 1px solid #e9ecef;
}

.rights-list ul {
    list-style: none;
    padding: 0;
}

.rights-list li {
    padding: 10px 0;
    border-bottom: 1px solid #dee2e6;
    position: relative;
    padding-left: 30px;
}

.rights-list li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #28a745;
    font-weight: bold;
    font-size: 1.2rem;
}

.data-types {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.data-card {
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    border: 1px solid #f0f0f0;
    transition: transform 0.3s ease;
}

.data-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.effective-date {
    text-align: center;
    font-style: italic;
    color: #6c757d;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 2px solid #e9ecef;
    font-size: 1rem;
}

@media (max-width: 768px) {
    .policy-container {
        padding: 30px 20px;
    }
    
    .policy-title {
        font-size: 2.2rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .data-types {
        grid-template-columns: 1fr;
    }
}

.footer-section {
    background: linear-gradient(135deg, hsl(273, 68%, 29%) 0%, hsl(273, 68%, 44%) 100%);
    color: white;
    padding: 60px 0 30px;
    position: relative;
    overflow: hidden;
}

.footer-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 20"><defs><radialGradient id="star" cx="50%" cy="50%" r="50%"><stop offset="0%" style="stop-color:rgba(255,255,255,0.8)"/><stop offset="100%" style="stop-color:rgba(255,255,255,0)"/></radialGradient></defs><circle cx="10" cy="5" r="0.5" fill="url(%23star)"/><circle cx="30" cy="15" r="0.3" fill="url(%23star)"/><circle cx="70" cy="8" r="0.4" fill="url(%23star)"/><circle cx="90" cy="12" r="0.2" fill="url(%23star)"/></svg>') repeat;
    opacity: 0.3;
    animation: twinkle 3s ease-in-out infinite alternate;
}

@keyframes twinkle {
    0% { opacity: 0.2; }
    100% { opacity: 0.5; }
}

.footer-content {
    position: relative;
    z-index: 2;
}

.footer-title {
    color: hsl(273, 68%, 69%);
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.footer-description {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 30px;
    color: rgba(255,255,255,0.9);
}

.footer-links h5 {
    color: hsl(273, 68%, 69%);
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.footer-links a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    display: block;
    padding: 5px 0;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.footer-links a:hover {
    color: hsl(273, 68%, 69%);
    padding-left: 10px;
    transform: translateX(5px);
}

.contact-info {
    background: rgba(255,255,255,0.1);
    padding: 20px;
    border-radius: 10px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
}

.contact-info h5 {
    color: hsl(273, 68%, 69%);
    margin-bottom: 15px;
}

.contact-item {
    margin-bottom: 10px;
    color: rgba(255,255,255,0.9);
}

.contact-item i {
    color: hsl(273, 68%, 69%);
    margin-right: 10px;
    width: 20px;
}

.phone-link {
    color: rgba(255,255,255,0.9);
    text-decoration: none;
    transition: color 0.3s ease;
}

.phone-link:hover {
    color: hsl(273, 68%, 69%);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.2);
    margin-top: 40px;
    padding-top: 20px;
    text-align: center;
    color: rgba(255,255,255,0.7);
}

.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, hsl(273, 68%, 44%) 0%, hsl(273, 68%, 29%) 100%);
    color: white;
    padding: 20px 0;
    z-index: 9999;
    box-shadow: 0 -5px 20px rgba(0,0,0,0.3);
    transform: translateY(100%);
    transition: transform 0.5s ease;
}

.cookie-notice.show {
    transform: translateY(0);
}

.cookie-text {
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 15px;
}

.cookie-buttons .btn {
    margin: 5px;
    border-radius: 25px;
    font-weight: 600;
    padding: 8px 20px;
    transition: all 0.3s ease;
}

.btn-accept {
    background: hsl(273, 68%, 69%);
    border: none;
    color: hsl(273, 68%, 29%);
}

.btn-accept:hover {
    background: white;
    color: hsl(273, 68%, 29%);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.btn-learn {
    background: transparent;
    border: 2px solid hsl(273, 68%, 69%);
    color: hsl(273, 68%, 69%);
}

.btn-learn:hover {
    background: hsl(273, 68%, 69%);
    color: hsl(273, 68%, 29%);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .footer-section {
        padding: 40px 0 20px;
    }
    
    .footer-title {
        font-size: 1.8rem;
    }
    
    .cookie-notice {
        padding: 15px 0;
    }
    
    .cookie-buttons {
        text-align: center;
    }
    
    .cookie-buttons .btn {
        display: block;
        width: 100%;
        margin: 5px 0;
    }
}

:root {
            --primary-color: hsl(273, 68%, 44%);
            --secondary-color: hsl(273, 68%, 29%);
            --accent-color: hsl(273, 68%, 69%);
        }
        
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        .navbar {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
            padding: 1rem 0;
        }
        
        .navbar-brand {
            font-weight: 700;
            font-size: 1.5rem;
            color: white !important;
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }
        
        .navbar-brand:hover {
            color: var(--accent-color) !important;
            transform: scale(1.05);
            transition: all 0.3s ease;
        }
        
        .navbar-nav .nav-link {
            color: rgba(255, 255, 255, 0.9) !important;
            font-weight: 500;
            margin: 0 0.5rem;
            padding: 0.75rem 1rem !important;
            border-radius: 8px;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .navbar-nav .nav-link:hover {
            color: white !important;
            background: var(--accent-color);
            transform: translateY(-2px);
        }
        
        .navbar-toggler {
            border: none;
            padding: 0.5rem;
        }
        
        .navbar-toggler:focus {
            box-shadow: none;
        }
        
        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.9%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        .logo-glow {
            filter: drop-shadow(0 0 10px var(--accent-color));
        }
        
        @media (max-width: 991.98px) {
            .navbar-collapse {
                background: rgba(255, 255, 255, 0.1);
                backdrop-filter: blur(10px);
                border-radius: 12px;
                margin-top: 1rem;
                padding: 1rem;
            }
        }

.cookies-policy {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.7;
    color: #333;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
}

.policy-container {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(10px);
}

.policy-header {
    text-align: center;
    margin-bottom: 50px;
    padding-bottom: 30px;
    border-bottom: 3px solid #667eea;
}

.policy-title {
    font-size: 3rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.policy-subtitle {
    font-size: 1.2rem;
    color: #7f8c8d;
    font-weight: 300;
}

.section-title {
    font-size: 1.8rem;
    font-weight: 600;
    color: #2c3e50;
    margin: 40px 0 20px 0;
    padding-left: 20px;
    border-left: 5px solid #667eea;
    position: relative;
}

.section-title::before {
    content: '';
    position: absolute;
    left: -10px;
    top: 50%;
    transform: translateY(-50%);
    width: 15px;
    height: 15px;
    background: #667eea;
    border-radius: 50%;
}

.policy-text {
    font-size: 1.1rem;
    margin-bottom: 25px;
    text-align: justify;
    color: #34495e;
}

.cookie-types {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.cookie-type {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 25px;
    border-radius: 15px;
    border-left: 5px solid #667eea;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cookie-type:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.cookie-type h4 {
    color: #2c3e50;
    font-size: 1.3rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.cookie-type p {
    color: #5a6c7d;
    margin: 0;
    font-size: 1rem;
}

.highlight-box {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 30px;
    border-radius: 15px;
    margin: 30px 0;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

.highlight-box h3 {
    margin-top: 0;
    font-size: 1.5rem;
    font-weight: 600;
}

.consent-info {
    background: #e8f5e8;
    border: 2px solid #4caf50;
    padding: 25px;
    border-radius: 12px;
    margin: 25px 0;
}

.consent-info h4 {
    color: #2e7d32;
    margin-top: 0;
    font-size: 1.3rem;
}

.gdpr-badge {
    display: inline-block;
    background: #4caf50;
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    margin: 10px 5px;
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
}

.last-updated {
    text-align: center;
    margin-top: 50px;
    padding-top: 30px;
    border-top: 2px solid #ecf0f1;
    color: #7f8c8d;
    font-style: italic;
}

@media (max-width: 768px) {
    .policy-container {
        padding: 30px 20px;
    }
    
    .policy-title {
        font-size: 2.2rem;
    }
    
    .cookie-types {
        grid-template-columns: 1fr;
    }
}

.footer-section {
    background: linear-gradient(135deg, hsl(273, 68%, 29%) 0%, hsl(273, 68%, 44%) 100%);
    color: white;
    padding: 60px 0 30px;
    position: relative;
    overflow: hidden;
}

.footer-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 20"><defs><radialGradient id="star" cx="50%" cy="50%" r="50%"><stop offset="0%" style="stop-color:rgba(255,255,255,0.8)"/><stop offset="100%" style="stop-color:rgba(255,255,255,0)"/></radialGradient></defs><circle cx="10" cy="5" r="0.5" fill="url(%23star)"/><circle cx="30" cy="15" r="0.3" fill="url(%23star)"/><circle cx="70" cy="8" r="0.4" fill="url(%23star)"/><circle cx="90" cy="12" r="0.2" fill="url(%23star)"/></svg>') repeat;
    opacity: 0.3;
    animation: twinkle 3s ease-in-out infinite alternate;
}

@keyframes twinkle {
    0% { opacity: 0.2; }
    100% { opacity: 0.5; }
}

.footer-content {
    position: relative;
    z-index: 2;
}

.footer-title {
    color: hsl(273, 68%, 69%);
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.footer-description {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 30px;
    color: rgba(255,255,255,0.9);
}

.footer-links h5 {
    color: hsl(273, 68%, 69%);
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.footer-links a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    display: block;
    padding: 5px 0;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.footer-links a:hover {
    color: hsl(273, 68%, 69%);
    padding-left: 10px;
    transform: translateX(5px);
}

.contact-info {
    background: rgba(255,255,255,0.1);
    padding: 20px;
    border-radius: 10px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
}

.contact-info h5 {
    color: hsl(273, 68%, 69%);
    margin-bottom: 15px;
}

.contact-item {
    margin-bottom: 10px;
    color: rgba(255,255,255,0.9);
}

.contact-item i {
    color: hsl(273, 68%, 69%);
    margin-right: 10px;
    width: 20px;
}

.phone-link {
    color: rgba(255,255,255,0.9);
    text-decoration: none;
    transition: color 0.3s ease;
}

.phone-link:hover {
    color: hsl(273, 68%, 69%);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.2);
    margin-top: 40px;
    padding-top: 20px;
    text-align: center;
    color: rgba(255,255,255,0.7);
}

.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, hsl(273, 68%, 44%) 0%, hsl(273, 68%, 29%) 100%);
    color: white;
    padding: 20px 0;
    z-index: 9999;
    box-shadow: 0 -5px 20px rgba(0,0,0,0.3);
    transform: translateY(100%);
    transition: transform 0.5s ease;
}

.cookie-notice.show {
    transform: translateY(0);
}

.cookie-text {
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 15px;
}

.cookie-buttons .btn {
    margin: 5px;
    border-radius: 25px;
    font-weight: 600;
    padding: 8px 20px;
    transition: all 0.3s ease;
}

.btn-accept {
    background: hsl(273, 68%, 69%);
    border: none;
    color: hsl(273, 68%, 29%);
}

.btn-accept:hover {
    background: white;
    color: hsl(273, 68%, 29%);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.btn-learn {
    background: transparent;
    border: 2px solid hsl(273, 68%, 69%);
    color: hsl(273, 68%, 69%);
}

.btn-learn:hover {
    background: hsl(273, 68%, 69%);
    color: hsl(273, 68%, 29%);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .footer-section {
        padding: 40px 0 20px;
    }
    
    .footer-title {
        font-size: 1.8rem;
    }
    
    .cookie-notice {
        padding: 15px 0;
    }
    
    .cookie-buttons {
        text-align: center;
    }
    
    .cookie-buttons .btn {
        display: block;
        width: 100%;
        margin: 5px 0;
    }
}

:root {
            --primary-color: hsl(273, 68%, 44%);
            --secondary-color: hsl(273, 68%, 29%);
            --accent-color: hsl(273, 68%, 69%);
        }
        
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        .navbar {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
            padding: 1rem 0;
        }
        
        .navbar-brand {
            font-weight: 700;
            font-size: 1.5rem;
            color: white !important;
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }
        
        .navbar-brand:hover {
            color: var(--accent-color) !important;
            transform: scale(1.05);
            transition: all 0.3s ease;
        }
        
        .navbar-nav .nav-link {
            color: rgba(255, 255, 255, 0.9) !important;
            font-weight: 500;
            margin: 0 0.5rem;
            padding: 0.75rem 1rem !important;
            border-radius: 8px;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .navbar-nav .nav-link:hover {
            color: white !important;
            background: var(--accent-color);
            transform: translateY(-2px);
        }
        
        .navbar-toggler {
            border: none;
            padding: 0.5rem;
        }
        
        .navbar-toggler:focus {
            box-shadow: none;
        }
        
        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.9%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        .logo-glow {
            filter: drop-shadow(0 0 10px var(--accent-color));
        }
        
        @media (max-width: 991.98px) {
            .navbar-collapse {
                background: rgba(255, 255, 255, 0.1);
                backdrop-filter: blur(10px);
                border-radius: 12px;
                margin-top: 1rem;
                padding: 1rem;
            }
        }

.contact-section {
    background: linear-gradient(135deg, hsl(273, 68%, 44%) 0%, hsl(273, 68%, 29%) 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(255,255,255,0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(255,255,255,0.08) 0%, transparent 50%);
    pointer-events: none;
}

.contact-container {
    position: relative;
    z-index: 2;
}

.contact-header {
    text-align: center;
    margin-bottom: 60px;
}

.contact-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.contact-subtitle {
    font-size: 1.3rem;
    color: hsl(273, 68%, 85%);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.contact-form-wrapper {
    background: rgba(255,255,255,0.95);
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
}

.form-group {
    margin-bottom: 25px;
}

.form-label {
    font-weight: 600;
    color: hsl(273, 68%, 29%);
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.form-control {
    border: 2px solid hsl(273, 68%, 85%);
    border-radius: 12px;
    padding: 15px 20px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
    color: hsl(273, 68%, 29%);
}

.form-control:focus {
    border-color: hsl(273, 68%, 44%);
    box-shadow: 0 0 0 0.2rem rgba(147, 51, 234, 0.25);
    outline: none;
}

.form-control::placeholder {
    color: hsl(273, 68%, 60%);
}

.contact-btn {
    background: linear-gradient(135deg, hsl(273, 68%, 44%) 0%, hsl(273, 68%, 29%) 100%);
    border: none;
    color: white;
    padding: 18px 40px;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 8px 25px rgba(147, 51, 234, 0.4);
}

.contact-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(147, 51, 234, 0.6);
    background: linear-gradient(135deg, hsl(273, 68%, 49%) 0%, hsl(273, 68%, 34%) 100%);
}

.contact-info {
    color: white;
    padding: 40px 0;
}

.info-item {
    background: rgba(255,255,255,0.1);
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 25px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    transition: transform 0.3s ease;
}

.info-item:hover {
    transform: translateY(-5px);
}

.info-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: hsl(273, 68%, 85%);
    margin-bottom: 15px;
}

.info-text {
    color: white;
    line-height: 1.6;
    font-size: 1rem;
}

.consultation-process {
    background: rgba(255,255,255,0.1);
    border-radius: 15px;
    padding: 40px;
    margin-top: 40px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
}

.process-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: hsl(273, 68%, 85%);
    margin-bottom: 25px;
    text-align: center;
}

.process-steps {
    list-style: none;
    padding: 0;
}

.process-step {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    color: white;
    font-size: 1.1rem;
}

.step-number {
    background: hsl(273, 68%, 69%);
    color: hsl(273, 68%, 29%);
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-right: 15px;
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .contact-title {
        font-size: 2.5rem;
    }
    
    .contact-form-wrapper {
        padding: 30px 20px;
        margin: 0 15px;
    }
    
    .contact-info {
        padding: 20px 15px;
    }
    
    .consultation-process {
        margin: 20px 15px;
        padding: 25px;
    }
}

.about-section {
    background: linear-gradient(135deg, hsl(273, 68%, 44%) 0%, hsl(273, 68%, 29%) 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="stars" x="0" y="0" width="10" height="10" patternUnits="userSpaceOnUse"><circle cx="2" cy="2" r="0.5" fill="rgba(255,255,255,0.1)"/><circle cx="8" cy="7" r="0.3" fill="rgba(255,255,255,0.08)"/></pattern></defs><rect width="100" height="100" fill="url(%23stars)"/></svg>') repeat;
    opacity: 0.3;
}

.about-content {
    position: relative;
    z-index: 2;
}

.about-title {
    color: white;
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 30px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    line-height: 1.2;
}

.about-subtitle {
    color: hsl(273, 68%, 69%);
    font-size: 1.4rem;
    margin-bottom: 40px;
    font-weight: 300;
    letter-spacing: 1px;
}

.about-text {
    color: rgba(255,255,255,0.9);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 30px;
    text-align: justify;
}

.about-highlight {
    background: rgba(255,255,255,0.1);
    padding: 30px;
    border-radius: 15px;
    border-left: 5px solid hsl(273, 68%, 69%);
    margin: 40px 0;
    backdrop-filter: blur(10px);
}

.about-highlight h4 {
    color: hsl(273, 68%, 69%);
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.about-image {
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    transition: transform 0.3s ease;
    width: 100%;
    height: auto;
    object-fit: cover;
}

.about-image:hover {
    transform: translateY(-10px);
}

.image-wrapper {
    position: relative;
    margin-bottom: 30px;
}

.image-wrapper::after {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    right: -20px;
    bottom: -20px;
    background: linear-gradient(45deg, hsl(273, 68%, 69%), hsl(273, 68%, 44%));
    border-radius: 20px;
    z-index: -1;
    opacity: 0.3;
}

.mission-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 50px 0;
}

.mission-card {
    background: rgba(255,255,255,0.05);
    padding: 25px;
    border-radius: 15px;
    border: 1px solid rgba(255,255,255,0.1);
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
}

.mission-card:hover {
    background: rgba(255,255,255,0.1);
    transform: translateY(-5px);
}

.mission-card h5 {
    color: hsl(273, 68%, 69%);
    font-size: 1.2rem;
    margin-bottom: 15px;
    font-weight: 600;
}

@media (max-width: 768px) {
    .about-title {
        font-size: 2.5rem;
    }
    
    .about-section {
        padding: 60px 0;
    }
    
    .image-wrapper::after {
        display: none;
    }
}

.footer-section {
    background: linear-gradient(135deg, hsl(273, 68%, 29%) 0%, hsl(273, 68%, 44%) 100%);
    color: white;
    padding: 60px 0 30px;
    position: relative;
    overflow: hidden;
}

.footer-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 20"><defs><radialGradient id="star" cx="50%" cy="50%" r="50%"><stop offset="0%" style="stop-color:rgba(255,255,255,0.8)"/><stop offset="100%" style="stop-color:rgba(255,255,255,0)"/></radialGradient></defs><circle cx="10" cy="5" r="0.5" fill="url(%23star)"/><circle cx="30" cy="15" r="0.3" fill="url(%23star)"/><circle cx="70" cy="8" r="0.4" fill="url(%23star)"/><circle cx="90" cy="12" r="0.2" fill="url(%23star)"/></svg>') repeat;
    opacity: 0.3;
    animation: twinkle 3s ease-in-out infinite alternate;
}

@keyframes twinkle {
    0% { opacity: 0.2; }
    100% { opacity: 0.5; }
}

.footer-content {
    position: relative;
    z-index: 2;
}

.footer-title {
    color: hsl(273, 68%, 69%);
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.footer-description {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 30px;
    color: rgba(255,255,255,0.9);
}

.footer-links h5 {
    color: hsl(273, 68%, 69%);
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.footer-links a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    display: block;
    padding: 5px 0;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.footer-links a:hover {
    color: hsl(273, 68%, 69%);
    padding-left: 10px;
    transform: translateX(5px);
}

.contact-info {
    background: rgba(255,255,255,0.1);
    padding: 20px;
    border-radius: 10px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
}

.contact-info h5 {
    color: hsl(273, 68%, 69%);
    margin-bottom: 15px;
}

.contact-item {
    margin-bottom: 10px;
    color: rgba(255,255,255,0.9);
}

.contact-item i {
    color: hsl(273, 68%, 69%);
    margin-right: 10px;
    width: 20px;
}

.phone-link {
    color: rgba(255,255,255,0.9);
    text-decoration: none;
    transition: color 0.3s ease;
}

.phone-link:hover {
    color: hsl(273, 68%, 69%);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.2);
    margin-top: 40px;
    padding-top: 20px;
    text-align: center;
    color: rgba(255,255,255,0.7);
}

.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, hsl(273, 68%, 44%) 0%, hsl(273, 68%, 29%) 100%);
    color: white;
    padding: 20px 0;
    z-index: 9999;
    box-shadow: 0 -5px 20px rgba(0,0,0,0.3);
    transform: translateY(100%);
    transition: transform 0.5s ease;
}

.cookie-notice.show {
    transform: translateY(0);
}

.cookie-text {
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 15px;
}

.cookie-buttons .btn {
    margin: 5px;
    border-radius: 25px;
    font-weight: 600;
    padding: 8px 20px;
    transition: all 0.3s ease;
}

.btn-accept {
    background: hsl(273, 68%, 69%);
    border: none;
    color: hsl(273, 68%, 29%);
}

.btn-accept:hover {
    background: white;
    color: hsl(273, 68%, 29%);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.btn-learn {
    background: transparent;
    border: 2px solid hsl(273, 68%, 69%);
    color: hsl(273, 68%, 69%);
}

.btn-learn:hover {
    background: hsl(273, 68%, 69%);
    color: hsl(273, 68%, 29%);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .footer-section {
        padding: 40px 0 20px;
    }
    
    .footer-title {
        font-size: 1.8rem;
    }
    
    .cookie-notice {
        padding: 15px 0;
    }
    
    .cookie-buttons {
        text-align: center;
    }
    
    .cookie-buttons .btn {
        display: block;
        width: 100%;
        margin: 5px 0;
    }
}

:root {
            --primary-color: hsl(273, 68%, 44%);
            --secondary-color: hsl(273, 68%, 29%);
            --accent-color: hsl(273, 68%, 69%);
        }
        
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        .navbar {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
            padding: 1rem 0;
        }
        
        .navbar-brand {
            font-weight: 700;
            font-size: 1.5rem;
            color: white !important;
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }
        
        .navbar-brand:hover {
            color: var(--accent-color) !important;
            transform: scale(1.05);
            transition: all 0.3s ease;
        }
        
        .navbar-nav .nav-link {
            color: rgba(255, 255, 255, 0.9) !important;
            font-weight: 500;
            margin: 0 0.5rem;
            padding: 0.75rem 1rem !important;
            border-radius: 8px;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .navbar-nav .nav-link:hover {
            color: white !important;
            background: var(--accent-color);
            transform: translateY(-2px);
        }
        
        .navbar-toggler {
            border: none;
            padding: 0.5rem;
        }
        
        .navbar-toggler:focus {
            box-shadow: none;
        }
        
        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.9%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        .logo-glow {
            filter: drop-shadow(0 0 10px var(--accent-color));
        }
        
        @media (max-width: 991.98px) {
            .navbar-collapse {
                background: rgba(255, 255, 255, 0.1);
                backdrop-filter: blur(10px);
                border-radius: 12px;
                margin-top: 1rem;
                padding: 1rem;
            }
        }

.services-section {
    background: linear-gradient(135deg, hsl(273, 68%, 44%) 0%, hsl(273, 68%, 29%) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.1)"/></svg>') repeat;
    animation: starfield 20s linear infinite;
}

@keyframes starfield {
    0% { transform: translateY(0); }
    100% { transform: translateY(-100px); }
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.section-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.section-subtitle {
    font-size: 1.3rem;
    color: hsl(273, 68%, 69%);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.services-tabs {
    position: relative;
    z-index: 2;
}

.nav-tabs {
    border: none;
    justify-content: center;
    margin-bottom: 50px;
}

.nav-tabs .nav-link {
    background: rgba(255,255,255,0.1);
    border: 2px solid transparent;
    color: white;
    font-weight: 600;
    padding: 15px 30px;
    margin: 0 10px;
    border-radius: 50px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.nav-tabs .nav-link:hover {
    background: rgba(255,255,255,0.2);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.nav-tabs .nav-link.active {
    background: hsl(273, 68%, 69%);
    border-color: white;
    color: hsl(273, 68%, 29%);
}

.service-card {
    background: rgba(255,255,255,0.95);
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 30px;
    transition: all 0.4s ease;
    border: 1px solid rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: left 0.6s;
}

.service-card:hover::before {
    left: 100%;
}

.service-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    background: white;
}

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, hsl(273, 68%, 44%), hsl(273, 68%, 69%));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    transform: rotate(360deg) scale(1.1);
}

.service-icon i {
    font-size: 1.8rem;
    color: white;
}

.service-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: hsl(273, 68%, 29%);
    margin-bottom: 15px;
}

.service-description {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.service-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: hsl(273, 68%, 44%);
    margin-bottom: 15px;
}

.service-conditions {
    background: hsl(273, 68%, 95%);
    padding: 15px;
    border-radius: 10px;
    font-size: 0.85rem;
    color: hsl(273, 68%, 29%);
    border-left: 4px solid hsl(273, 68%, 69%);
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2.5rem;
    }
    
    .nav-tabs .nav-link {
        padding: 10px 20px;
        margin: 5px;
        font-size: 0.9rem;
    }
    
    .service-card {
        padding: 20px;
    }
}

.newsletter-section {
    background: linear-gradient(135deg, hsl(273, 68%, 44%) 0%, hsl(273, 68%, 29%) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.newsletter-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="40" r="1.5" fill="rgba(255,255,255,0.08)"/><circle cx="40" cy="80" r="1" fill="rgba(255,255,255,0.06)"/></svg>');
    animation: starfield 20s linear infinite;
}

@keyframes starfield {
    0% { transform: translateY(0); }
    100% { transform: translateY(-100px); }
}

.newsletter-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 2;
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-title {
    color: hsl(273, 68%, 29%);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: center;
    line-height: 1.2;
}

.newsletter-subtitle {
    color: hsl(273, 68%, 44%);
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 30px;
    font-style: italic;
}

.benefits-list {
    list-style: none;
    padding: 0;
    margin: 30px 0;
}

.benefits-list li {
    color: hsl(273, 68%, 29%);
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
    font-size: 1.1rem;
}

.benefits-list li::before {
    content: '★';
    position: absolute;
    left: 0;
    color: hsl(273, 68%, 69%);
    font-size: 1.2rem;
}

.newsletter-form {
    margin-top: 40px;
}

.email-input {
    border: 3px solid hsl(273, 68%, 69%);
    border-radius: 50px;
    padding: 15px 25px;
    font-size: 1.1rem;
    width: 100%;
    margin-bottom: 20px;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.9);
}

.email-input:focus {
    outline: none;
    border-color: hsl(273, 68%, 44%);
    box-shadow: 0 0 20px rgba(139, 69, 195, 0.3);
    transform: translateY(-2px);
}

.subscribe-btn {
    background: linear-gradient(45deg, hsl(273, 68%, 44%), hsl(273, 68%, 69%));
    color: white;
    border: none;
    border-radius: 50px;
    padding: 15px 40px;
    font-size: 1.2rem;
    font-weight: 600;
    width: 100%;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.subscribe-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s;
}

.subscribe-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(139, 69, 195, 0.4);
    background: linear-gradient(45deg, hsl(273, 68%, 39%), hsl(273, 68%, 64%));
}

.subscribe-btn:hover::before {
    left: 100%;
}

.subscribe-btn:active {
    transform: translateY(-1px);
}

.privacy-note {
    font-size: 0.9rem;
    color: hsl(273, 68%, 44%);
    text-align: center;
    margin-top: 15px;
    opacity: 0.8;
}

@media (max-width: 768px) {
    .newsletter-card {
        padding: 30px 20px;
        margin: 0 15px;
    }
    
    .newsletter-title {
        font-size: 2rem;
    }
    
    .benefits-list li {
        font-size: 1rem;
    }
}

.testimonials-section {
    background: linear-gradient(135deg, hsl(273, 68%, 44%) 0%, hsl(273, 68%, 29%) 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="40" r="1.5" fill="rgba(255,255,255,0.08)"/><circle cx="40" cy="80" r="1" fill="rgba(255,255,255,0.12)"/><circle cx="90" cy="90" r="0.8" fill="rgba(255,255,255,0.1)"/></svg>') repeat;
    animation: starTwinkle 20s linear infinite;
}

@keyframes starTwinkle {
    0% { transform: translateY(0px); }
    100% { transform: translateY(-100px); }
}

.section-title {
    color: white;
    font-size: 3.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.section-subtitle {
    color: hsl(273, 68%, 69%);
    font-size: 1.3rem;
    text-align: center;
    margin-bottom: 60px;
    font-weight: 300;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 40px 30px;
    margin-bottom: 30px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.2);
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 30px;
    font-size: 5rem;
    color: hsl(273, 68%, 69%);
    font-family: serif;
    opacity: 0.3;
}

.testimonial-text {
    color: #333;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 25px;
    font-style: italic;
    position: relative;
    z-index: 2;
}

.testimonial-author {
    color: hsl(273, 68%, 44%);
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.testimonial-location {
    color: #666;
    font-size: 0.95rem;
    opacity: 0.8;
}

.stars {
    color: #ffd700;
    font-size: 1.2rem;
    margin-bottom: 15px;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2.5rem;
    }
    
    .testimonial-card {
        margin-bottom: 20px;
        padding: 30px 20px;
    }
}

.footer-section {
    background: linear-gradient(135deg, hsl(273, 68%, 29%) 0%, hsl(273, 68%, 44%) 100%);
    color: white;
    padding: 60px 0 30px;
    position: relative;
    overflow: hidden;
}

.footer-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 20"><defs><radialGradient id="star" cx="50%" cy="50%" r="50%"><stop offset="0%" style="stop-color:rgba(255,255,255,0.8)"/><stop offset="100%" style="stop-color:rgba(255,255,255,0)"/></radialGradient></defs><circle cx="10" cy="5" r="0.5" fill="url(%23star)"/><circle cx="30" cy="15" r="0.3" fill="url(%23star)"/><circle cx="70" cy="8" r="0.4" fill="url(%23star)"/><circle cx="90" cy="12" r="0.2" fill="url(%23star)"/></svg>') repeat;
    opacity: 0.3;
    animation: twinkle 3s ease-in-out infinite alternate;
}

@keyframes twinkle {
    0% { opacity: 0.2; }
    100% { opacity: 0.5; }
}

.footer-content {
    position: relative;
    z-index: 2;
}

.footer-title {
    color: hsl(273, 68%, 69%);
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.footer-description {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 30px;
    color: rgba(255,255,255,0.9);
}

.footer-links h5 {
    color: hsl(273, 68%, 69%);
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.footer-links a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    display: block;
    padding: 5px 0;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.footer-links a:hover {
    color: hsl(273, 68%, 69%);
    padding-left: 10px;
    transform: translateX(5px);
}

.contact-info {
    background: rgba(255,255,255,0.1);
    padding: 20px;
    border-radius: 10px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
}

.contact-info h5 {
    color: hsl(273, 68%, 69%);
    margin-bottom: 15px;
}

.contact-item {
    margin-bottom: 10px;
    color: rgba(255,255,255,0.9);
}

.contact-item i {
    color: hsl(273, 68%, 69%);
    margin-right: 10px;
    width: 20px;
}

.phone-link {
    color: rgba(255,255,255,0.9);
    text-decoration: none;
    transition: color 0.3s ease;
}

.phone-link:hover {
    color: hsl(273, 68%, 69%);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.2);
    margin-top: 40px;
    padding-top: 20px;
    text-align: center;
    color: rgba(255,255,255,0.7);
}

.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, hsl(273, 68%, 44%) 0%, hsl(273, 68%, 29%) 100%);
    color: white;
    padding: 20px 0;
    z-index: 9999;
    box-shadow: 0 -5px 20px rgba(0,0,0,0.3);
    transform: translateY(100%);
    transition: transform 0.5s ease;
}

.cookie-notice.show {
    transform: translateY(0);
}

.cookie-text {
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 15px;
}

.cookie-buttons .btn {
    margin: 5px;
    border-radius: 25px;
    font-weight: 600;
    padding: 8px 20px;
    transition: all 0.3s ease;
}

.btn-accept {
    background: hsl(273, 68%, 69%);
    border: none;
    color: hsl(273, 68%, 29%);
}

.btn-accept:hover {
    background: white;
    color: hsl(273, 68%, 29%);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.btn-learn {
    background: transparent;
    border: 2px solid hsl(273, 68%, 69%);
    color: hsl(273, 68%, 69%);
}

.btn-learn:hover {
    background: hsl(273, 68%, 69%);
    color: hsl(273, 68%, 29%);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .footer-section {
        padding: 40px 0 20px;
    }
    
    .footer-title {
        font-size: 1.8rem;
    }
    
    .cookie-notice {
        padding: 15px 0;
    }
    
    .cookie-buttons {
        text-align: center;
    }
    
    .cookie-buttons .btn {
        display: block;
        width: 100%;
        margin: 5px 0;
    }
}

:root {
            --primary-color: hsl(273, 68%, 44%);
            --secondary-color: hsl(273, 68%, 29%);
            --accent-color: hsl(273, 68%, 69%);
        }
        
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        .navbar {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
            padding: 1rem 0;
        }
        
        .navbar-brand {
            font-weight: 700;
            font-size: 1.5rem;
            color: white !important;
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }
        
        .navbar-brand:hover {
            color: var(--accent-color) !important;
            transform: scale(1.05);
            transition: all 0.3s ease;
        }
        
        .navbar-nav .nav-link {
            color: rgba(255, 255, 255, 0.9) !important;
            font-weight: 500;
            margin: 0 0.5rem;
            padding: 0.75rem 1rem !important;
            border-radius: 8px;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .navbar-nav .nav-link:hover {
            color: white !important;
            background: var(--accent-color);
            transform: translateY(-2px);
        }
        
        .navbar-toggler {
            border: none;
            padding: 0.5rem;
        }
        
        .navbar-toggler:focus {
            box-shadow: none;
        }
        
        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.9%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        .logo-glow {
            filter: drop-shadow(0 0 10px var(--accent-color));
        }
        
        @media (max-width: 991.98px) {
            .navbar-collapse {
                background: rgba(255, 255, 255, 0.1);
                backdrop-filter: blur(10px);
                border-radius: 12px;
                margin-top: 1rem;
                padding: 1rem;
            }
        }

.terms-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px 20px;
    font-family: 'Georgia', serif;
    line-height: 1.8;
    color: #2c3e50;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
}

.terms-content {
    background: rgba(255, 255, 255, 0.95);
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(10px);
}

.terms-title {
    font-size: 2.5em;
    color: #2c3e50;
    text-align: center;
    margin-bottom: 30px;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
    border-bottom: 3px solid #3498db;
    padding-bottom: 15px;
}

.section-header {
    font-size: 1.4em;
    color: #e74c3c;
    margin: 35px 0 20px 0;
    font-weight: bold;
    border-left: 5px solid #3498db;
    padding-left: 15px;
    background: linear-gradient(90deg, #ecf0f1, transparent);
    padding: 10px 0 10px 15px;
    border-radius: 5px;
}

.terms-text {
    margin-bottom: 20px;
    text-align: justify;
    font-size: 1.05em;
    color: #34495e;
}

.highlight-box {
    background: linear-gradient(135deg, #74b9ff, #0984e3);
    color: white;
    padding: 20px;
    border-radius: 10px;
    margin: 25px 0;
    border-left: 5px solid #fdcb6e;
    font-weight: 500;
}

.terms-list {
    padding-left: 25px;
    margin: 15px 0;
}

.terms-list li {
    margin-bottom: 10px;
    color: #2d3436;
    font-size: 1.02em;
}

.important-notice {
    background: #fff3cd;
    border: 2px solid #ffeaa7;
    padding: 20px;
    border-radius: 8px;
    margin: 20px 0;
    font-weight: 500;
    color: #856404;
}

.effective-date {
    text-align: center;
    font-style: italic;
    color: #636e72;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 2px solid #ddd;
    font-size: 0.95em;
}

.footer-section {
    background: linear-gradient(135deg, hsl(273, 68%, 29%) 0%, hsl(273, 68%, 44%) 100%);
    color: white;
    padding: 60px 0 30px;
    position: relative;
    overflow: hidden;
}

.footer-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 20"><defs><radialGradient id="star" cx="50%" cy="50%" r="50%"><stop offset="0%" style="stop-color:rgba(255,255,255,0.8)"/><stop offset="100%" style="stop-color:rgba(255,255,255,0)"/></radialGradient></defs><circle cx="10" cy="5" r="0.5" fill="url(%23star)"/><circle cx="30" cy="15" r="0.3" fill="url(%23star)"/><circle cx="70" cy="8" r="0.4" fill="url(%23star)"/><circle cx="90" cy="12" r="0.2" fill="url(%23star)"/></svg>') repeat;
    opacity: 0.3;
    animation: twinkle 3s ease-in-out infinite alternate;
}

@keyframes twinkle {
    0% { opacity: 0.2; }
    100% { opacity: 0.5; }
}

.footer-content {
    position: relative;
    z-index: 2;
}

.footer-title {
    color: hsl(273, 68%, 69%);
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.footer-description {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 30px;
    color: rgba(255,255,255,0.9);
}

.footer-links h5 {
    color: hsl(273, 68%, 69%);
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.footer-links a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    display: block;
    padding: 5px 0;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.footer-links a:hover {
    color: hsl(273, 68%, 69%);
    padding-left: 10px;
    transform: translateX(5px);
}

.contact-info {
    background: rgba(255,255,255,0.1);
    padding: 20px;
    border-radius: 10px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
}

.contact-info h5 {
    color: hsl(273, 68%, 69%);
    margin-bottom: 15px;
}

.contact-item {
    margin-bottom: 10px;
    color: rgba(255,255,255,0.9);
}

.contact-item i {
    color: hsl(273, 68%, 69%);
    margin-right: 10px;
    width: 20px;
}

.phone-link {
    color: rgba(255,255,255,0.9);
    text-decoration: none;
    transition: color 0.3s ease;
}

.phone-link:hover {
    color: hsl(273, 68%, 69%);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.2);
    margin-top: 40px;
    padding-top: 20px;
    text-align: center;
    color: rgba(255,255,255,0.7);
}

.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, hsl(273, 68%, 44%) 0%, hsl(273, 68%, 29%) 100%);
    color: white;
    padding: 20px 0;
    z-index: 9999;
    box-shadow: 0 -5px 20px rgba(0,0,0,0.3);
    transform: translateY(100%);
    transition: transform 0.5s ease;
}

.cookie-notice.show {
    transform: translateY(0);
}

.cookie-text {
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 15px;
}

.cookie-buttons .btn {
    margin: 5px;
    border-radius: 25px;
    font-weight: 600;
    padding: 8px 20px;
    transition: all 0.3s ease;
}

.btn-accept {
    background: hsl(273, 68%, 69%);
    border: none;
    color: hsl(273, 68%, 29%);
}

.btn-accept:hover {
    background: white;
    color: hsl(273, 68%, 29%);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.btn-learn {
    background: transparent;
    border: 2px solid hsl(273, 68%, 69%);
    color: hsl(273, 68%, 69%);
}

.btn-learn:hover {
    background: hsl(273, 68%, 69%);
    color: hsl(273, 68%, 29%);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .footer-section {
        padding: 40px 0 20px;
    }
    
    .footer-title {
        font-size: 1.8rem;
    }
    
    .cookie-notice {
        padding: 15px 0;
    }
    
    .cookie-buttons {
        text-align: center;
    }
    
    .cookie-buttons .btn {
        display: block;
        width: 100%;
        margin: 5px 0;
    }
}

:root {
            --primary-color: hsl(273, 68%, 44%);
            --secondary-color: hsl(273, 68%, 29%);
            --accent-color: hsl(273, 68%, 69%);
        }
        
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        .navbar {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
            padding: 1rem 0;
        }
        
        .navbar-brand {
            font-weight: 700;
            font-size: 1.5rem;
            color: white !important;
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }
        
        .navbar-brand:hover {
            color: var(--accent-color) !important;
            transform: scale(1.05);
            transition: all 0.3s ease;
        }
        
        .navbar-nav .nav-link {
            color: rgba(255, 255, 255, 0.9) !important;
            font-weight: 500;
            margin: 0 0.5rem;
            padding: 0.75rem 1rem !important;
            border-radius: 8px;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .navbar-nav .nav-link:hover {
            color: white !important;
            background: var(--accent-color);
            transform: translateY(-2px);
        }
        
        .navbar-toggler {
            border: none;
            padding: 0.5rem;
        }
        
        .navbar-toggler:focus {
            box-shadow: none;
        }
        
        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.9%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        .logo-glow {
            filter: drop-shadow(0 0 10px var(--accent-color));
        }
        
        @media (max-width: 991.98px) {
            .navbar-collapse {
                background: rgba(255, 255, 255, 0.1);
                backdrop-filter: blur(10px);
                border-radius: 12px;
                margin-top: 1rem;
                padding: 1rem;
            }
        }

.faq-section {
    background: linear-gradient(135deg, hsl(273, 68%, 44%) 0%, hsl(273, 68%, 29%) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.faq-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="40" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="40" cy="80" r="1.5" fill="rgba(255,255,255,0.1)"/></svg>');
    animation: twinkle 3s ease-in-out infinite alternate;
}

@keyframes twinkle {
    0% { opacity: 0.3; }
    100% { opacity: 0.8; }
}

.faq-container {
    position: relative;
    z-index: 2;
}

.faq-header {
    text-align: center;
    margin-bottom: 60px;
}

.faq-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.faq-subtitle {
    font-size: 1.3rem;
    color: hsl(273, 68%, 69%);
    font-weight: 300;
    max-width: 600px;
    margin: 0 auto;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.faq-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.faq-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, hsl(273, 68%, 44%), hsl(273, 68%, 69%));
}

.faq-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    border-color: hsl(273, 68%, 69%);
}

.faq-question {
    font-size: 1.4rem;
    font-weight: 600;
    color: hsl(273, 68%, 29%);
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.faq-question::before {
    content: '?';
    background: hsl(273, 68%, 44%);
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
    margin-top: 2px;
}

.faq-answer {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #555;
    margin-left: 45px;
}

.faq-answer strong {
    color: hsl(273, 68%, 44%);
}

@media (max-width: 768px) {
    .faq-title {
        font-size: 2.5rem;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .faq-card {
        padding: 25px;
    }
    
    .faq-question {
        font-size: 1.2rem;
    }
    
    .faq-answer {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .faq-section {
        padding: 60px 0;
    }
    
    .faq-title {
        font-size: 2rem;
    }
    
    .faq-card {
        padding: 20px;
    }
}

.about-section {
    background: linear-gradient(135deg, hsl(273, 68%, 44%) 0%, hsl(273, 68%, 29%) 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="stars" x="0" y="0" width="10" height="10" patternUnits="userSpaceOnUse"><circle cx="2" cy="2" r="0.5" fill="rgba(255,255,255,0.1)"/><circle cx="8" cy="7" r="0.3" fill="rgba(255,255,255,0.08)"/></pattern></defs><rect width="100" height="100" fill="url(%23stars)"/></svg>') repeat;
    opacity: 0.3;
}

.about-content {
    position: relative;
    z-index: 2;
}

.about-title {
    color: white;
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 30px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    line-height: 1.2;
}

.about-subtitle {
    color: hsl(273, 68%, 69%);
    font-size: 1.4rem;
    margin-bottom: 40px;
    font-weight: 300;
    letter-spacing: 1px;
}

.about-text {
    color: rgba(255,255,255,0.9);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 30px;
    text-align: justify;
}

.about-highlight {
    background: rgba(255,255,255,0.1);
    padding: 30px;
    border-radius: 15px;
    border-left: 5px solid hsl(273, 68%, 69%);
    margin: 40px 0;
    backdrop-filter: blur(10px);
}

.about-highlight h4 {
    color: hsl(273, 68%, 69%);
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.about-image {
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    transition: transform 0.3s ease;
    width: 100%;
    height: auto;
    object-fit: cover;
}

.about-image:hover {
    transform: translateY(-10px);
}

.image-wrapper {
    position: relative;
    margin-bottom: 30px;
}

.image-wrapper::after {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    right: -20px;
    bottom: -20px;
    background: linear-gradient(45deg, hsl(273, 68%, 69%), hsl(273, 68%, 44%));
    border-radius: 20px;
    z-index: -1;
    opacity: 0.3;
}

.mission-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 50px 0;
}

.mission-card {
    background: rgba(255,255,255,0.05);
    padding: 25px;
    border-radius: 15px;
    border: 1px solid rgba(255,255,255,0.1);
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
}

.mission-card:hover {
    background: rgba(255,255,255,0.1);
    transform: translateY(-5px);
}

.mission-card h5 {
    color: hsl(273, 68%, 69%);
    font-size: 1.2rem;
    margin-bottom: 15px;
    font-weight: 600;
}

@media (max-width: 768px) {
    .about-title {
        font-size: 2.5rem;
    }
    
    .about-section {
        padding: 60px 0;
    }
    
    .image-wrapper::after {
        display: none;
    }
}

.newsletter-section {
    background: linear-gradient(135deg, hsl(273, 68%, 44%) 0%, hsl(273, 68%, 29%) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.newsletter-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="40" r="1.5" fill="rgba(255,255,255,0.08)"/><circle cx="40" cy="80" r="1" fill="rgba(255,255,255,0.06)"/></svg>');
    animation: starfield 20s linear infinite;
}

@keyframes starfield {
    0% { transform: translateY(0); }
    100% { transform: translateY(-100px); }
}

.newsletter-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 2;
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-title {
    color: hsl(273, 68%, 29%);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: center;
    line-height: 1.2;
}

.newsletter-subtitle {
    color: hsl(273, 68%, 44%);
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 30px;
    font-style: italic;
}

.benefits-list {
    list-style: none;
    padding: 0;
    margin: 30px 0;
}

.benefits-list li {
    color: hsl(273, 68%, 29%);
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
    font-size: 1.1rem;
}

.benefits-list li::before {
    content: '★';
    position: absolute;
    left: 0;
    color: hsl(273, 68%, 69%);
    font-size: 1.2rem;
}

.newsletter-form {
    margin-top: 40px;
}

.email-input {
    border: 3px solid hsl(273, 68%, 69%);
    border-radius: 50px;
    padding: 15px 25px;
    font-size: 1.1rem;
    width: 100%;
    margin-bottom: 20px;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.9);
}

.email-input:focus {
    outline: none;
    border-color: hsl(273, 68%, 44%);
    box-shadow: 0 0 20px rgba(139, 69, 195, 0.3);
    transform: translateY(-2px);
}

.subscribe-btn {
    background: linear-gradient(45deg, hsl(273, 68%, 44%), hsl(273, 68%, 69%));
    color: white;
    border: none;
    border-radius: 50px;
    padding: 15px 40px;
    font-size: 1.2rem;
    font-weight: 600;
    width: 100%;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.subscribe-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s;
}

.subscribe-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(139, 69, 195, 0.4);
    background: linear-gradient(45deg, hsl(273, 68%, 39%), hsl(273, 68%, 64%));
}

.subscribe-btn:hover::before {
    left: 100%;
}

.subscribe-btn:active {
    transform: translateY(-1px);
}

.privacy-note {
    font-size: 0.9rem;
    color: hsl(273, 68%, 44%);
    text-align: center;
    margin-top: 15px;
    opacity: 0.8;
}

@media (max-width: 768px) {
    .newsletter-card {
        padding: 30px 20px;
        margin: 0 15px;
    }
    
    .newsletter-title {
        font-size: 2rem;
    }
    
    .benefits-list li {
        font-size: 1rem;
    }
}

.footer-section {
    background: linear-gradient(135deg, hsl(273, 68%, 29%) 0%, hsl(273, 68%, 44%) 100%);
    color: white;
    padding: 60px 0 30px;
    position: relative;
    overflow: hidden;
}

.footer-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 20"><defs><radialGradient id="star" cx="50%" cy="50%" r="50%"><stop offset="0%" style="stop-color:rgba(255,255,255,0.8)"/><stop offset="100%" style="stop-color:rgba(255,255,255,0)"/></radialGradient></defs><circle cx="10" cy="5" r="0.5" fill="url(%23star)"/><circle cx="30" cy="15" r="0.3" fill="url(%23star)"/><circle cx="70" cy="8" r="0.4" fill="url(%23star)"/><circle cx="90" cy="12" r="0.2" fill="url(%23star)"/></svg>') repeat;
    opacity: 0.3;
    animation: twinkle 3s ease-in-out infinite alternate;
}

@keyframes twinkle {
    0% { opacity: 0.2; }
    100% { opacity: 0.5; }
}

.footer-content {
    position: relative;
    z-index: 2;
}

.footer-title {
    color: hsl(273, 68%, 69%);
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.footer-description {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 30px;
    color: rgba(255,255,255,0.9);
}

.footer-links h5 {
    color: hsl(273, 68%, 69%);
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.footer-links a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    display: block;
    padding: 5px 0;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.footer-links a:hover {
    color: hsl(273, 68%, 69%);
    padding-left: 10px;
    transform: translateX(5px);
}

.contact-info {
    background: rgba(255,255,255,0.1);
    padding: 20px;
    border-radius: 10px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
}

.contact-info h5 {
    color: hsl(273, 68%, 69%);
    margin-bottom: 15px;
}

.contact-item {
    margin-bottom: 10px;
    color: rgba(255,255,255,0.9);
}

.contact-item i {
    color: hsl(273, 68%, 69%);
    margin-right: 10px;
    width: 20px;
}

.phone-link {
    color: rgba(255,255,255,0.9);
    text-decoration: none;
    transition: color 0.3s ease;
}

.phone-link:hover {
    color: hsl(273, 68%, 69%);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.2);
    margin-top: 40px;
    padding-top: 20px;
    text-align: center;
    color: rgba(255,255,255,0.7);
}

.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, hsl(273, 68%, 44%) 0%, hsl(273, 68%, 29%) 100%);
    color: white;
    padding: 20px 0;
    z-index: 9999;
    box-shadow: 0 -5px 20px rgba(0,0,0,0.3);
    transform: translateY(100%);
    transition: transform 0.5s ease;
}

.cookie-notice.show {
    transform: translateY(0);
}

.cookie-text {
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 15px;
}

.cookie-buttons .btn {
    margin: 5px;
    border-radius: 25px;
    font-weight: 600;
    padding: 8px 20px;
    transition: all 0.3s ease;
}

.btn-accept {
    background: hsl(273, 68%, 69%);
    border: none;
    color: hsl(273, 68%, 29%);
}

.btn-accept:hover {
    background: white;
    color: hsl(273, 68%, 29%);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.btn-learn {
    background: transparent;
    border: 2px solid hsl(273, 68%, 69%);
    color: hsl(273, 68%, 69%);
}

.btn-learn:hover {
    background: hsl(273, 68%, 69%);
    color: hsl(273, 68%, 29%);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .footer-section {
        padding: 40px 0 20px;
    }
    
    .footer-title {
        font-size: 1.8rem;
    }
    
    .cookie-notice {
        padding: 15px 0;
    }
    
    .cookie-buttons {
        text-align: center;
    }
    
    .cookie-buttons .btn {
        display: block;
        width: 100%;
        margin: 5px 0;
    }
}

:root {
            --primary-color: hsl(273, 68%, 44%);
            --secondary-color: hsl(273, 68%, 29%);
            --accent-color: hsl(273, 68%, 69%);
        }
        
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        .navbar {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
            padding: 1rem 0;
        }
        
        .navbar-brand {
            font-weight: 700;
            font-size: 1.5rem;
            color: white !important;
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }
        
        .navbar-brand:hover {
            color: var(--accent-color) !important;
            transform: scale(1.05);
            transition: all 0.3s ease;
        }
        
        .navbar-nav .nav-link {
            color: rgba(255, 255, 255, 0.9) !important;
            font-weight: 500;
            margin: 0 0.5rem;
            padding: 0.75rem 1rem !important;
            border-radius: 8px;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .navbar-nav .nav-link:hover {
            color: white !important;
            background: var(--accent-color);
            transform: translateY(-2px);
        }
        
        .navbar-toggler {
            border: none;
            padding: 0.5rem;
        }
        
        .navbar-toggler:focus {
            box-shadow: none;
        }
        
        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.9%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        .logo-glow {
            filter: drop-shadow(0 0 10px var(--accent-color));
        }
        
        @media (max-width: 991.98px) {
            .navbar-collapse {
                background: rgba(255, 255, 255, 0.1);
                backdrop-filter: blur(10px);
                border-radius: 12px;
                margin-top: 1rem;
                padding: 1rem;
            }
        }

.hero-section {
    background: linear-gradient(135deg, hsl(273, 68%, 44%) 0%, hsl(273, 68%, 29%) 100%);
    padding: 100px 0;
    min-height: 90vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="stars" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="2" cy="2" r="0.5" fill="white" opacity="0.3"/><circle cx="15" cy="8" r="0.3" fill="white" opacity="0.4"/><circle cx="8" cy="15" r="0.4" fill="white" opacity="0.2"/></pattern></defs><rect width="100" height="100" fill="url(%23stars)"/></svg>');
    opacity: 0.1;
    animation: twinkle 20s infinite linear;
}

@keyframes twinkle {
    0% { transform: translateY(0); }
    100% { transform: translateY(-100px); }
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.8rem;
    color: hsl(273, 68%, 69%);
    margin-bottom: 2rem;
    font-weight: 300;
}

.hero-description {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.9);
    line-height: 1.8;
    margin-bottom: 2.5rem;
}

.hero-features {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.hero-features li {
    color: white;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
}

.hero-features i {
    color: hsl(273, 68%, 69%);
    margin-right: 1rem;
    font-size: 1.3rem;
}

.hero-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    transform: perspective(1000px) rotateY(-5deg);
    transition: transform 0.3s ease;
}

.hero-image:hover {
    transform: perspective(1000px) rotateY(0deg);
}

.hero-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.hero-image:hover img {
    transform: scale(1.05);
}

.btn-primary-custom {
    background: hsl(273, 68%, 69%);
    border: none;
    padding: 15px 35px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    color: hsl(273, 68%, 29%);
    text-decoration: none;
    display: inline-block;
    margin-right: 1rem;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.btn-primary-custom:hover {
    background: white;
    color: hsl(273, 68%, 44%);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

.btn-secondary-custom {
    background: transparent;
    border: 2px solid hsl(273, 68%, 69%);
    padding: 13px 33px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    color: hsl(273, 68%, 69%);
    text-decoration: none;
    display: inline-block;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.btn-secondary-custom:hover {
    background: hsl(273, 68%, 69%);
    color: hsl(273, 68%, 29%);
    transform: translateY(-3px);
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.4rem;
    }
    
    .hero-section {
        padding: 60px 0;
        text-align: center;
    }
    
    .hero-image {
        transform: none;
        margin-top: 3rem;
    }
}

.testimonials-section {
    background: linear-gradient(135deg, hsl(273, 68%, 44%) 0%, hsl(273, 68%, 29%) 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="40" r="1.5" fill="rgba(255,255,255,0.08)"/><circle cx="40" cy="80" r="1" fill="rgba(255,255,255,0.12)"/><circle cx="90" cy="90" r="0.8" fill="rgba(255,255,255,0.1)"/></svg>') repeat;
    animation: starTwinkle 20s linear infinite;
}

@keyframes starTwinkle {
    0% { transform: translateY(0px); }
    100% { transform: translateY(-100px); }
}

.section-title {
    color: white;
    font-size: 3.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.section-subtitle {
    color: hsl(273, 68%, 69%);
    font-size: 1.3rem;
    text-align: center;
    margin-bottom: 60px;
    font-weight: 300;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 40px 30px;
    margin-bottom: 30px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.2);
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 30px;
    font-size: 5rem;
    color: hsl(273, 68%, 69%);
    font-family: serif;
    opacity: 0.3;
}

.testimonial-text {
    color: #333;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 25px;
    font-style: italic;
    position: relative;
    z-index: 2;
}

.testimonial-author {
    color: hsl(273, 68%, 44%);
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.testimonial-location {
    color: #666;
    font-size: 0.95rem;
    opacity: 0.8;
}

.stars {
    color: #ffd700;
    font-size: 1.2rem;
    margin-bottom: 15px;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2.5rem;
    }
    
    .testimonial-card {
        margin-bottom: 20px;
        padding: 30px 20px;
    }
}

.statistics-section {
    background: linear-gradient(135deg, hsl(273, 68%, 44%) 0%, hsl(273, 68%, 29%) 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.statistics-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="40" r="1.5" fill="rgba(255,255,255,0.08)"/><circle cx="40" cy="80" r="1" fill="rgba(255,255,255,0.12)"/><circle cx="90" cy="90" r="2" fill="rgba(255,255,255,0.06)"/><circle cx="10" cy="60" r="1.2" fill="rgba(255,255,255,0.1)"/><circle cx="60" cy="10" r="1.8" fill="rgba(255,255,255,0.07)"/></svg>');
    animation: starfield 20s linear infinite;
}

@keyframes starfield {
    0% { transform: translateY(0) rotate(0deg); }
    100% { transform: translateY(-100px) rotate(360deg); }
}

.section-title {
    color: white;
    font-size: 3.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.section-subtitle {
    color: hsl(273, 68%, 69%);
    font-size: 1.3rem;
    text-align: center;
    margin-bottom: 80px;
    font-weight: 300;
}

.stats-container {
    position: relative;
    z-index: 2;
}

.stat-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    height: 100%;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.1), transparent);
    transform: rotate(45deg);
    transition: all 0.6s ease;
    opacity: 0;
}

.stat-card:hover::before {
    opacity: 1;
    transform: rotate(45deg) translate(50%, 50%);
}

.stat-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
    border-color: hsl(273, 68%, 69%);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.stat-icon {
    font-size: 3rem;
    color: hsl(273, 68%, 69%);
    margin-bottom: 20px;
    display: block;
    transition: all 0.3s ease;
}

.stat-card:hover .stat-icon {
    color: white;
    transform: scale(1.1);
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 15px;
    line-height: 1;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.stat-label {
    font-size: 1.1rem;
    color: hsl(273, 68%, 69%);
    font-weight: 500;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat-description {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
    font-weight: 300;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2.5rem;
    }
    
    .section-subtitle {
        font-size: 1.1rem;
        margin-bottom: 60px;
    }
    
    .stat-card {
        padding: 30px 20px;
        margin-bottom: 30px;
    }
    
    .stat-number {
        font-size: 2.8rem;
    }
    
    .stat-icon {
        font-size: 2.5rem;
    }
}

.advantages-section {
    background: linear-gradient(135deg, hsl(273, 68%, 44%) 0%, hsl(273, 68%, 29%) 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.advantages-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(255,255,255,0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(255,255,255,0.1) 0%, transparent 50%);
}

.section-title {
    color: white;
    font-size: 3.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.section-subtitle {
    color: hsl(273, 68%, 69%);
    font-size: 1.3rem;
    text-align: center;
    margin-bottom: 80px;
    font-weight: 300;
}

.timeline-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(to bottom, hsl(273, 68%, 69%), hsl(273, 68%, 44%));
    transform: translateX(-50%);
    border-radius: 2px;
    box-shadow: 0 0 20px rgba(255,255,255,0.3);
}

.advantage-item {
    position: relative;
    margin-bottom: 60px;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards;
}

.advantage-item:nth-child(1) { animation-delay: 0.1s; }
.advantage-item:nth-child(2) { animation-delay: 0.2s; }
.advantage-item:nth-child(3) { animation-delay: 0.3s; }
.advantage-item:nth-child(4) { animation-delay: 0.4s; }
.advantage-item:nth-child(5) { animation-delay: 0.5s; }
.advantage-item:nth-child(6) { animation-delay: 0.6s; }
.advantage-item:nth-child(7) { animation-delay: 0.7s; }
.advantage-item:nth-child(8) { animation-delay: 0.8s; }
.advantage-item:nth-child(9) { animation-delay: 0.9s; }
.advantage-item:nth-child(10) { animation-delay: 1.0s; }
.advantage-item:nth-child(11) { animation-delay: 1.1s; }
.advantage-item:nth-child(12) { animation-delay: 1.2s; }

.advantage-card {
    background: rgba(255,255,255,0.95);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
    transition: all 0.4s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.advantage-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: left 0.6s ease;
}

.advantage-card:hover::before {
    left: 100%;
}

.advantage-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0,0,0,0.3);
    border-color: hsl(273, 68%, 69%);
}

.advantage-left {
    text-align: right;
}

.advantage-right {
    text-align: left;
}

.advantage-left .advantage-card {
    margin-right: 60px;
}

.advantage-right .advantage-card {
    margin-left: 60px;
}

.timeline-dot {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 20px;
    height: 20px;
    background: hsl(273, 68%, 69%);
    border: 4px solid white;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 20px rgba(255,255,255,0.5);
    z-index: 10;
}

.advantage-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, hsl(273, 68%, 44%), hsl(273, 68%, 29%));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}

.advantage-left .advantage-icon {
    margin-left: auto;
    margin-right: 0;
}

.advantage-right .advantage-icon {
    margin-left: 0;
    margin-right: auto;
}

.advantage-icon i {
    font-size: 2rem;
    color: white;
}

.advantage-card:hover .advantage-icon {
    transform: rotate(360deg) scale(1.1);
    box-shadow: 0 15px 35px rgba(0,0,0,0.3);
}

.advantage-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: hsl(273, 68%, 29%);
    margin-bottom: 15px;
    line-height: 1.3;
}

.advantage-description {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.6;
    font-weight: 400;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .timeline-line {
        left: 30px;
    }
    
    .timeline-dot {
        left: 30px;
    }
    
    .advantage-left,
    .advantage-right {
        text-align: left;
    }
    
    .advantage-left .advantage-card,
    .advantage-right .advantage-card {
        margin-left: 80px;
        margin-right: 0;
    }
    
    .advantage-left .advantage-icon,
    .advantage-right .advantage-icon {
        margin-left: 0;
        margin-right: auto;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .section-subtitle {
        font-size: 1.1rem;
    }
}

.faq-section {
    background: linear-gradient(135deg, hsl(273, 68%, 44%) 0%, hsl(273, 68%, 29%) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.faq-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="40" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="40" cy="80" r="1.5" fill="rgba(255,255,255,0.1)"/></svg>');
    animation: twinkle 3s ease-in-out infinite alternate;
}

@keyframes twinkle {
    0% { opacity: 0.3; }
    100% { opacity: 0.8; }
}

.faq-container {
    position: relative;
    z-index: 2;
}

.faq-header {
    text-align: center;
    margin-bottom: 60px;
}

.faq-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.faq-subtitle {
    font-size: 1.3rem;
    color: hsl(273, 68%, 69%);
    font-weight: 300;
    max-width: 600px;
    margin: 0 auto;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.faq-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.faq-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, hsl(273, 68%, 44%), hsl(273, 68%, 69%));
}

.faq-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    border-color: hsl(273, 68%, 69%);
}

.faq-question {
    font-size: 1.4rem;
    font-weight: 600;
    color: hsl(273, 68%, 29%);
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.faq-question::before {
    content: '?';
    background: hsl(273, 68%, 44%);
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
    margin-top: 2px;
}

.faq-answer {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #555;
    margin-left: 45px;
}

.faq-answer strong {
    color: hsl(273, 68%, 44%);
}

@media (max-width: 768px) {
    .faq-title {
        font-size: 2.5rem;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .faq-card {
        padding: 25px;
    }
    
    .faq-question {
        font-size: 1.2rem;
    }
    
    .faq-answer {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .faq-section {
        padding: 60px 0;
    }
    
    .faq-title {
        font-size: 2rem;
    }
    
    .faq-card {
        padding: 20px;
    }
}

.services-section {
    background: linear-gradient(135deg, hsl(273, 68%, 44%) 0%, hsl(273, 68%, 29%) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.1)"/></svg>') repeat;
    animation: starfield 20s linear infinite;
}

@keyframes starfield {
    0% { transform: translateY(0); }
    100% { transform: translateY(-100px); }
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.section-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.section-subtitle {
    font-size: 1.3rem;
    color: hsl(273, 68%, 69%);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.services-tabs {
    position: relative;
    z-index: 2;
}

.nav-tabs {
    border: none;
    justify-content: center;
    margin-bottom: 50px;
}

.nav-tabs .nav-link {
    background: rgba(255,255,255,0.1);
    border: 2px solid transparent;
    color: white;
    font-weight: 600;
    padding: 15px 30px;
    margin: 0 10px;
    border-radius: 50px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.nav-tabs .nav-link:hover {
    background: rgba(255,255,255,0.2);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.nav-tabs .nav-link.active {
    background: hsl(273, 68%, 69%);
    border-color: white;
    color: hsl(273, 68%, 29%);
}

.service-card {
    background: rgba(255,255,255,0.95);
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 30px;
    transition: all 0.4s ease;
    border: 1px solid rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: left 0.6s;
}

.service-card:hover::before {
    left: 100%;
}

.service-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    background: white;
}

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, hsl(273, 68%, 44%), hsl(273, 68%, 69%));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    transform: rotate(360deg) scale(1.1);
}

.service-icon i {
    font-size: 1.8rem;
    color: white;
}

.service-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: hsl(273, 68%, 29%);
    margin-bottom: 15px;
}

.service-description {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.service-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: hsl(273, 68%, 44%);
    margin-bottom: 15px;
}

.service-conditions {
    background: hsl(273, 68%, 95%);
    padding: 15px;
    border-radius: 10px;
    font-size: 0.85rem;
    color: hsl(273, 68%, 29%);
    border-left: 4px solid hsl(273, 68%, 69%);
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2.5rem;
    }
    
    .nav-tabs .nav-link {
        padding: 10px 20px;
        margin: 5px;
        font-size: 0.9rem;
    }
    
    .service-card {
        padding: 20px;
    }
}

.contact-section {
    background: linear-gradient(135deg, hsl(273, 68%, 44%) 0%, hsl(273, 68%, 29%) 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(255,255,255,0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(255,255,255,0.08) 0%, transparent 50%);
    pointer-events: none;
}

.contact-container {
    position: relative;
    z-index: 2;
}

.contact-header {
    text-align: center;
    margin-bottom: 60px;
}

.contact-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.contact-subtitle {
    font-size: 1.3rem;
    color: hsl(273, 68%, 85%);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.contact-form-wrapper {
    background: rgba(255,255,255,0.95);
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
}

.form-group {
    margin-bottom: 25px;
}

.form-label {
    font-weight: 600;
    color: hsl(273, 68%, 29%);
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.form-control {
    border: 2px solid hsl(273, 68%, 85%);
    border-radius: 12px;
    padding: 15px 20px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
    color: hsl(273, 68%, 29%);
}

.form-control:focus {
    border-color: hsl(273, 68%, 44%);
    box-shadow: 0 0 0 0.2rem rgba(147, 51, 234, 0.25);
    outline: none;
}

.form-control::placeholder {
    color: hsl(273, 68%, 60%);
}

.contact-btn {
    background: linear-gradient(135deg, hsl(273, 68%, 44%) 0%, hsl(273, 68%, 29%) 100%);
    border: none;
    color: white;
    padding: 18px 40px;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 8px 25px rgba(147, 51, 234, 0.4);
}

.contact-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(147, 51, 234, 0.6);
    background: linear-gradient(135deg, hsl(273, 68%, 49%) 0%, hsl(273, 68%, 34%) 100%);
}

.contact-info {
    color: white;
    padding: 40px 0;
}

.info-item {
    background: rgba(255,255,255,0.1);
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 25px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    transition: transform 0.3s ease;
}

.info-item:hover {
    transform: translateY(-5px);
}

.info-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: hsl(273, 68%, 85%);
    margin-bottom: 15px;
}

.info-text {
    color: white;
    line-height: 1.6;
    font-size: 1rem;
}

.consultation-process {
    background: rgba(255,255,255,0.1);
    border-radius: 15px;
    padding: 40px;
    margin-top: 40px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
}

.process-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: hsl(273, 68%, 85%);
    margin-bottom: 25px;
    text-align: center;
}

.process-steps {
    list-style: none;
    padding: 0;
}

.process-step {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    color: white;
    font-size: 1.1rem;
}

.step-number {
    background: hsl(273, 68%, 69%);
    color: hsl(273, 68%, 29%);
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-right: 15px;
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .contact-title {
        font-size: 2.5rem;
    }
    
    .contact-form-wrapper {
        padding: 30px 20px;
        margin: 0 15px;
    }
    
    .contact-info {
        padding: 20px 15px;
    }
    
    .consultation-process {
        margin: 20px 15px;
        padding: 25px;
    }
}

.about-section {
    background: linear-gradient(135deg, hsl(273, 68%, 44%) 0%, hsl(273, 68%, 29%) 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="stars" x="0" y="0" width="10" height="10" patternUnits="userSpaceOnUse"><circle cx="2" cy="2" r="0.5" fill="rgba(255,255,255,0.1)"/><circle cx="8" cy="7" r="0.3" fill="rgba(255,255,255,0.08)"/></pattern></defs><rect width="100" height="100" fill="url(%23stars)"/></svg>') repeat;
    opacity: 0.3;
}

.about-content {
    position: relative;
    z-index: 2;
}

.about-title {
    color: white;
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 30px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    line-height: 1.2;
}

.about-subtitle {
    color: hsl(273, 68%, 69%);
    font-size: 1.4rem;
    margin-bottom: 40px;
    font-weight: 300;
    letter-spacing: 1px;
}

.about-text {
    color: rgba(255,255,255,0.9);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 30px;
    text-align: justify;
}

.about-highlight {
    background: rgba(255,255,255,0.1);
    padding: 30px;
    border-radius: 15px;
    border-left: 5px solid hsl(273, 68%, 69%);
    margin: 40px 0;
    backdrop-filter: blur(10px);
}

.about-highlight h4 {
    color: hsl(273, 68%, 69%);
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.about-image {
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    transition: transform 0.3s ease;
    width: 100%;
    height: auto;
    object-fit: cover;
}

.about-image:hover {
    transform: translateY(-10px);
}

.image-wrapper {
    position: relative;
    margin-bottom: 30px;
}

.image-wrapper::after {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    right: -20px;
    bottom: -20px;
    background: linear-gradient(45deg, hsl(273, 68%, 69%), hsl(273, 68%, 44%));
    border-radius: 20px;
    z-index: -1;
    opacity: 0.3;
}

.mission-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 50px 0;
}

.mission-card {
    background: rgba(255,255,255,0.05);
    padding: 25px;
    border-radius: 15px;
    border: 1px solid rgba(255,255,255,0.1);
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
}

.mission-card:hover {
    background: rgba(255,255,255,0.1);
    transform: translateY(-5px);
}

.mission-card h5 {
    color: hsl(273, 68%, 69%);
    font-size: 1.2rem;
    margin-bottom: 15px;
    font-weight: 600;
}

@media (max-width: 768px) {
    .about-title {
        font-size: 2.5rem;
    }
    
    .about-section {
        padding: 60px 0;
    }
    
    .image-wrapper::after {
        display: none;
    }
}

.newsletter-section {
    background: linear-gradient(135deg, hsl(273, 68%, 44%) 0%, hsl(273, 68%, 29%) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.newsletter-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="40" r="1.5" fill="rgba(255,255,255,0.08)"/><circle cx="40" cy="80" r="1" fill="rgba(255,255,255,0.06)"/></svg>');
    animation: starfield 20s linear infinite;
}

@keyframes starfield {
    0% { transform: translateY(0); }
    100% { transform: translateY(-100px); }
}

.newsletter-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 2;
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-title {
    color: hsl(273, 68%, 29%);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: center;
    line-height: 1.2;
}

.newsletter-subtitle {
    color: hsl(273, 68%, 44%);
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 30px;
    font-style: italic;
}

.benefits-list {
    list-style: none;
    padding: 0;
    margin: 30px 0;
}

.benefits-list li {
    color: hsl(273, 68%, 29%);
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
    font-size: 1.1rem;
}

.benefits-list li::before {
    content: '★';
    position: absolute;
    left: 0;
    color: hsl(273, 68%, 69%);
    font-size: 1.2rem;
}

.newsletter-form {
    margin-top: 40px;
}

.email-input {
    border: 3px solid hsl(273, 68%, 69%);
    border-radius: 50px;
    padding: 15px 25px;
    font-size: 1.1rem;
    width: 100%;
    margin-bottom: 20px;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.9);
}

.email-input:focus {
    outline: none;
    border-color: hsl(273, 68%, 44%);
    box-shadow: 0 0 20px rgba(139, 69, 195, 0.3);
    transform: translateY(-2px);
}

.subscribe-btn {
    background: linear-gradient(45deg, hsl(273, 68%, 44%), hsl(273, 68%, 69%));
    color: white;
    border: none;
    border-radius: 50px;
    padding: 15px 40px;
    font-size: 1.2rem;
    font-weight: 600;
    width: 100%;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.subscribe-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s;
}

.subscribe-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(139, 69, 195, 0.4);
    background: linear-gradient(45deg, hsl(273, 68%, 39%), hsl(273, 68%, 64%));
}

.subscribe-btn:hover::before {
    left: 100%;
}

.subscribe-btn:active {
    transform: translateY(-1px);
}

.privacy-note {
    font-size: 0.9rem;
    color: hsl(273, 68%, 44%);
    text-align: center;
    margin-top: 15px;
    opacity: 0.8;
}

@media (max-width: 768px) {
    .newsletter-card {
        padding: 30px 20px;
        margin: 0 15px;
    }
    
    .newsletter-title {
        font-size: 2rem;
    }
    
    .benefits-list li {
        font-size: 1rem;
    }
}

.footer-section {
    background: linear-gradient(135deg, hsl(273, 68%, 29%) 0%, hsl(273, 68%, 44%) 100%);
    color: white;
    padding: 60px 0 30px;
    position: relative;
    overflow: hidden;
}

.footer-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 20"><defs><radialGradient id="star" cx="50%" cy="50%" r="50%"><stop offset="0%" style="stop-color:rgba(255,255,255,0.8)"/><stop offset="100%" style="stop-color:rgba(255,255,255,0)"/></radialGradient></defs><circle cx="10" cy="5" r="0.5" fill="url(%23star)"/><circle cx="30" cy="15" r="0.3" fill="url(%23star)"/><circle cx="70" cy="8" r="0.4" fill="url(%23star)"/><circle cx="90" cy="12" r="0.2" fill="url(%23star)"/></svg>') repeat;
    opacity: 0.3;
    animation: twinkle 3s ease-in-out infinite alternate;
}

@keyframes twinkle {
    0% { opacity: 0.2; }
    100% { opacity: 0.5; }
}

.footer-content {
    position: relative;
    z-index: 2;
}

.footer-title {
    color: hsl(273, 68%, 69%);
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.footer-description {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 30px;
    color: rgba(255,255,255,0.9);
}

.footer-links h5 {
    color: hsl(273, 68%, 69%);
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.footer-links a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    display: block;
    padding: 5px 0;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.footer-links a:hover {
    color: hsl(273, 68%, 69%);
    padding-left: 10px;
    transform: translateX(5px);
}

.contact-info {
    background: rgba(255,255,255,0.1);
    padding: 20px;
    border-radius: 10px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
}

.contact-info h5 {
    color: hsl(273, 68%, 69%);
    margin-bottom: 15px;
}

.contact-item {
    margin-bottom: 10px;
    color: rgba(255,255,255,0.9);
}

.contact-item i {
    color: hsl(273, 68%, 69%);
    margin-right: 10px;
    width: 20px;
}

.phone-link {
    color: rgba(255,255,255,0.9);
    text-decoration: none;
    transition: color 0.3s ease;
}

.phone-link:hover {
    color: hsl(273, 68%, 69%);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.2);
    margin-top: 40px;
    padding-top: 20px;
    text-align: center;
    color: rgba(255,255,255,0.7);
}

.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, hsl(273, 68%, 44%) 0%, hsl(273, 68%, 29%) 100%);
    color: white;
    padding: 20px 0;
    z-index: 9999;
    box-shadow: 0 -5px 20px rgba(0,0,0,0.3);
    transform: translateY(100%);
    transition: transform 0.5s ease;
}

.cookie-notice.show {
    transform: translateY(0);
}

.cookie-text {
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 15px;
}

.cookie-buttons .btn {
    margin: 5px;
    border-radius: 25px;
    font-weight: 600;
    padding: 8px 20px;
    transition: all 0.3s ease;
}

.btn-accept {
    background: hsl(273, 68%, 69%);
    border: none;
    color: hsl(273, 68%, 29%);
}

.btn-accept:hover {
    background: white;
    color: hsl(273, 68%, 29%);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.btn-learn {
    background: transparent;
    border: 2px solid hsl(273, 68%, 69%);
    color: hsl(273, 68%, 69%);
}

.btn-learn:hover {
    background: hsl(273, 68%, 69%);
    color: hsl(273, 68%, 29%);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .footer-section {
        padding: 40px 0 20px;
    }
    
    .footer-title {
        font-size: 1.8rem;
    }
    
    .cookie-notice {
        padding: 15px 0;
    }
    
    .cookie-buttons {
        text-align: center;
    }
    
    .cookie-buttons .btn {
        display: block;
        width: 100%;
        margin: 5px 0;
    }
}