:root {
            --primary-color: hsl(269, 36%, 39%);
            --secondary-color: hsl(269, 36%, 24%);
            --accent-color: hsl(269, 36%, 64%);
        }
        
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
            min-height: 100vh;
        }
        
        .navbar {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
        }
        
        .navbar-brand {
            font-weight: 700;
            font-size: 1.5rem;
            color: var(--primary-color) !important;
            display: flex;
            align-items: center;
            gap: 12px;
        }
        
        .navbar-brand:hover {
            color: var(--accent-color) !important;
            transform: translateY(-2px);
            transition: all 0.3s ease;
        }
        
        .navbar-nav .nav-link {
            color: var(--primary-color) !important;
            font-weight: 500;
            margin: 0 8px;
            padding: 8px 16px !important;
            border-radius: 25px;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .navbar-nav .nav-link:hover {
            background: linear-gradient(45deg, var(--accent-color), var(--primary-color));
            color: white !important;
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
        }
        
        .navbar-toggler {
            border: none;
            padding: 8px 12px;
            border-radius: 8px;
            background: var(--accent-color);
        }
        
        .navbar-toggler:focus {
            box-shadow: 0 0 0 0.25rem rgba(169, 132, 189, 0.25);
        }
        
        .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, 1%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));
            transition: all 0.3s ease;
        }
        
        .logo-glow:hover {
            filter: drop-shadow(0 0 20px var(--primary-color));
            transform: rotate(5deg) scale(1.1);
        }
        
        @media (max-width: 991px) {
            .navbar-collapse {
                background: rgba(255, 255, 255, 0.98);
                margin-top: 15px;
                border-radius: 15px;
                padding: 20px;
                box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            }
        }

.about-section {
    background: linear-gradient(135deg, hsl(269, 36%, 24%) 0%, hsl(269, 36%, 39%) 100%);
    padding: 80px 0;
    color: white;
    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="20" height="20" patternUnits="userSpaceOnUse"><circle cx="2" cy="2" r="0.5" fill="rgba(255,255,255,0.1)"/><circle cx="15" cy="8" r="0.3" fill="rgba(255,255,255,0.08)"/><circle cx="8" cy="15" r="0.4" fill="rgba(255,255,255,0.06)"/></pattern></defs><rect width="100" height="100" fill="url(%23stars)"/></svg>') repeat;
    opacity: 0.3;
}

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

.section-title {
    font-size: 3.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    background: linear-gradient(45deg, white, hsl(269, 36%, 64%));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

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

.timeline::after {
    content: '';
    position: absolute;
    width: 4px;
    background: linear-gradient(to bottom, hsl(269, 36%, 64%), hsl(269, 36%, 39%));
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -2px;
    border-radius: 2px;
}

.timeline-item {
    padding: 20px 40px;
    position: relative;
    background-color: inherit;
    width: 50%;
    margin-bottom: 40px;
}

.timeline-item::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    right: -10px;
    background: hsl(269, 36%, 64%);
    border: 4px solid white;
    top: 30px;
    border-radius: 50%;
    z-index: 1;
    box-shadow: 0 0 20px rgba(0,0,0,0.3);
}

.left {
    left: 0;
}

.right {
    left: 50%;
}

.right::after {
    left: -10px;
}

.timeline-content {
    padding: 30px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.timeline-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.timeline-content h3 {
    color: hsl(269, 36%, 64%);
    font-size: 1.8rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.timeline-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 0;
    opacity: 0.9;
}

.about-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease;
    margin: 20px 0;
}

.about-image:hover {
    transform: scale(1.02);
}

.mission-section {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 20px;
    margin: 60px 0;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
}

.mission-title {
    color: hsl(269, 36%, 64%);
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 30px;
    font-weight: 600;
}

.mission-text {
    font-size: 1.2rem;
    line-height: 1.8;
    text-align: center;
    opacity: 0.95;
}

@media screen and (max-width: 768px) {
    .timeline::after {
        left: 31px;
    }
    
    .timeline-item {
        width: 100%;
        padding-left: 70px;
        padding-right: 25px;
    }
    
    .timeline-item::after {
        left: 21px;
    }
    
    .right {
        left: 0%;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
}

.advantages-section {
    background: linear-gradient(135deg, hsl(269, 36%, 24%) 0%, hsl(269, 36%, 39%) 100%);
    padding: 80px 0;
    color: white;
}

.advantages-title {
    color: hsl(269, 36%, 64%);
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.advantage-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 30px;
    border: 2px solid transparent;
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
    height: 100%;
}

.advantage-card:hover {
    transform: translateY(-10px);
    border-color: hsl(269, 36%, 64%);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.advantage-icon {
    font-size: 3rem;
    color: hsl(269, 36%, 64%);
    margin-bottom: 20px;
    display: block;
    text-align: center;
}

.advantage-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    text-align: center;
    color: white;
}

.advantage-description {
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    text-align: center;
}

@media (max-width: 768px) {
    .advantages-title {
        font-size: 2.5rem;
    }
    
    .advantage-card {
        padding: 20px;
    }
}

.statistics-section {
    background: linear-gradient(135deg, hsl(269, 36%, 24%) 0%, hsl(269, 36%, 39%) 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="0.5" fill="rgba(255,255,255,0.1)"/><circle cx="40" cy="80" r="0.8" fill="rgba(255,255,255,0.1)"/></svg>');
    animation: starTwinkle 20s infinite linear;
}

@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: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.section-subtitle {
    color: hsl(269, 36%, 64%);
    font-size: 1.3rem;
    text-align: center;
    margin-bottom: 4rem;
    font-weight: 300;
}

.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: 2.5rem 1.5rem;
    text-align: center;
    transition: all 0.4s ease;
    height: 100%;
    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;
    animation: shimmer 1.5s ease-in-out;
}

@keyframes shimmer {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    border-color: hsl(269, 36%, 64%);
}

.stat-icon {
    font-size: 3rem;
    color: hsl(269, 36%, 64%);
    margin-bottom: 1.5rem;
    display: block;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 0.5rem;
    line-height: 1;
}

.stat-label {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.progress-ring {
    width: 120px;
    height: 120px;
    margin: 0 auto 1.5rem;
    position: relative;
}

.progress-ring svg {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

.progress-ring circle {
    fill: none;
    stroke-width: 8;
    stroke-linecap: round;
}

.progress-ring .bg {
    stroke: rgba(255, 255, 255, 0.2);
}

.progress-ring .progress {
    stroke: hsl(269, 36%, 64%);
    stroke-dasharray: 283;
    stroke-dashoffset: 283;
    animation: progressAnimation 2s ease-out forwards;
}

@keyframes progressAnimation {
    to {
        stroke-dashoffset: 70;
    }
}

.progress-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
}

.chart-container {
    height: 150px;
    position: relative;
    margin-bottom: 1.5rem;
}

.bar-chart {
    display: flex;
    align-items: end;
    height: 100%;
    gap: 8px;
    justify-content: center;
}

.bar {
    background: linear-gradient(to top, hsl(269, 36%, 64%), hsl(269, 36%, 84%));
    border-radius: 4px 4px 0 0;
    min-width: 20px;
    animation: barGrow 1.5s ease-out forwards;
    transform-origin: bottom;
    transform: scaleY(0);
}

.bar:nth-child(1) { animation-delay: 0.1s; }
.bar:nth-child(2) { animation-delay: 0.2s; }
.bar:nth-child(3) { animation-delay: 0.3s; }
.bar:nth-child(4) { animation-delay: 0.4s; }
.bar:nth-child(5) { animation-delay: 0.5s; }

@keyframes barGrow {
    to {
        transform: scaleY(1);
    }
}

.counter {
    display: inline-block;
    animation: countUp 2s ease-out forwards;
}

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

@media (max-width: 768px) {
    .section-title {
        font-size: 2.5rem;
    }
    
    .stat-card {
        margin-bottom: 2rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
}

:root {
    --primary-color: hsl(269, 36%, 39%);
    --secondary-color: hsl(269, 36%, 24%);
    --accent-color: hsl(269, 36%, 64%);
}

footer {
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    color: white;
    padding: 60px 0 20px;
    margin-top: 80px;
}

.footer-brand h4 {
    color: var(--accent-color);
    font-weight: 700;
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.footer-description {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 25px;
}

.footer-links h5 {
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

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

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--accent-color);
    transform: translateX(5px);
}

.footer-contact p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.footer-contact a {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 500;
}

.footer-contact a:hover {
    color: white;
}

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

.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    color: white;
    padding: 20px 0;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.4s ease;
    border-top: 3px solid var(--accent-color);
}

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

.cookie-text {
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.95);
}

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

.btn-accept {
    background: var(--accent-color);
    border: 2px solid var(--accent-color);
    color: white;
}

.btn-accept:hover {
    background: white;
    color: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-learn {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
}

.btn-learn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--accent-color);
    color: var(--accent-color);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .cookie-notice .row {
        text-align: center;
    }
    
    .cookie-buttons {
        margin-top: 15px;
    }
    
    footer {
        text-align: center;
    }
    
    .footer-links a:hover {
        transform: none;
    }
}

:root {
            --primary-color: hsl(269, 36%, 39%);
            --secondary-color: hsl(269, 36%, 24%);
            --accent-color: hsl(269, 36%, 64%);
        }
        
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
            min-height: 100vh;
        }
        
        .navbar {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
        }
        
        .navbar-brand {
            font-weight: 700;
            font-size: 1.5rem;
            color: var(--primary-color) !important;
            display: flex;
            align-items: center;
            gap: 12px;
        }
        
        .navbar-brand:hover {
            color: var(--accent-color) !important;
            transform: translateY(-2px);
            transition: all 0.3s ease;
        }
        
        .navbar-nav .nav-link {
            color: var(--primary-color) !important;
            font-weight: 500;
            margin: 0 8px;
            padding: 8px 16px !important;
            border-radius: 25px;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .navbar-nav .nav-link:hover {
            background: linear-gradient(45deg, var(--accent-color), var(--primary-color));
            color: white !important;
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
        }
        
        .navbar-toggler {
            border: none;
            padding: 8px 12px;
            border-radius: 8px;
            background: var(--accent-color);
        }
        
        .navbar-toggler:focus {
            box-shadow: 0 0 0 0.25rem rgba(169, 132, 189, 0.25);
        }
        
        .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, 1%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));
            transition: all 0.3s ease;
        }
        
        .logo-glow:hover {
            filter: drop-shadow(0 0 20px var(--primary-color));
            transform: rotate(5deg) scale(1.1);
        }
        
        @media (max-width: 991px) {
            .navbar-collapse {
                background: rgba(255, 255, 255, 0.98);
                margin-top: 15px;
                border-radius: 15px;
                padding: 20px;
                box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            }
        }

.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;
}

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

.privacy-title {
    font-size: 3em;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
    background: linear-gradient(45deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.privacy-subtitle {
    text-align: center;
    font-size: 1.2em;
    color: #666;
    margin-bottom: 40px;
    font-style: italic;
}

.section-title {
    font-size: 1.8em;
    font-weight: 600;
    margin: 40px 0 20px 0;
    color: #4a5568;
    border-left: 5px solid #667eea;
    padding-left: 20px;
    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;
}

.privacy-content {
    font-size: 1.1em;
    margin-bottom: 25px;
    text-align: justify;
    color: #4a5568;
}

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

.rights-list {
    background: #f8fafc;
    border-radius: 15px;
    padding: 30px;
    margin: 25px 0;
    border: 2px solid #e2e8f0;
}

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

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

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

.rights-list li:last-child {
    border-bottom: none;
}

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

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

.data-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.data-card h4 {
    color: #667eea;
    font-size: 1.3em;
    margin-bottom: 15px;
    font-weight: 600;
}

.effective-date {
    text-align: center;
    font-style: italic;
    color: #718096;
    margin-top: 40px;
    padding: 20px;
    background: #f7fafc;
    border-radius: 10px;
    border: 1px solid #e2e8f0;
}

:root {
    --primary-color: hsl(269, 36%, 39%);
    --secondary-color: hsl(269, 36%, 24%);
    --accent-color: hsl(269, 36%, 64%);
}

footer {
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    color: white;
    padding: 60px 0 20px;
    margin-top: 80px;
}

.footer-brand h4 {
    color: var(--accent-color);
    font-weight: 700;
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.footer-description {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 25px;
}

.footer-links h5 {
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

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

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--accent-color);
    transform: translateX(5px);
}

.footer-contact p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.footer-contact a {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 500;
}

.footer-contact a:hover {
    color: white;
}

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

.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    color: white;
    padding: 20px 0;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.4s ease;
    border-top: 3px solid var(--accent-color);
}

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

.cookie-text {
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.95);
}

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

.btn-accept {
    background: var(--accent-color);
    border: 2px solid var(--accent-color);
    color: white;
}

.btn-accept:hover {
    background: white;
    color: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-learn {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
}

.btn-learn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--accent-color);
    color: var(--accent-color);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .cookie-notice .row {
        text-align: center;
    }
    
    .cookie-buttons {
        margin-top: 15px;
    }
    
    footer {
        text-align: center;
    }
    
    .footer-links a:hover {
        transform: none;
    }
}

:root {
            --primary-color: hsl(269, 36%, 39%);
            --secondary-color: hsl(269, 36%, 24%);
            --accent-color: hsl(269, 36%, 64%);
        }
        
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
            min-height: 100vh;
        }
        
        .navbar {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
        }
        
        .navbar-brand {
            font-weight: 700;
            font-size: 1.5rem;
            color: var(--primary-color) !important;
            display: flex;
            align-items: center;
            gap: 12px;
        }
        
        .navbar-brand:hover {
            color: var(--accent-color) !important;
            transform: translateY(-2px);
            transition: all 0.3s ease;
        }
        
        .navbar-nav .nav-link {
            color: var(--primary-color) !important;
            font-weight: 500;
            margin: 0 8px;
            padding: 8px 16px !important;
            border-radius: 25px;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .navbar-nav .nav-link:hover {
            background: linear-gradient(45deg, var(--accent-color), var(--primary-color));
            color: white !important;
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
        }
        
        .navbar-toggler {
            border: none;
            padding: 8px 12px;
            border-radius: 8px;
            background: var(--accent-color);
        }
        
        .navbar-toggler:focus {
            box-shadow: 0 0 0 0.25rem rgba(169, 132, 189, 0.25);
        }
        
        .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, 1%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));
            transition: all 0.3s ease;
        }
        
        .logo-glow:hover {
            filter: drop-shadow(0 0 20px var(--primary-color));
            transform: rotate(5deg) scale(1.1);
        }
        
        @media (max-width: 991px) {
            .navbar-collapse {
                background: rgba(255, 255, 255, 0.98);
                margin-top: 15px;
                border-radius: 15px;
                padding: 20px;
                box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            }
        }

.cookies-policy {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    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: 3.2em;
    color: #2c3e50;
    margin-bottom: 15px;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

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

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

.content-block {
    margin-bottom: 30px;
    padding: 25px;
    background: rgba(102, 126, 234, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(102, 126, 234, 0.1);
}

.cookie-type {
    background: linear-gradient(45deg, #667eea, #764ba2);
    color: white;
    padding: 15px 25px;
    border-radius: 10px;
    margin: 15px 0;
    font-weight: 600;
}

.cookie-list {
    list-style: none;
    padding: 0;
}

.cookie-list li {
    padding: 12px 0;
    border-bottom: 1px solid #ecf0f1;
    position: relative;
    padding-left: 30px;
}

.cookie-list li:before {
    content: "🍪";
    position: absolute;
    left: 0;
    top: 12px;
}

.highlight-box {
    background: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%);
    padding: 25px;
    border-radius: 15px;
    margin: 25px 0;
    border-left: 5px solid #e67e22;
}

.consent-section {
    background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
    padding: 30px;
    border-radius: 15px;
    margin: 30px 0;
    text-align: center;
}

.gdpr-compliance {
    background: linear-gradient(135deg, #d299c2 0%, #fef9d7 100%);
    padding: 25px;
    border-radius: 15px;
    margin: 25px 0;
    border: 2px solid #8e44ad;
}

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

.control-card {
    background: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-top: 4px solid #667eea;
}

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

@media (max-width: 768px) {
    .policy-container {
        padding: 30px 20px;
    }
    
    .policy-title {
        font-size: 2.5em;
    }
    
    .section-title {
        font-size: 1.6em;
    }
    
    .control-options {
        grid-template-columns: 1fr;
    }
}

:root {
    --primary-color: hsl(269, 36%, 39%);
    --secondary-color: hsl(269, 36%, 24%);
    --accent-color: hsl(269, 36%, 64%);
}

footer {
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    color: white;
    padding: 60px 0 20px;
    margin-top: 80px;
}

.footer-brand h4 {
    color: var(--accent-color);
    font-weight: 700;
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.footer-description {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 25px;
}

.footer-links h5 {
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

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

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--accent-color);
    transform: translateX(5px);
}

.footer-contact p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.footer-contact a {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 500;
}

.footer-contact a:hover {
    color: white;
}

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

.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    color: white;
    padding: 20px 0;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.4s ease;
    border-top: 3px solid var(--accent-color);
}

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

.cookie-text {
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.95);
}

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

.btn-accept {
    background: var(--accent-color);
    border: 2px solid var(--accent-color);
    color: white;
}

.btn-accept:hover {
    background: white;
    color: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-learn {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
}

.btn-learn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--accent-color);
    color: var(--accent-color);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .cookie-notice .row {
        text-align: center;
    }
    
    .cookie-buttons {
        margin-top: 15px;
    }
    
    footer {
        text-align: center;
    }
    
    .footer-links a:hover {
        transform: none;
    }
}

:root {
            --primary-color: hsl(269, 36%, 39%);
            --secondary-color: hsl(269, 36%, 24%);
            --accent-color: hsl(269, 36%, 64%);
        }
        
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
            min-height: 100vh;
        }
        
        .navbar {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
        }
        
        .navbar-brand {
            font-weight: 700;
            font-size: 1.5rem;
            color: var(--primary-color) !important;
            display: flex;
            align-items: center;
            gap: 12px;
        }
        
        .navbar-brand:hover {
            color: var(--accent-color) !important;
            transform: translateY(-2px);
            transition: all 0.3s ease;
        }
        
        .navbar-nav .nav-link {
            color: var(--primary-color) !important;
            font-weight: 500;
            margin: 0 8px;
            padding: 8px 16px !important;
            border-radius: 25px;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .navbar-nav .nav-link:hover {
            background: linear-gradient(45deg, var(--accent-color), var(--primary-color));
            color: white !important;
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
        }
        
        .navbar-toggler {
            border: none;
            padding: 8px 12px;
            border-radius: 8px;
            background: var(--accent-color);
        }
        
        .navbar-toggler:focus {
            box-shadow: 0 0 0 0.25rem rgba(169, 132, 189, 0.25);
        }
        
        .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, 1%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));
            transition: all 0.3s ease;
        }
        
        .logo-glow:hover {
            filter: drop-shadow(0 0 20px var(--primary-color));
            transform: rotate(5deg) scale(1.1);
        }
        
        @media (max-width: 991px) {
            .navbar-collapse {
                background: rgba(255, 255, 255, 0.98);
                margin-top: 15px;
                border-radius: 15px;
                padding: 20px;
                box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            }
        }

#contact {
    background: linear-gradient(135deg, hsl(269, 36%, 24%) 0%, hsl(269, 36%, 39%) 100%);
    padding: 80px 0;
    color: white;
    position: relative;
    overflow: hidden;
}

#contact::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="70" r="1" fill="rgba(255,255,255,0.06)"/><circle cx="70" cy="80" r="2.5" fill="rgba(255,255,255,0.05)"/></svg>') repeat;
    animation: starTwinkle 20s linear infinite;
}

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

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

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

.contact-header p {
    font-size: 1.2rem;
    color: hsl(269, 36%, 84%);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.contact-form {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
    position: relative;
    z-index: 2;
}

.contact-form h3 {
    color: white;
    font-size: 1.8rem;
    margin-bottom: 30px;
    font-weight: 600;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

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

.form-group label {
    color: white;
    font-weight: 500;
    margin-bottom: 8px;
    display: block;
    font-size: 1rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.form-control {
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    padding: 15px 20px;
    color: white;
    font-size: 1rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.form-control::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.form-control:focus {
    outline: none;
    border-color: hsl(269, 36%, 64%);
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
    color: white;
}

.form-control:valid {
    border-color: #28a745;
}

.form-control:invalid:not(:placeholder-shown) {
    border-color: #dc3545;
}

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

.contact-info h3 {
    color: white;
    font-size: 1.8rem;
    margin-bottom: 30px;
    font-weight: 600;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

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

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

.info-card h4 {
    color: hsl(269, 36%, 84%);
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.info-card p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 0;
}

.working-hours {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 20px;
    margin-top: 20px;
}

.working-hours h5 {
    color: hsl(269, 36%, 84%);
    font-size: 1.1rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.hours-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.hours-list li {
    color: rgba(255, 255, 255, 0.9);
    padding: 5px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
}

.hours-list li:last-child {
    border-bottom: none;
}

.submit-btn {
    background: linear-gradient(45deg, hsl(269, 36%, 64%), hsl(269, 36%, 54%));
    border: none;
    color: white;
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.submit-btn:hover {
    background: linear-gradient(45deg, hsl(269, 36%, 54%), hsl(269, 36%, 44%));
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}

.submit-btn:active {
    transform: translateY(0);
}

@media (max-width: 768px) {
    #contact {
        padding: 60px 0;
    }
    
    .contact-header h2 {
        font-size: 2.2rem;
    }
    
    .contact-form, .info-card {
        padding: 25px;
    }
    
    .contact-form h3, .contact-info h3 {
        font-size: 1.5rem;
    }
}

.about-section {
    background: linear-gradient(135deg, hsl(269, 36%, 24%) 0%, hsl(269, 36%, 39%) 100%);
    padding: 80px 0;
    color: white;
    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="20" height="20" patternUnits="userSpaceOnUse"><circle cx="2" cy="2" r="0.5" fill="rgba(255,255,255,0.1)"/><circle cx="15" cy="8" r="0.3" fill="rgba(255,255,255,0.08)"/><circle cx="8" cy="15" r="0.4" fill="rgba(255,255,255,0.06)"/></pattern></defs><rect width="100" height="100" fill="url(%23stars)"/></svg>') repeat;
    opacity: 0.3;
}

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

.section-title {
    font-size: 3.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    background: linear-gradient(45deg, white, hsl(269, 36%, 64%));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

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

.timeline::after {
    content: '';
    position: absolute;
    width: 4px;
    background: linear-gradient(to bottom, hsl(269, 36%, 64%), hsl(269, 36%, 39%));
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -2px;
    border-radius: 2px;
}

.timeline-item {
    padding: 20px 40px;
    position: relative;
    background-color: inherit;
    width: 50%;
    margin-bottom: 40px;
}

.timeline-item::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    right: -10px;
    background: hsl(269, 36%, 64%);
    border: 4px solid white;
    top: 30px;
    border-radius: 50%;
    z-index: 1;
    box-shadow: 0 0 20px rgba(0,0,0,0.3);
}

.left {
    left: 0;
}

.right {
    left: 50%;
}

.right::after {
    left: -10px;
}

.timeline-content {
    padding: 30px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.timeline-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.timeline-content h3 {
    color: hsl(269, 36%, 64%);
    font-size: 1.8rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.timeline-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 0;
    opacity: 0.9;
}

.about-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease;
    margin: 20px 0;
}

.about-image:hover {
    transform: scale(1.02);
}

.mission-section {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 20px;
    margin: 60px 0;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
}

.mission-title {
    color: hsl(269, 36%, 64%);
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 30px;
    font-weight: 600;
}

.mission-text {
    font-size: 1.2rem;
    line-height: 1.8;
    text-align: center;
    opacity: 0.95;
}

@media screen and (max-width: 768px) {
    .timeline::after {
        left: 31px;
    }
    
    .timeline-item {
        width: 100%;
        padding-left: 70px;
        padding-right: 25px;
    }
    
    .timeline-item::after {
        left: 21px;
    }
    
    .right {
        left: 0%;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
}

:root {
    --primary-color: hsl(269, 36%, 39%);
    --secondary-color: hsl(269, 36%, 24%);
    --accent-color: hsl(269, 36%, 64%);
}

footer {
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    color: white;
    padding: 60px 0 20px;
    margin-top: 80px;
}

.footer-brand h4 {
    color: var(--accent-color);
    font-weight: 700;
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.footer-description {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 25px;
}

.footer-links h5 {
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

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

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--accent-color);
    transform: translateX(5px);
}

.footer-contact p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.footer-contact a {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 500;
}

.footer-contact a:hover {
    color: white;
}

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

.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    color: white;
    padding: 20px 0;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.4s ease;
    border-top: 3px solid var(--accent-color);
}

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

.cookie-text {
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.95);
}

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

.btn-accept {
    background: var(--accent-color);
    border: 2px solid var(--accent-color);
    color: white;
}

.btn-accept:hover {
    background: white;
    color: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-learn {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
}

.btn-learn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--accent-color);
    color: var(--accent-color);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .cookie-notice .row {
        text-align: center;
    }
    
    .cookie-buttons {
        margin-top: 15px;
    }
    
    footer {
        text-align: center;
    }
    
    .footer-links a:hover {
        transform: none;
    }
}

:root {
            --primary-color: hsl(269, 36%, 39%);
            --secondary-color: hsl(269, 36%, 24%);
            --accent-color: hsl(269, 36%, 64%);
        }
        
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
            min-height: 100vh;
        }
        
        .navbar {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
        }
        
        .navbar-brand {
            font-weight: 700;
            font-size: 1.5rem;
            color: var(--primary-color) !important;
            display: flex;
            align-items: center;
            gap: 12px;
        }
        
        .navbar-brand:hover {
            color: var(--accent-color) !important;
            transform: translateY(-2px);
            transition: all 0.3s ease;
        }
        
        .navbar-nav .nav-link {
            color: var(--primary-color) !important;
            font-weight: 500;
            margin: 0 8px;
            padding: 8px 16px !important;
            border-radius: 25px;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .navbar-nav .nav-link:hover {
            background: linear-gradient(45deg, var(--accent-color), var(--primary-color));
            color: white !important;
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
        }
        
        .navbar-toggler {
            border: none;
            padding: 8px 12px;
            border-radius: 8px;
            background: var(--accent-color);
        }
        
        .navbar-toggler:focus {
            box-shadow: 0 0 0 0.25rem rgba(169, 132, 189, 0.25);
        }
        
        .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, 1%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));
            transition: all 0.3s ease;
        }
        
        .logo-glow:hover {
            filter: drop-shadow(0 0 20px var(--primary-color));
            transform: rotate(5deg) scale(1.1);
        }
        
        @media (max-width: 991px) {
            .navbar-collapse {
                background: rgba(255, 255, 255, 0.98);
                margin-top: 15px;
                border-radius: 15px;
                padding: 20px;
                box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            }
        }

.services-section {
    background: linear-gradient(135deg, hsl(269, 36%, 24%) 0%, hsl(269, 36%, 39%) 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="20" cy="20" r="1" 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" fill="rgba(255,255,255,0.1)"/></svg>');
    animation: starTwinkle 20s infinite linear;
}

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

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

.section-subtitle {
    color: hsl(269, 36%, 64%);
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 60px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.service-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 40px 30px;
    margin-bottom: 30px;
    text-align: center;
    transition: all 0.4s ease;
    border: 2px solid transparent;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    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 ease;
}

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

.service-card:hover {
    transform: translateY(-10px);
    border-color: hsl(269, 36%, 64%);
    box-shadow: 0 20px 50px rgba(0,0,0,0.2);
}

.service-icon {
    font-size: 3.5rem;
    color: hsl(269, 36%, 39%);
    margin-bottom: 25px;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    color: hsl(269, 36%, 24%);
    transform: scale(1.1);
}

.service-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: hsl(269, 36%, 24%);
    margin-bottom: 15px;
}

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

.service-price {
    font-size: 1.8rem;
    font-weight: 800;
    color: hsl(269, 36%, 39%);
    margin-bottom: 15px;
}

.service-conditions {
    font-size: 0.85rem;
    color: #888;
    font-style: italic;
    border-top: 1px solid #eee;
    padding-top: 15px;
}

.premium-card {
    border: 3px solid hsl(269, 36%, 64%);
    background: linear-gradient(135deg, rgba(255,255,255,0.98) 0%, rgba(255,255,255,0.95) 100%);
    position: relative;
}

.premium-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background: hsl(269, 36%, 64%);
    color: white;
    padding: 5px 15px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.newsletter-section {
    background: linear-gradient(135deg, hsl(269, 36%, 24%) 0%, hsl(269, 36%, 39%) 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="1" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="40" r="0.5" fill="rgba(255,255,255,0.15)"/><circle cx="40" cy="80" r="1.5" fill="rgba(255,255,255,0.08)"/><circle cx="90" cy="90" r="0.8" fill="rgba(255,255,255,0.12)"/></svg>') repeat;
    animation: starfield 20s linear infinite;
}

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

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

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

.newsletter-subtitle {
    font-size: 1.3rem;
    color: hsl(269, 36%, 85%);
    text-align: center;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.newsletter-form {
    max-width: 500px;
    margin: 0 auto 3rem;
}

.form-group {
    position: relative;
    margin-bottom: 2rem;
}

.newsletter-input {
    width: 100%;
    padding: 18px 25px;
    font-size: 1.1rem;
    border: 3px solid hsl(269, 36%, 64%);
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.95);
    color: hsl(269, 36%, 24%);
    transition: all 0.3s ease;
    outline: none;
}

.newsletter-input:focus {
    border-color: white;
    background: white;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.newsletter-input::placeholder {
    color: hsl(269, 36%, 50%);
    opacity: 0.8;
}

.newsletter-btn {
    width: 100%;
    padding: 18px 30px;
    font-size: 1.2rem;
    font-weight: 600;
    background: linear-gradient(45deg, hsl(269, 36%, 64%), hsl(269, 36%, 74%));
    color: white;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.newsletter-btn:hover {
    background: linear-gradient(45deg, hsl(269, 36%, 74%), hsl(269, 36%, 84%));
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.3);
}

.newsletter-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.benefit-item {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease;
}

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

.benefit-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.benefit-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: white;
    margin-bottom: 0.8rem;
}

.benefit-text {
    color: hsl(269, 36%, 85%);
    line-height: 1.5;
    font-size: 0.95rem;
}

@media (max-width: 768px) {
    .newsletter-title {
        font-size: 2.2rem;
    }
    
    .newsletter-subtitle {
        font-size: 1.1rem;
        padding: 0 1rem;
    }
    
    .newsletter-form {
        padding: 0 1rem;
    }
    
    .newsletter-benefits {
        padding: 0 1rem;
        grid-template-columns: 1fr;
    }
}

.testimonials-section {
    background: linear-gradient(135deg, hsl(269, 36%, 24%) 0%, hsl(269, 36%, 39%) 100%);
    padding: 80px 0;
    overflow: hidden;
    position: relative;
}

.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="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>') repeat;
    pointer-events: none;
}

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

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

.section-subtitle {
    color: hsl(269, 36%, 64%);
    font-size: 1.3rem;
    font-weight: 300;
    max-width: 600px;
    margin: 0 auto;
}

.testimonials-scroll {
    height: 500px;
    overflow-y: auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.testimonials-scroll::-webkit-scrollbar {
    width: 8px;
}

.testimonials-scroll::-webkit-scrollbar-track {
    background: rgba(255,255,255,0.1);
    border-radius: 4px;
}

.testimonials-scroll::-webkit-scrollbar-thumb {
    background: hsl(269, 36%, 64%);
    border-radius: 4px;
}

.testimonials-scroll::-webkit-scrollbar-thumb:hover {
    background: hsl(269, 36%, 54%);
}

.testimonial-card {
    background: rgba(255,255,255,0.95);
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 25px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    border-left: 5px solid hsl(269, 36%, 64%);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 6rem;
    color: hsl(269, 36%, 64%);
    opacity: 0.3;
    font-family: serif;
    line-height: 1;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}

.testimonial-text {
    color: hsl(269, 36%, 24%);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
    position: relative;
    z-index: 2;
}

.testimonial-author {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid hsl(269, 36%, 90%);
    padding-top: 15px;
}

.author-name {
    font-weight: 700;
    color: hsl(269, 36%, 39%);
    font-size: 1.1rem;
}

.author-location {
    color: hsl(269, 36%, 64%);
    font-size: 0.95rem;
    font-weight: 500;
}

.scroll-indicator {
    text-align: center;
    margin-top: 20px;
    position: relative;
    z-index: 2;
}

.scroll-text {
    color: hsl(269, 36%, 64%);
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.scroll-arrow {
    color: white;
    font-size: 1.5rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2.5rem;
    }
    
    .testimonials-scroll {
        height: 400px;
        padding: 0 10px;
    }
    
    .testimonial-card {
        padding: 20px;
        margin-bottom: 20px;
    }
    
    .testimonial-text {
        font-size: 1rem;
    }
    
    .testimonial-author {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
}

:root {
    --primary-color: hsl(269, 36%, 39%);
    --secondary-color: hsl(269, 36%, 24%);
    --accent-color: hsl(269, 36%, 64%);
}

footer {
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    color: white;
    padding: 60px 0 20px;
    margin-top: 80px;
}

.footer-brand h4 {
    color: var(--accent-color);
    font-weight: 700;
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.footer-description {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 25px;
}

.footer-links h5 {
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

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

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--accent-color);
    transform: translateX(5px);
}

.footer-contact p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.footer-contact a {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 500;
}

.footer-contact a:hover {
    color: white;
}

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

.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    color: white;
    padding: 20px 0;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.4s ease;
    border-top: 3px solid var(--accent-color);
}

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

.cookie-text {
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.95);
}

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

.btn-accept {
    background: var(--accent-color);
    border: 2px solid var(--accent-color);
    color: white;
}

.btn-accept:hover {
    background: white;
    color: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-learn {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
}

.btn-learn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--accent-color);
    color: var(--accent-color);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .cookie-notice .row {
        text-align: center;
    }
    
    .cookie-buttons {
        margin-top: 15px;
    }
    
    footer {
        text-align: center;
    }
    
    .footer-links a:hover {
        transform: none;
    }
}

:root {
            --primary-color: hsl(269, 36%, 39%);
            --secondary-color: hsl(269, 36%, 24%);
            --accent-color: hsl(269, 36%, 64%);
        }
        
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
            min-height: 100vh;
        }
        
        .navbar {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
        }
        
        .navbar-brand {
            font-weight: 700;
            font-size: 1.5rem;
            color: var(--primary-color) !important;
            display: flex;
            align-items: center;
            gap: 12px;
        }
        
        .navbar-brand:hover {
            color: var(--accent-color) !important;
            transform: translateY(-2px);
            transition: all 0.3s ease;
        }
        
        .navbar-nav .nav-link {
            color: var(--primary-color) !important;
            font-weight: 500;
            margin: 0 8px;
            padding: 8px 16px !important;
            border-radius: 25px;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .navbar-nav .nav-link:hover {
            background: linear-gradient(45deg, var(--accent-color), var(--primary-color));
            color: white !important;
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
        }
        
        .navbar-toggler {
            border: none;
            padding: 8px 12px;
            border-radius: 8px;
            background: var(--accent-color);
        }
        
        .navbar-toggler:focus {
            box-shadow: 0 0 0 0.25rem rgba(169, 132, 189, 0.25);
        }
        
        .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, 1%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));
            transition: all 0.3s ease;
        }
        
        .logo-glow:hover {
            filter: drop-shadow(0 0 20px var(--primary-color));
            transform: rotate(5deg) scale(1.1);
        }
        
        @media (max-width: 991px) {
            .navbar-collapse {
                background: rgba(255, 255, 255, 0.98);
                margin-top: 15px;
                border-radius: 15px;
                padding: 20px;
                box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            }
        }

.terms-container {
    max-width: 900px;
    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 60px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
}

.terms-title {
    font-size: 2.8em;
    color: #1a252f;
    text-align: center;
    margin-bottom: 20px;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.terms-subtitle {
    text-align: center;
    color: #7f8c8d;
    font-size: 1.1em;
    margin-bottom: 40px;
    font-style: italic;
}

.section-header {
    font-size: 1.6em;
    color: #2980b9;
    margin: 35px 0 20px 0;
    font-weight: 600;
    border-left: 5px solid #3498db;
    padding-left: 20px;
    background: linear-gradient(90deg, rgba(52, 152, 219, 0.1), transparent);
    padding: 15px 20px;
    border-radius: 8px;
}

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

.terms-list {
    margin: 20px 0;
    padding-left: 0;
    list-style: none;
}

.terms-list li {
    margin: 12px 0;
    padding: 12px 20px;
    background: rgba(52, 152, 219, 0.05);
    border-left: 3px solid #3498db;
    border-radius: 5px;
    position: relative;
}

.terms-list li:before {
    content: "▶";
    color: #3498db;
    font-weight: bold;
    position: absolute;
    left: 8px;
}

.highlight-box {
    background: linear-gradient(135deg, #ff6b6b, #ee5a24);
    color: white;
    padding: 25px;
    border-radius: 12px;
    margin: 30px 0;
    box-shadow: 0 8px 25px rgba(238, 90, 36, 0.3);
}

.effective-date {
    text-align: center;
    font-style: italic;
    color: #7f8c8d;
    margin-top: 40px;
    padding: 20px;
    background: rgba(127, 140, 141, 0.1);
    border-radius: 10px;
}

:root {
    --primary-color: hsl(269, 36%, 39%);
    --secondary-color: hsl(269, 36%, 24%);
    --accent-color: hsl(269, 36%, 64%);
}

footer {
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    color: white;
    padding: 60px 0 20px;
    margin-top: 80px;
}

.footer-brand h4 {
    color: var(--accent-color);
    font-weight: 700;
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.footer-description {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 25px;
}

.footer-links h5 {
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

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

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--accent-color);
    transform: translateX(5px);
}

.footer-contact p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.footer-contact a {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 500;
}

.footer-contact a:hover {
    color: white;
}

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

.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    color: white;
    padding: 20px 0;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.4s ease;
    border-top: 3px solid var(--accent-color);
}

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

.cookie-text {
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.95);
}

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

.btn-accept {
    background: var(--accent-color);
    border: 2px solid var(--accent-color);
    color: white;
}

.btn-accept:hover {
    background: white;
    color: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-learn {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
}

.btn-learn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--accent-color);
    color: var(--accent-color);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .cookie-notice .row {
        text-align: center;
    }
    
    .cookie-buttons {
        margin-top: 15px;
    }
    
    footer {
        text-align: center;
    }
    
    .footer-links a:hover {
        transform: none;
    }
}

:root {
            --primary-color: hsl(269, 36%, 39%);
            --secondary-color: hsl(269, 36%, 24%);
            --accent-color: hsl(269, 36%, 64%);
        }
        
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
            min-height: 100vh;
        }
        
        .navbar {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
        }
        
        .navbar-brand {
            font-weight: 700;
            font-size: 1.5rem;
            color: var(--primary-color) !important;
            display: flex;
            align-items: center;
            gap: 12px;
        }
        
        .navbar-brand:hover {
            color: var(--accent-color) !important;
            transform: translateY(-2px);
            transition: all 0.3s ease;
        }
        
        .navbar-nav .nav-link {
            color: var(--primary-color) !important;
            font-weight: 500;
            margin: 0 8px;
            padding: 8px 16px !important;
            border-radius: 25px;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .navbar-nav .nav-link:hover {
            background: linear-gradient(45deg, var(--accent-color), var(--primary-color));
            color: white !important;
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
        }
        
        .navbar-toggler {
            border: none;
            padding: 8px 12px;
            border-radius: 8px;
            background: var(--accent-color);
        }
        
        .navbar-toggler:focus {
            box-shadow: 0 0 0 0.25rem rgba(169, 132, 189, 0.25);
        }
        
        .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, 1%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));
            transition: all 0.3s ease;
        }
        
        .logo-glow:hover {
            filter: drop-shadow(0 0 20px var(--primary-color));
            transform: rotate(5deg) scale(1.1);
        }
        
        @media (max-width: 991px) {
            .navbar-collapse {
                background: rgba(255, 255, 255, 0.98);
                margin-top: 15px;
                border-radius: 15px;
                padding: 20px;
                box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            }
        }

.faq-section {
    background: linear-gradient(135deg, hsl(269, 36%, 24%) 0%, hsl(269, 36%, 39%) 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="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)"/></svg>');
    animation: starfield 20s linear infinite;
}

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

.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(269, 36%, 64%);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.faq-accordion {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    margin-bottom: 20px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.faq-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

.faq-question {
    padding: 25px 30px;
    cursor: pointer;
    position: relative;
    border: none;
    background: transparent;
    width: 100%;
    text-align: left;
    font-size: 1.2rem;
    font-weight: 600;
    color: hsl(269, 36%, 24%);
    transition: color 0.3s ease;
}

.faq-question:hover {
    color: hsl(269, 36%, 39%);
}

.faq-question::after {
    content: '+';
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 2rem;
    font-weight: 300;
    color: hsl(269, 36%, 64%);
    transition: transform 0.3s ease;
}

.faq-question.active::after {
    transform: translateY(-50%) rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    background: linear-gradient(to right, rgba(269, 36%, 64%, 0.05), transparent);
}

.faq-answer.active {
    max-height: 300px;
    padding: 0 30px 25px 30px;
}

.faq-answer-content {
    color: hsl(269, 36%, 24%);
    line-height: 1.7;
    font-size: 1.05rem;
    padding-top: 15px;
    border-top: 1px solid rgba(269, 36%, 64%, 0.2);
}

@media (max-width: 768px) {
    .faq-title {
        font-size: 2.5rem;
    }
    
    .faq-subtitle {
        font-size: 1.1rem;
        padding: 0 20px;
    }
    
    .faq-question {
        padding: 20px 25px;
        font-size: 1.1rem;
    }
    
    .faq-question::after {
        right: 25px;
        font-size: 1.8rem;
    }
    
    .faq-answer.active {
        padding: 0 25px 20px 25px;
    }
}

.about-section {
    background: linear-gradient(135deg, hsl(269, 36%, 24%) 0%, hsl(269, 36%, 39%) 100%);
    padding: 80px 0;
    color: white;
    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="20" height="20" patternUnits="userSpaceOnUse"><circle cx="2" cy="2" r="0.5" fill="rgba(255,255,255,0.1)"/><circle cx="15" cy="8" r="0.3" fill="rgba(255,255,255,0.08)"/><circle cx="8" cy="15" r="0.4" fill="rgba(255,255,255,0.06)"/></pattern></defs><rect width="100" height="100" fill="url(%23stars)"/></svg>') repeat;
    opacity: 0.3;
}

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

.section-title {
    font-size: 3.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    background: linear-gradient(45deg, white, hsl(269, 36%, 64%));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

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

.timeline::after {
    content: '';
    position: absolute;
    width: 4px;
    background: linear-gradient(to bottom, hsl(269, 36%, 64%), hsl(269, 36%, 39%));
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -2px;
    border-radius: 2px;
}

.timeline-item {
    padding: 20px 40px;
    position: relative;
    background-color: inherit;
    width: 50%;
    margin-bottom: 40px;
}

.timeline-item::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    right: -10px;
    background: hsl(269, 36%, 64%);
    border: 4px solid white;
    top: 30px;
    border-radius: 50%;
    z-index: 1;
    box-shadow: 0 0 20px rgba(0,0,0,0.3);
}

.left {
    left: 0;
}

.right {
    left: 50%;
}

.right::after {
    left: -10px;
}

.timeline-content {
    padding: 30px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.timeline-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.timeline-content h3 {
    color: hsl(269, 36%, 64%);
    font-size: 1.8rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.timeline-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 0;
    opacity: 0.9;
}

.about-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease;
    margin: 20px 0;
}

.about-image:hover {
    transform: scale(1.02);
}

.mission-section {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 20px;
    margin: 60px 0;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
}

.mission-title {
    color: hsl(269, 36%, 64%);
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 30px;
    font-weight: 600;
}

.mission-text {
    font-size: 1.2rem;
    line-height: 1.8;
    text-align: center;
    opacity: 0.95;
}

@media screen and (max-width: 768px) {
    .timeline::after {
        left: 31px;
    }
    
    .timeline-item {
        width: 100%;
        padding-left: 70px;
        padding-right: 25px;
    }
    
    .timeline-item::after {
        left: 21px;
    }
    
    .right {
        left: 0%;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
}

.newsletter-section {
    background: linear-gradient(135deg, hsl(269, 36%, 24%) 0%, hsl(269, 36%, 39%) 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="1" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="40" r="0.5" fill="rgba(255,255,255,0.15)"/><circle cx="40" cy="80" r="1.5" fill="rgba(255,255,255,0.08)"/><circle cx="90" cy="90" r="0.8" fill="rgba(255,255,255,0.12)"/></svg>') repeat;
    animation: starfield 20s linear infinite;
}

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

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

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

.newsletter-subtitle {
    font-size: 1.3rem;
    color: hsl(269, 36%, 85%);
    text-align: center;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.newsletter-form {
    max-width: 500px;
    margin: 0 auto 3rem;
}

.form-group {
    position: relative;
    margin-bottom: 2rem;
}

.newsletter-input {
    width: 100%;
    padding: 18px 25px;
    font-size: 1.1rem;
    border: 3px solid hsl(269, 36%, 64%);
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.95);
    color: hsl(269, 36%, 24%);
    transition: all 0.3s ease;
    outline: none;
}

.newsletter-input:focus {
    border-color: white;
    background: white;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.newsletter-input::placeholder {
    color: hsl(269, 36%, 50%);
    opacity: 0.8;
}

.newsletter-btn {
    width: 100%;
    padding: 18px 30px;
    font-size: 1.2rem;
    font-weight: 600;
    background: linear-gradient(45deg, hsl(269, 36%, 64%), hsl(269, 36%, 74%));
    color: white;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.newsletter-btn:hover {
    background: linear-gradient(45deg, hsl(269, 36%, 74%), hsl(269, 36%, 84%));
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.3);
}

.newsletter-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.benefit-item {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease;
}

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

.benefit-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.benefit-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: white;
    margin-bottom: 0.8rem;
}

.benefit-text {
    color: hsl(269, 36%, 85%);
    line-height: 1.5;
    font-size: 0.95rem;
}

@media (max-width: 768px) {
    .newsletter-title {
        font-size: 2.2rem;
    }
    
    .newsletter-subtitle {
        font-size: 1.1rem;
        padding: 0 1rem;
    }
    
    .newsletter-form {
        padding: 0 1rem;
    }
    
    .newsletter-benefits {
        padding: 0 1rem;
        grid-template-columns: 1fr;
    }
}

:root {
    --primary-color: hsl(269, 36%, 39%);
    --secondary-color: hsl(269, 36%, 24%);
    --accent-color: hsl(269, 36%, 64%);
}

footer {
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    color: white;
    padding: 60px 0 20px;
    margin-top: 80px;
}

.footer-brand h4 {
    color: var(--accent-color);
    font-weight: 700;
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.footer-description {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 25px;
}

.footer-links h5 {
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

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

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--accent-color);
    transform: translateX(5px);
}

.footer-contact p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.footer-contact a {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 500;
}

.footer-contact a:hover {
    color: white;
}

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

.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    color: white;
    padding: 20px 0;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.4s ease;
    border-top: 3px solid var(--accent-color);
}

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

.cookie-text {
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.95);
}

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

.btn-accept {
    background: var(--accent-color);
    border: 2px solid var(--accent-color);
    color: white;
}

.btn-accept:hover {
    background: white;
    color: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-learn {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
}

.btn-learn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--accent-color);
    color: var(--accent-color);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .cookie-notice .row {
        text-align: center;
    }
    
    .cookie-buttons {
        margin-top: 15px;
    }
    
    footer {
        text-align: center;
    }
    
    .footer-links a:hover {
        transform: none;
    }
}

:root {
            --primary-color: hsl(269, 36%, 39%);
            --secondary-color: hsl(269, 36%, 24%);
            --accent-color: hsl(269, 36%, 64%);
        }
        
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
            min-height: 100vh;
        }
        
        .navbar {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
        }
        
        .navbar-brand {
            font-weight: 700;
            font-size: 1.5rem;
            color: var(--primary-color) !important;
            display: flex;
            align-items: center;
            gap: 12px;
        }
        
        .navbar-brand:hover {
            color: var(--accent-color) !important;
            transform: translateY(-2px);
            transition: all 0.3s ease;
        }
        
        .navbar-nav .nav-link {
            color: var(--primary-color) !important;
            font-weight: 500;
            margin: 0 8px;
            padding: 8px 16px !important;
            border-radius: 25px;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .navbar-nav .nav-link:hover {
            background: linear-gradient(45deg, var(--accent-color), var(--primary-color));
            color: white !important;
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
        }
        
        .navbar-toggler {
            border: none;
            padding: 8px 12px;
            border-radius: 8px;
            background: var(--accent-color);
        }
        
        .navbar-toggler:focus {
            box-shadow: 0 0 0 0.25rem rgba(169, 132, 189, 0.25);
        }
        
        .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, 1%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));
            transition: all 0.3s ease;
        }
        
        .logo-glow:hover {
            filter: drop-shadow(0 0 20px var(--primary-color));
            transform: rotate(5deg) scale(1.1);
        }
        
        @media (max-width: 991px) {
            .navbar-collapse {
                background: rgba(255, 255, 255, 0.98);
                margin-top: 15px;
                border-radius: 15px;
                padding: 20px;
                box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            }
        }

.hero-section {
    background: linear-gradient(135deg, hsl(269, 36%, 39%) 0%, hsl(269, 36%, 24%) 100%);
    color: white;
    padding: 5rem 0;
    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"><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="70" r="1" fill="rgba(255,255,255,0.12)"/><circle cx="90" cy="80" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="10" cy="60" r="1.2" fill="rgba(255,255,255,0.09)"/></svg>') repeat;
    pointer-events: none;
}

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

.hero-section h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    background: linear-gradient(45deg, #fff, hsl(269, 36%, 84%));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-section h2 {
    font-size: 1.8rem;
    color: hsl(269, 36%, 84%);
    margin-bottom: 2rem;
    font-weight: 300;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
}

.hero-description {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2.5rem;
    color: rgba(255,255,255,0.9);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-features {
    list-style: none;
    padding: 0;
    margin: 2.5rem 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-features li {
    background: rgba(255,255,255,0.1);
    padding: 1rem;
    border-radius: 10px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    transition: all 0.3s ease;
}

.hero-features li:hover {
    background: rgba(255,255,255,0.15);
    transform: translateY(-2px);
}

.hero-features li i {
    color: hsl(269, 36%, 84%);
    font-size: 1.5rem;
    margin-right: 0.5rem;
}

.hero-buttons {
    margin: 3rem 0;
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-hero-primary {
    background: linear-gradient(45deg, hsl(269, 36%, 64%), hsl(269, 36%, 54%));
    border: none;
    color: white;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.btn-hero-primary:hover {
    background: linear-gradient(45deg, hsl(269, 36%, 54%), hsl(269, 36%, 44%));
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
    color: white;
}

.btn-hero-secondary {
    background: transparent;
    border: 2px solid hsl(269, 36%, 64%);
    color: hsl(269, 36%, 84%);
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-hero-secondary:hover {
    background: hsl(269, 36%, 64%);
    color: white;
    transform: translateY(-2px);
}

.hero-image-container {
    margin-top: 4rem;
    position: relative;
}

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

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

@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 2.5rem;
    }
    
    .hero-section h2 {
        font-size: 1.4rem;
    }
    
    .hero-features {
        grid-template-columns: 1fr;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-hero-primary,
    .btn-hero-secondary {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

.testimonials-section {
    background: linear-gradient(135deg, hsl(269, 36%, 24%) 0%, hsl(269, 36%, 39%) 100%);
    padding: 80px 0;
    overflow: hidden;
    position: relative;
}

.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="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>') repeat;
    pointer-events: none;
}

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

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

.section-subtitle {
    color: hsl(269, 36%, 64%);
    font-size: 1.3rem;
    font-weight: 300;
    max-width: 600px;
    margin: 0 auto;
}

.testimonials-scroll {
    height: 500px;
    overflow-y: auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.testimonials-scroll::-webkit-scrollbar {
    width: 8px;
}

.testimonials-scroll::-webkit-scrollbar-track {
    background: rgba(255,255,255,0.1);
    border-radius: 4px;
}

.testimonials-scroll::-webkit-scrollbar-thumb {
    background: hsl(269, 36%, 64%);
    border-radius: 4px;
}

.testimonials-scroll::-webkit-scrollbar-thumb:hover {
    background: hsl(269, 36%, 54%);
}

.testimonial-card {
    background: rgba(255,255,255,0.95);
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 25px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    border-left: 5px solid hsl(269, 36%, 64%);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 6rem;
    color: hsl(269, 36%, 64%);
    opacity: 0.3;
    font-family: serif;
    line-height: 1;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}

.testimonial-text {
    color: hsl(269, 36%, 24%);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
    position: relative;
    z-index: 2;
}

.testimonial-author {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid hsl(269, 36%, 90%);
    padding-top: 15px;
}

.author-name {
    font-weight: 700;
    color: hsl(269, 36%, 39%);
    font-size: 1.1rem;
}

.author-location {
    color: hsl(269, 36%, 64%);
    font-size: 0.95rem;
    font-weight: 500;
}

.scroll-indicator {
    text-align: center;
    margin-top: 20px;
    position: relative;
    z-index: 2;
}

.scroll-text {
    color: hsl(269, 36%, 64%);
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.scroll-arrow {
    color: white;
    font-size: 1.5rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2.5rem;
    }
    
    .testimonials-scroll {
        height: 400px;
        padding: 0 10px;
    }
    
    .testimonial-card {
        padding: 20px;
        margin-bottom: 20px;
    }
    
    .testimonial-text {
        font-size: 1rem;
    }
    
    .testimonial-author {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
}

.about-section {
    background: linear-gradient(135deg, hsl(269, 36%, 24%) 0%, hsl(269, 36%, 39%) 100%);
    padding: 80px 0;
    color: white;
    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="20" height="20" patternUnits="userSpaceOnUse"><circle cx="2" cy="2" r="0.5" fill="rgba(255,255,255,0.1)"/><circle cx="15" cy="8" r="0.3" fill="rgba(255,255,255,0.08)"/><circle cx="8" cy="15" r="0.4" fill="rgba(255,255,255,0.06)"/></pattern></defs><rect width="100" height="100" fill="url(%23stars)"/></svg>') repeat;
    opacity: 0.3;
}

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

.section-title {
    font-size: 3.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    background: linear-gradient(45deg, white, hsl(269, 36%, 64%));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

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

.timeline::after {
    content: '';
    position: absolute;
    width: 4px;
    background: linear-gradient(to bottom, hsl(269, 36%, 64%), hsl(269, 36%, 39%));
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -2px;
    border-radius: 2px;
}

.timeline-item {
    padding: 20px 40px;
    position: relative;
    background-color: inherit;
    width: 50%;
    margin-bottom: 40px;
}

.timeline-item::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    right: -10px;
    background: hsl(269, 36%, 64%);
    border: 4px solid white;
    top: 30px;
    border-radius: 50%;
    z-index: 1;
    box-shadow: 0 0 20px rgba(0,0,0,0.3);
}

.left {
    left: 0;
}

.right {
    left: 50%;
}

.right::after {
    left: -10px;
}

.timeline-content {
    padding: 30px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.timeline-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.timeline-content h3 {
    color: hsl(269, 36%, 64%);
    font-size: 1.8rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.timeline-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 0;
    opacity: 0.9;
}

.about-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease;
    margin: 20px 0;
}

.about-image:hover {
    transform: scale(1.02);
}

.mission-section {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 20px;
    margin: 60px 0;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
}

.mission-title {
    color: hsl(269, 36%, 64%);
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 30px;
    font-weight: 600;
}

.mission-text {
    font-size: 1.2rem;
    line-height: 1.8;
    text-align: center;
    opacity: 0.95;
}

@media screen and (max-width: 768px) {
    .timeline::after {
        left: 31px;
    }
    
    .timeline-item {
        width: 100%;
        padding-left: 70px;
        padding-right: 25px;
    }
    
    .timeline-item::after {
        left: 21px;
    }
    
    .right {
        left: 0%;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
}

.newsletter-section {
    background: linear-gradient(135deg, hsl(269, 36%, 24%) 0%, hsl(269, 36%, 39%) 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="1" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="40" r="0.5" fill="rgba(255,255,255,0.15)"/><circle cx="40" cy="80" r="1.5" fill="rgba(255,255,255,0.08)"/><circle cx="90" cy="90" r="0.8" fill="rgba(255,255,255,0.12)"/></svg>') repeat;
    animation: starfield 20s linear infinite;
}

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

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

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

.newsletter-subtitle {
    font-size: 1.3rem;
    color: hsl(269, 36%, 85%);
    text-align: center;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.newsletter-form {
    max-width: 500px;
    margin: 0 auto 3rem;
}

.form-group {
    position: relative;
    margin-bottom: 2rem;
}

.newsletter-input {
    width: 100%;
    padding: 18px 25px;
    font-size: 1.1rem;
    border: 3px solid hsl(269, 36%, 64%);
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.95);
    color: hsl(269, 36%, 24%);
    transition: all 0.3s ease;
    outline: none;
}

.newsletter-input:focus {
    border-color: white;
    background: white;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.newsletter-input::placeholder {
    color: hsl(269, 36%, 50%);
    opacity: 0.8;
}

.newsletter-btn {
    width: 100%;
    padding: 18px 30px;
    font-size: 1.2rem;
    font-weight: 600;
    background: linear-gradient(45deg, hsl(269, 36%, 64%), hsl(269, 36%, 74%));
    color: white;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.newsletter-btn:hover {
    background: linear-gradient(45deg, hsl(269, 36%, 74%), hsl(269, 36%, 84%));
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.3);
}

.newsletter-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.benefit-item {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease;
}

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

.benefit-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.benefit-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: white;
    margin-bottom: 0.8rem;
}

.benefit-text {
    color: hsl(269, 36%, 85%);
    line-height: 1.5;
    font-size: 0.95rem;
}

@media (max-width: 768px) {
    .newsletter-title {
        font-size: 2.2rem;
    }
    
    .newsletter-subtitle {
        font-size: 1.1rem;
        padding: 0 1rem;
    }
    
    .newsletter-form {
        padding: 0 1rem;
    }
    
    .newsletter-benefits {
        padding: 0 1rem;
        grid-template-columns: 1fr;
    }
}

#contact {
    background: linear-gradient(135deg, hsl(269, 36%, 24%) 0%, hsl(269, 36%, 39%) 100%);
    padding: 80px 0;
    color: white;
    position: relative;
    overflow: hidden;
}

#contact::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="70" r="1" fill="rgba(255,255,255,0.06)"/><circle cx="70" cy="80" r="2.5" fill="rgba(255,255,255,0.05)"/></svg>') repeat;
    animation: starTwinkle 20s linear infinite;
}

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

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

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

.contact-header p {
    font-size: 1.2rem;
    color: hsl(269, 36%, 84%);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.contact-form {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
    position: relative;
    z-index: 2;
}

.contact-form h3 {
    color: white;
    font-size: 1.8rem;
    margin-bottom: 30px;
    font-weight: 600;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

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

.form-group label {
    color: white;
    font-weight: 500;
    margin-bottom: 8px;
    display: block;
    font-size: 1rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.form-control {
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    padding: 15px 20px;
    color: white;
    font-size: 1rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.form-control::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.form-control:focus {
    outline: none;
    border-color: hsl(269, 36%, 64%);
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
    color: white;
}

.form-control:valid {
    border-color: #28a745;
}

.form-control:invalid:not(:placeholder-shown) {
    border-color: #dc3545;
}

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

.contact-info h3 {
    color: white;
    font-size: 1.8rem;
    margin-bottom: 30px;
    font-weight: 600;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

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

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

.info-card h4 {
    color: hsl(269, 36%, 84%);
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.info-card p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 0;
}

.working-hours {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 20px;
    margin-top: 20px;
}

.working-hours h5 {
    color: hsl(269, 36%, 84%);
    font-size: 1.1rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.hours-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.hours-list li {
    color: rgba(255, 255, 255, 0.9);
    padding: 5px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
}

.hours-list li:last-child {
    border-bottom: none;
}

.submit-btn {
    background: linear-gradient(45deg, hsl(269, 36%, 64%), hsl(269, 36%, 54%));
    border: none;
    color: white;
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.submit-btn:hover {
    background: linear-gradient(45deg, hsl(269, 36%, 54%), hsl(269, 36%, 44%));
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}

.submit-btn:active {
    transform: translateY(0);
}

@media (max-width: 768px) {
    #contact {
        padding: 60px 0;
    }
    
    .contact-header h2 {
        font-size: 2.2rem;
    }
    
    .contact-form, .info-card {
        padding: 25px;
    }
    
    .contact-form h3, .contact-info h3 {
        font-size: 1.5rem;
    }
}

.faq-section {
    background: linear-gradient(135deg, hsl(269, 36%, 24%) 0%, hsl(269, 36%, 39%) 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="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)"/></svg>');
    animation: starfield 20s linear infinite;
}

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

.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(269, 36%, 64%);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.faq-accordion {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    margin-bottom: 20px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.faq-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

.faq-question {
    padding: 25px 30px;
    cursor: pointer;
    position: relative;
    border: none;
    background: transparent;
    width: 100%;
    text-align: left;
    font-size: 1.2rem;
    font-weight: 600;
    color: hsl(269, 36%, 24%);
    transition: color 0.3s ease;
}

.faq-question:hover {
    color: hsl(269, 36%, 39%);
}

.faq-question::after {
    content: '+';
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 2rem;
    font-weight: 300;
    color: hsl(269, 36%, 64%);
    transition: transform 0.3s ease;
}

.faq-question.active::after {
    transform: translateY(-50%) rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    background: linear-gradient(to right, rgba(269, 36%, 64%, 0.05), transparent);
}

.faq-answer.active {
    max-height: 300px;
    padding: 0 30px 25px 30px;
}

.faq-answer-content {
    color: hsl(269, 36%, 24%);
    line-height: 1.7;
    font-size: 1.05rem;
    padding-top: 15px;
    border-top: 1px solid rgba(269, 36%, 64%, 0.2);
}

@media (max-width: 768px) {
    .faq-title {
        font-size: 2.5rem;
    }
    
    .faq-subtitle {
        font-size: 1.1rem;
        padding: 0 20px;
    }
    
    .faq-question {
        padding: 20px 25px;
        font-size: 1.1rem;
    }
    
    .faq-question::after {
        right: 25px;
        font-size: 1.8rem;
    }
    
    .faq-answer.active {
        padding: 0 25px 20px 25px;
    }
}

.statistics-section {
    background: linear-gradient(135deg, hsl(269, 36%, 24%) 0%, hsl(269, 36%, 39%) 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="0.5" fill="rgba(255,255,255,0.1)"/><circle cx="40" cy="80" r="0.8" fill="rgba(255,255,255,0.1)"/></svg>');
    animation: starTwinkle 20s infinite linear;
}

@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: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.section-subtitle {
    color: hsl(269, 36%, 64%);
    font-size: 1.3rem;
    text-align: center;
    margin-bottom: 4rem;
    font-weight: 300;
}

.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: 2.5rem 1.5rem;
    text-align: center;
    transition: all 0.4s ease;
    height: 100%;
    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;
    animation: shimmer 1.5s ease-in-out;
}

@keyframes shimmer {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    border-color: hsl(269, 36%, 64%);
}

.stat-icon {
    font-size: 3rem;
    color: hsl(269, 36%, 64%);
    margin-bottom: 1.5rem;
    display: block;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 0.5rem;
    line-height: 1;
}

.stat-label {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.progress-ring {
    width: 120px;
    height: 120px;
    margin: 0 auto 1.5rem;
    position: relative;
}

.progress-ring svg {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

.progress-ring circle {
    fill: none;
    stroke-width: 8;
    stroke-linecap: round;
}

.progress-ring .bg {
    stroke: rgba(255, 255, 255, 0.2);
}

.progress-ring .progress {
    stroke: hsl(269, 36%, 64%);
    stroke-dasharray: 283;
    stroke-dashoffset: 283;
    animation: progressAnimation 2s ease-out forwards;
}

@keyframes progressAnimation {
    to {
        stroke-dashoffset: 70;
    }
}

.progress-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
}

.chart-container {
    height: 150px;
    position: relative;
    margin-bottom: 1.5rem;
}

.bar-chart {
    display: flex;
    align-items: end;
    height: 100%;
    gap: 8px;
    justify-content: center;
}

.bar {
    background: linear-gradient(to top, hsl(269, 36%, 64%), hsl(269, 36%, 84%));
    border-radius: 4px 4px 0 0;
    min-width: 20px;
    animation: barGrow 1.5s ease-out forwards;
    transform-origin: bottom;
    transform: scaleY(0);
}

.bar:nth-child(1) { animation-delay: 0.1s; }
.bar:nth-child(2) { animation-delay: 0.2s; }
.bar:nth-child(3) { animation-delay: 0.3s; }
.bar:nth-child(4) { animation-delay: 0.4s; }
.bar:nth-child(5) { animation-delay: 0.5s; }

@keyframes barGrow {
    to {
        transform: scaleY(1);
    }
}

.counter {
    display: inline-block;
    animation: countUp 2s ease-out forwards;
}

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

@media (max-width: 768px) {
    .section-title {
        font-size: 2.5rem;
    }
    
    .stat-card {
        margin-bottom: 2rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
}

.services-section {
    background: linear-gradient(135deg, hsl(269, 36%, 24%) 0%, hsl(269, 36%, 39%) 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="20" cy="20" r="1" 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" fill="rgba(255,255,255,0.1)"/></svg>');
    animation: starTwinkle 20s infinite linear;
}

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

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

.section-subtitle {
    color: hsl(269, 36%, 64%);
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 60px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.service-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 40px 30px;
    margin-bottom: 30px;
    text-align: center;
    transition: all 0.4s ease;
    border: 2px solid transparent;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    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 ease;
}

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

.service-card:hover {
    transform: translateY(-10px);
    border-color: hsl(269, 36%, 64%);
    box-shadow: 0 20px 50px rgba(0,0,0,0.2);
}

.service-icon {
    font-size: 3.5rem;
    color: hsl(269, 36%, 39%);
    margin-bottom: 25px;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    color: hsl(269, 36%, 24%);
    transform: scale(1.1);
}

.service-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: hsl(269, 36%, 24%);
    margin-bottom: 15px;
}

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

.service-price {
    font-size: 1.8rem;
    font-weight: 800;
    color: hsl(269, 36%, 39%);
    margin-bottom: 15px;
}

.service-conditions {
    font-size: 0.85rem;
    color: #888;
    font-style: italic;
    border-top: 1px solid #eee;
    padding-top: 15px;
}

.premium-card {
    border: 3px solid hsl(269, 36%, 64%);
    background: linear-gradient(135deg, rgba(255,255,255,0.98) 0%, rgba(255,255,255,0.95) 100%);
    position: relative;
}

.premium-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background: hsl(269, 36%, 64%);
    color: white;
    padding: 5px 15px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.advantages-section {
    background: linear-gradient(135deg, hsl(269, 36%, 24%) 0%, hsl(269, 36%, 39%) 100%);
    padding: 80px 0;
    color: white;
}

.advantages-title {
    color: hsl(269, 36%, 64%);
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.advantage-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 30px;
    border: 2px solid transparent;
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
    height: 100%;
}

.advantage-card:hover {
    transform: translateY(-10px);
    border-color: hsl(269, 36%, 64%);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.advantage-icon {
    font-size: 3rem;
    color: hsl(269, 36%, 64%);
    margin-bottom: 20px;
    display: block;
    text-align: center;
}

.advantage-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    text-align: center;
    color: white;
}

.advantage-description {
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    text-align: center;
}

@media (max-width: 768px) {
    .advantages-title {
        font-size: 2.5rem;
    }
    
    .advantage-card {
        padding: 20px;
    }
}

:root {
    --primary-color: hsl(269, 36%, 39%);
    --secondary-color: hsl(269, 36%, 24%);
    --accent-color: hsl(269, 36%, 64%);
}

footer {
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    color: white;
    padding: 60px 0 20px;
    margin-top: 80px;
}

.footer-brand h4 {
    color: var(--accent-color);
    font-weight: 700;
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.footer-description {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 25px;
}

.footer-links h5 {
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

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

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--accent-color);
    transform: translateX(5px);
}

.footer-contact p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.footer-contact a {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 500;
}

.footer-contact a:hover {
    color: white;
}

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

.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    color: white;
    padding: 20px 0;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.4s ease;
    border-top: 3px solid var(--accent-color);
}

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

.cookie-text {
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.95);
}

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

.btn-accept {
    background: var(--accent-color);
    border: 2px solid var(--accent-color);
    color: white;
}

.btn-accept:hover {
    background: white;
    color: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-learn {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
}

.btn-learn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--accent-color);
    color: var(--accent-color);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .cookie-notice .row {
        text-align: center;
    }
    
    .cookie-buttons {
        margin-top: 15px;
    }
    
    footer {
        text-align: center;
    }
    
    .footer-links a:hover {
        transform: none;
    }
}