:root {
            --primary-color: hsl(250, 66%, 34%);
            --secondary-color: hsl(250, 66%, 19%);
            --accent-color: hsl(250, 66%, 59%);
        }
        
        .navbar {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            box-shadow: 0 4px 20px rgba(0,0,0,0.1);
            padding: 1rem 0;
        }
        
        .navbar-brand {
            font-weight: 700;
            font-size: 1.8rem;
            color: white !important;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
            transition: all 0.3s ease;
        }
        
        .navbar-brand:hover {
            transform: translateY(-2px);
            text-shadow: 3px 3px 6px rgba(0,0,0,0.4);
        }
        
        .navbar-nav .nav-link {
            color: rgba(255,255,255,0.9) !important;
            font-weight: 500;
            margin: 0 0.5rem;
            padding: 0.5rem 1rem !important;
            border-radius: 25px;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }
        
        .navbar-nav .nav-link::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
            transition: left 0.5s;
        }
        
        .navbar-nav .nav-link:hover::before {
            left: 100%;
        }
        
        .navbar-nav .nav-link:hover {
            color: white !important;
            background: var(--accent-color);
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(0,0,0,0.2);
        }
        
        .navbar-toggler {
            border: 2px solid var(--accent-color);
            padding: 0.5rem;
        }
        
        .navbar-toggler:focus {
            box-shadow: 0 0 0 0.25rem rgba(156, 119, 255, 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, 0.9%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        .logo-container {
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }
        
        .logo-container img {
            filter: drop-shadow(2px 2px 4px rgba(0,0,0,0.3));
            transition: transform 0.3s ease;
        }
        
        .logo-container:hover img {
            transform: rotate(5deg) scale(1.1);
        }
        
        @media (max-width: 991.98px) {
            .navbar-collapse {
                background: rgba(0,0,0,0.1);
                border-radius: 15px;
                margin-top: 1rem;
                padding: 1rem;
                backdrop-filter: blur(10px);
            }
            
            .navbar-nav .nav-link {
                margin: 0.25rem 0;
            }
        }

.about-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    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="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="hsl(250, 66%, 34%)" opacity="0.03"/><circle cx="75" cy="75" r="1" fill="hsl(250, 66%, 59%)" opacity="0.02"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

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

.about-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: hsl(250, 66%, 19%);
    margin-bottom: 20px;
    background: linear-gradient(135deg, hsl(250, 66%, 34%), hsl(250, 66%, 59%));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.about-subtitle {
    font-size: 1.3rem;
    color: hsl(250, 66%, 34%);
    font-weight: 300;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.story-block {
    display: flex;
    align-items: center;
    margin-bottom: 80px;
    gap: 60px;
}

.story-image {
    flex: 0 0 45%;
    position: relative;
}

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

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

.story-content {
    flex: 1;
    padding-left: 40px;
}

.story-content h3 {
    font-size: 2.2rem;
    color: hsl(250, 66%, 19%);
    margin-bottom: 25px;
    font-weight: 600;
}

.story-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.mission-block {
    display: flex;
    align-items: center;
    margin-bottom: 80px;
    gap: 60px;
    flex-direction: row-reverse;
}

.mission-image {
    flex: 0 0 45%;
    position: relative;
}

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

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

.mission-content {
    flex: 1;
    padding-right: 40px;
}

.mission-content h3 {
    font-size: 2.2rem;
    color: hsl(250, 66%, 19%);
    margin-bottom: 25px;
    font-weight: 600;
}

.mission-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.value-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.value-card:hover {
    border-color: hsl(250, 66%, 59%);
    transform: translateY(-5px);
}

.value-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, hsl(250, 66%, 34%), hsl(250, 66%, 59%));
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
}

.value-card h4 {
    font-size: 1.4rem;
    color: hsl(250, 66%, 19%);
    margin-bottom: 15px;
    font-weight: 600;
}

.value-card p {
    color: #666;
    line-height: 1.6;
    font-size: 1rem;
}

@media (max-width: 768px) {
    .about-title {
        font-size: 2.5rem;
    }
    
    .story-block,
    .mission-block {
        flex-direction: column;
        gap: 40px;
    }
    
    .story-content,
    .mission-content {
        padding: 0;
    }
    
    .story-image,
    .mission-image {
        flex: none;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

.advantages-section {
    background: linear-gradient(135deg, hsl(250, 66%, 19%) 0%, hsl(250, 66%, 34%) 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.advantages-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="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="1" fill="rgba(255,255,255,0.05)"/><circle cx="80" cy="40" r="0.5" fill="rgba(255,255,255,0.03)"/><circle cx="40" cy="80" r="1.5" fill="rgba(255,255,255,0.04)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
}

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

.section-subtitle {
    color: hsl(250, 66%, 80%);
    font-size: 1.3rem;
    text-align: center;
    margin-bottom: 80px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

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

.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(to bottom, hsl(250, 66%, 59%), hsl(250, 66%, 80%));
    transform: translateX(-50%);
    border-radius: 2px;
    box-shadow: 0 0 20px rgba(159, 122, 234, 0.5);
}

.advantage-item {
    position: relative;
    margin-bottom: 60px;
    display: flex;
    align-items: center;
}

.advantage-item:nth-child(even) {
    flex-direction: row-reverse;
}

.advantage-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 40px;
    width: 45%;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    transition: all 0.4s ease;
    border: 2px solid transparent;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

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

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

.advantage-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
    border-color: hsl(250, 66%, 59%);
}

.advantage-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, hsl(250, 66%, 59%), hsl(250, 66%, 34%));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    box-shadow: 0 10px 30px rgba(159, 122, 234, 0.4);
    transition: all 0.3s ease;
}

.advantage-card:hover .advantage-icon {
    transform: rotate(360deg) scale(1.1);
    box-shadow: 0 15px 40px rgba(159, 122, 234, 0.6);
}

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

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

.advantage-description {
    color: hsl(250, 66%, 25%);
    font-size: 1.1rem;
    line-height: 1.7;
    margin: 0;
}

.timeline-dot {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 20px;
    height: 20px;
    background: hsl(250, 66%, 59%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 0 8px rgba(255, 255, 255, 0.3), 0 0 20px rgba(159, 122, 234, 0.6);
    z-index: 2;
    transition: all 0.3s ease;
}

.advantage-item:hover .timeline-dot {
    transform: translate(-50%, -50%) scale(1.3);
    box-shadow: 0 0 0 12px rgba(255, 255, 255, 0.4), 0 0 30px rgba(159, 122, 234, 0.8);
}

@media (max-width: 768px) {
    .timeline-line {
        left: 30px;
    }
    
    .advantage-item {
        flex-direction: column !important;
        align-items: flex-start;
        padding-left: 70px;
    }
    
    .advantage-card {
        width: 100%;
    }
    
    .timeline-dot {
        left: 30px;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
}

.statistics-section {
    background: linear-gradient(135deg, hsl(250, 66%, 34%) 0%, hsl(250, 66%, 19%) 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

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

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

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

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.stat-circle {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    width: 220px;
    height: 220px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    position: relative;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.stat-circle:hover {
    transform: translateY(-10px) scale(1.05);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.stat-circle::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border-radius: 50%;
    background: linear-gradient(45deg, hsl(250, 66%, 59%), transparent, hsl(250, 66%, 59%));
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.stat-circle:hover::before {
    opacity: 1;
}

.stat-icon {
    font-size: 2.5rem;
    color: hsl(250, 66%, 59%);
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

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

.stat-number {
    font-size: 2.8rem;
    font-weight: 800;
    color: white;
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.stat-label {
    font-size: 1rem;
    color: hsl(250, 66%, 85%);
    text-align: center;
    font-weight: 500;
    line-height: 1.3;
    padding: 0 10px;
}

.stat-circle:hover .stat-label {
    color: white;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2.5rem;
    }
    
    .section-subtitle {
        font-size: 1.1rem;
        margin-bottom: 3rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 2rem;
    }
    
    .stat-circle {
        width: 200px;
        height: 200px;
    }
    
    .stat-number {
        font-size: 2.4rem;
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .stat-circle {
        width: 180px;
        height: 180px;
    }
    
    .stat-icon {
        font-size: 2rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
}

footer {
    background: linear-gradient(135deg, hsl(250, 66%, 19%) 0%, hsl(250, 66%, 34%) 100%);
    color: white;
    padding: 60px 0 20px;
    margin-top: 80px;
}

.footer-brand h3 {
    color: hsl(250, 66%, 59%);
    font-weight: 700;
    margin-bottom: 20px;
    font-size: 2rem;
}

.footer-description {
    font-size: 1.1rem;
    line-height: 1.7;
    opacity: 0.9;
    margin-bottom: 30px;
}

.footer-section h5 {
    color: hsl(250, 66%, 59%);
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.footer-section ul li {
    margin-bottom: 12px;
}

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

.footer-section ul li a:hover {
    color: hsl(250, 66%, 59%);
    transform: translateX(5px);
}

.contact-info p {
    margin-bottom: 15px;
    font-size: 1rem;
    opacity: 0.9;
}

.contact-info i {
    color: hsl(250, 66%, 59%);
    margin-right: 10px;
    width: 20px;
}

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

.footer-bottom p {
    margin: 0;
    opacity: 0.7;
    font-size: 0.95rem;
}

.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, hsl(250, 66%, 19%) 0%, hsl(250, 66%, 34%) 100%);
    color: white;
    padding: 25px 0;
    z-index: 9999;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.3);
    transform: translateY(100%);
    transition: transform 0.4s ease-in-out;
}

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

.cookie-notice.hide {
    transform: translateY(100%);
}

.cookie-text {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 0;
}

.cookie-buttons .btn {
    margin: 5px;
    padding: 10px 25px;
    border-radius: 25px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    border: none;
}

.btn-accept {
    background: hsl(250, 66%, 59%);
    color: white;
}

.btn-accept:hover {
    background: hsl(250, 66%, 49%);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.btn-learn {
    background: transparent;
    color: hsl(250, 66%, 59%);
    border: 2px solid hsl(250, 66%, 59%);
}

.btn-learn:hover {
    background: hsl(250, 66%, 59%);
    color: white;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .cookie-notice .row {
        text-align: center;
    }
    
    .cookie-buttons {
        margin-top: 20px;
    }
    
    .cookie-buttons .btn {
        display: block;
        width: 100%;
        margin: 10px 0;
    }
}

:root {
            --primary-color: hsl(250, 66%, 34%);
            --secondary-color: hsl(250, 66%, 19%);
            --accent-color: hsl(250, 66%, 59%);
        }
        
        .navbar {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            box-shadow: 0 4px 20px rgba(0,0,0,0.1);
            padding: 1rem 0;
        }
        
        .navbar-brand {
            font-weight: 700;
            font-size: 1.8rem;
            color: white !important;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
            transition: all 0.3s ease;
        }
        
        .navbar-brand:hover {
            transform: translateY(-2px);
            text-shadow: 3px 3px 6px rgba(0,0,0,0.4);
        }
        
        .navbar-nav .nav-link {
            color: rgba(255,255,255,0.9) !important;
            font-weight: 500;
            margin: 0 0.5rem;
            padding: 0.5rem 1rem !important;
            border-radius: 25px;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }
        
        .navbar-nav .nav-link::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
            transition: left 0.5s;
        }
        
        .navbar-nav .nav-link:hover::before {
            left: 100%;
        }
        
        .navbar-nav .nav-link:hover {
            color: white !important;
            background: var(--accent-color);
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(0,0,0,0.2);
        }
        
        .navbar-toggler {
            border: 2px solid var(--accent-color);
            padding: 0.5rem;
        }
        
        .navbar-toggler:focus {
            box-shadow: 0 0 0 0.25rem rgba(156, 119, 255, 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, 0.9%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        .logo-container {
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }
        
        .logo-container img {
            filter: drop-shadow(2px 2px 4px rgba(0,0,0,0.3));
            transition: transform 0.3s ease;
        }
        
        .logo-container:hover img {
            transform: rotate(5deg) scale(1.1);
        }
        
        @media (max-width: 991.98px) {
            .navbar-collapse {
                background: rgba(0,0,0,0.1);
                border-radius: 15px;
                margin-top: 1rem;
                padding: 1rem;
                backdrop-filter: blur(10px);
            }
            
            .navbar-nav .nav-link {
                margin: 0.25rem 0;
            }
        }

.privacy-policy {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    font-family: 'Georgia', serif;
    line-height: 1.8;
    color: #2c3e50;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.privacy-header {
    text-align: center;
    margin-bottom: 50px;
    padding: 30px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.privacy-header h1 {
    font-size: 2.5em;
    margin: 0 0 10px 0;
    font-weight: 300;
    letter-spacing: 2px;
}

.privacy-header p {
    font-size: 1.1em;
    opacity: 0.9;
    margin: 0;
}

.privacy-section {
    background: white;
    margin: 30px 0;
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    border-left: 5px solid #667eea;
    transition: transform 0.3s ease;
}

.privacy-section:hover {
    transform: translateY(-2px);
}

.privacy-section h2 {
    color: #667eea;
    font-size: 1.8em;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #e9ecef;
    font-weight: 400;
}

.privacy-section h3 {
    color: #495057;
    font-size: 1.3em;
    margin: 25px 0 15px 0;
    font-weight: 500;
}

.privacy-section p {
    margin-bottom: 15px;
    text-align: justify;
    font-size: 1.05em;
}

.privacy-section ul {
    padding-left: 25px;
    margin: 15px 0;
}

.privacy-section li {
    margin-bottom: 8px;
    font-size: 1.05em;
}

.highlight-box {
    background: linear-gradient(135deg, #667eea15, #764ba215);
    padding: 25px;
    border-radius: 10px;
    margin: 20px 0;
    border: 1px solid #667eea30;
}

.effective-date {
    text-align: center;
    font-style: italic;
    color: #6c757d;
    margin-bottom: 40px;
    font-size: 1.1em;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
}

footer {
    background: linear-gradient(135deg, hsl(250, 66%, 19%) 0%, hsl(250, 66%, 34%) 100%);
    color: white;
    padding: 60px 0 20px;
    margin-top: 80px;
}

.footer-brand h3 {
    color: hsl(250, 66%, 59%);
    font-weight: 700;
    margin-bottom: 20px;
    font-size: 2rem;
}

.footer-description {
    font-size: 1.1rem;
    line-height: 1.7;
    opacity: 0.9;
    margin-bottom: 30px;
}

.footer-section h5 {
    color: hsl(250, 66%, 59%);
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.footer-section ul li {
    margin-bottom: 12px;
}

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

.footer-section ul li a:hover {
    color: hsl(250, 66%, 59%);
    transform: translateX(5px);
}

.contact-info p {
    margin-bottom: 15px;
    font-size: 1rem;
    opacity: 0.9;
}

.contact-info i {
    color: hsl(250, 66%, 59%);
    margin-right: 10px;
    width: 20px;
}

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

.footer-bottom p {
    margin: 0;
    opacity: 0.7;
    font-size: 0.95rem;
}

.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, hsl(250, 66%, 19%) 0%, hsl(250, 66%, 34%) 100%);
    color: white;
    padding: 25px 0;
    z-index: 9999;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.3);
    transform: translateY(100%);
    transition: transform 0.4s ease-in-out;
}

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

.cookie-notice.hide {
    transform: translateY(100%);
}

.cookie-text {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 0;
}

.cookie-buttons .btn {
    margin: 5px;
    padding: 10px 25px;
    border-radius: 25px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    border: none;
}

.btn-accept {
    background: hsl(250, 66%, 59%);
    color: white;
}

.btn-accept:hover {
    background: hsl(250, 66%, 49%);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.btn-learn {
    background: transparent;
    color: hsl(250, 66%, 59%);
    border: 2px solid hsl(250, 66%, 59%);
}

.btn-learn:hover {
    background: hsl(250, 66%, 59%);
    color: white;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .cookie-notice .row {
        text-align: center;
    }
    
    .cookie-buttons {
        margin-top: 20px;
    }
    
    .cookie-buttons .btn {
        display: block;
        width: 100%;
        margin: 10px 0;
    }
}

:root {
            --primary-color: hsl(250, 66%, 34%);
            --secondary-color: hsl(250, 66%, 19%);
            --accent-color: hsl(250, 66%, 59%);
        }
        
        .navbar {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            box-shadow: 0 4px 20px rgba(0,0,0,0.1);
            padding: 1rem 0;
        }
        
        .navbar-brand {
            font-weight: 700;
            font-size: 1.8rem;
            color: white !important;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
            transition: all 0.3s ease;
        }
        
        .navbar-brand:hover {
            transform: translateY(-2px);
            text-shadow: 3px 3px 6px rgba(0,0,0,0.4);
        }
        
        .navbar-nav .nav-link {
            color: rgba(255,255,255,0.9) !important;
            font-weight: 500;
            margin: 0 0.5rem;
            padding: 0.5rem 1rem !important;
            border-radius: 25px;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }
        
        .navbar-nav .nav-link::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
            transition: left 0.5s;
        }
        
        .navbar-nav .nav-link:hover::before {
            left: 100%;
        }
        
        .navbar-nav .nav-link:hover {
            color: white !important;
            background: var(--accent-color);
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(0,0,0,0.2);
        }
        
        .navbar-toggler {
            border: 2px solid var(--accent-color);
            padding: 0.5rem;
        }
        
        .navbar-toggler:focus {
            box-shadow: 0 0 0 0.25rem rgba(156, 119, 255, 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, 0.9%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        .logo-container {
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }
        
        .logo-container img {
            filter: drop-shadow(2px 2px 4px rgba(0,0,0,0.3));
            transition: transform 0.3s ease;
        }
        
        .logo-container:hover img {
            transform: rotate(5deg) scale(1.1);
        }
        
        @media (max-width: 991.98px) {
            .navbar-collapse {
                background: rgba(0,0,0,0.1);
                border-radius: 15px;
                margin-top: 1rem;
                padding: 1rem;
                backdrop-filter: blur(10px);
            }
            
            .navbar-nav .nav-link {
                margin: 0.25rem 0;
            }
        }

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

.policy-header {
    text-align: center;
    margin-bottom: 50px;
    padding: 30px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.policy-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.policy-content {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    margin-bottom: 30px;
}

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

.section-title::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 60px;
    height: 3px;
    background: #764ba2;
}

.policy-text {
    font-size: 1.1rem;
    margin-bottom: 20px;
    text-align: justify;
    color: #555;
}

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

.cookie-card {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    padding: 25px;
    border-radius: 12px;
    color: white;
    box-shadow: 0 8px 25px rgba(240, 147, 251, 0.3);
    transition: transform 0.3s ease;
}

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

.cookie-card h4 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-weight: 600;
}

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

.consent-section {
    background: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%);
    padding: 30px;
    border-radius: 12px;
    margin: 25px 0;
    border-left: 5px solid #ff6b6b;
}

.gdpr-compliance {
    background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
    padding: 30px;
    border-radius: 12px;
    margin: 25px 0;
    border: 2px solid #48cae4;
}

.last-updated {
    text-align: center;
    margin-top: 40px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
    font-style: italic;
    color: #6c757d;
}

ul {
    padding-left: 25px;
}

li {
    margin-bottom: 10px;
    color: #555;
}

strong {
    color: #2c3e50;
    font-weight: 600;
}

footer {
    background: linear-gradient(135deg, hsl(250, 66%, 19%) 0%, hsl(250, 66%, 34%) 100%);
    color: white;
    padding: 60px 0 20px;
    margin-top: 80px;
}

.footer-brand h3 {
    color: hsl(250, 66%, 59%);
    font-weight: 700;
    margin-bottom: 20px;
    font-size: 2rem;
}

.footer-description {
    font-size: 1.1rem;
    line-height: 1.7;
    opacity: 0.9;
    margin-bottom: 30px;
}

.footer-section h5 {
    color: hsl(250, 66%, 59%);
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.footer-section ul li {
    margin-bottom: 12px;
}

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

.footer-section ul li a:hover {
    color: hsl(250, 66%, 59%);
    transform: translateX(5px);
}

.contact-info p {
    margin-bottom: 15px;
    font-size: 1rem;
    opacity: 0.9;
}

.contact-info i {
    color: hsl(250, 66%, 59%);
    margin-right: 10px;
    width: 20px;
}

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

.footer-bottom p {
    margin: 0;
    opacity: 0.7;
    font-size: 0.95rem;
}

.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, hsl(250, 66%, 19%) 0%, hsl(250, 66%, 34%) 100%);
    color: white;
    padding: 25px 0;
    z-index: 9999;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.3);
    transform: translateY(100%);
    transition: transform 0.4s ease-in-out;
}

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

.cookie-notice.hide {
    transform: translateY(100%);
}

.cookie-text {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 0;
}

.cookie-buttons .btn {
    margin: 5px;
    padding: 10px 25px;
    border-radius: 25px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    border: none;
}

.btn-accept {
    background: hsl(250, 66%, 59%);
    color: white;
}

.btn-accept:hover {
    background: hsl(250, 66%, 49%);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.btn-learn {
    background: transparent;
    color: hsl(250, 66%, 59%);
    border: 2px solid hsl(250, 66%, 59%);
}

.btn-learn:hover {
    background: hsl(250, 66%, 59%);
    color: white;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .cookie-notice .row {
        text-align: center;
    }
    
    .cookie-buttons {
        margin-top: 20px;
    }
    
    .cookie-buttons .btn {
        display: block;
        width: 100%;
        margin: 10px 0;
    }
}

:root {
            --primary-color: hsl(250, 66%, 34%);
            --secondary-color: hsl(250, 66%, 19%);
            --accent-color: hsl(250, 66%, 59%);
        }
        
        .navbar {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            box-shadow: 0 4px 20px rgba(0,0,0,0.1);
            padding: 1rem 0;
        }
        
        .navbar-brand {
            font-weight: 700;
            font-size: 1.8rem;
            color: white !important;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
            transition: all 0.3s ease;
        }
        
        .navbar-brand:hover {
            transform: translateY(-2px);
            text-shadow: 3px 3px 6px rgba(0,0,0,0.4);
        }
        
        .navbar-nav .nav-link {
            color: rgba(255,255,255,0.9) !important;
            font-weight: 500;
            margin: 0 0.5rem;
            padding: 0.5rem 1rem !important;
            border-radius: 25px;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }
        
        .navbar-nav .nav-link::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
            transition: left 0.5s;
        }
        
        .navbar-nav .nav-link:hover::before {
            left: 100%;
        }
        
        .navbar-nav .nav-link:hover {
            color: white !important;
            background: var(--accent-color);
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(0,0,0,0.2);
        }
        
        .navbar-toggler {
            border: 2px solid var(--accent-color);
            padding: 0.5rem;
        }
        
        .navbar-toggler:focus {
            box-shadow: 0 0 0 0.25rem rgba(156, 119, 255, 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, 0.9%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        .logo-container {
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }
        
        .logo-container img {
            filter: drop-shadow(2px 2px 4px rgba(0,0,0,0.3));
            transition: transform 0.3s ease;
        }
        
        .logo-container:hover img {
            transform: rotate(5deg) scale(1.1);
        }
        
        @media (max-width: 991.98px) {
            .navbar-collapse {
                background: rgba(0,0,0,0.1);
                border-radius: 15px;
                margin-top: 1rem;
                padding: 1rem;
                backdrop-filter: blur(10px);
            }
            
            .navbar-nav .nav-link {
                margin: 0.25rem 0;
            }
        }

.contact-section {
    background: linear-gradient(135deg, hsl(250, 66%, 34%) 0%, hsl(250, 66%, 19%) 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 70%, hsla(250, 66%, 59%, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

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

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

.contact-subtitle {
    color: hsl(250, 66%, 85%);
    font-size: 1.3rem;
    text-align: center;
    margin-bottom: 4rem;
    font-weight: 300;
    line-height: 1.6;
}

.info-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 3rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
    height: 100%;
}

.info-title {
    color: white;
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 2rem;
    position: relative;
}

.info-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background: hsl(250, 66%, 59%);
    border-radius: 2px;
}

.info-text {
    color: hsl(250, 66%, 90%);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.working-hours {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 2rem;
    border-left: 4px solid hsl(250, 66%, 59%);
}

.working-hours h4 {
    color: white;
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.working-hours p {
    color: hsl(250, 66%, 85%);
    margin: 0.5rem 0;
    font-size: 1rem;
}

.contact-form {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 25px 50px rgba(0,0,0,0.3);
    backdrop-filter: blur(10px);
}

.form-title {
    color: hsl(250, 66%, 34%);
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 2rem;
    text-align: center;
}

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

.form-label {
    color: hsl(250, 66%, 34%);
    font-weight: 600;
    margin-bottom: 0.8rem;
    display: block;
    font-size: 1rem;
}

.form-control {
    width: 100%;
    padding: 1rem 1.5rem;
    border: 2px solid hsl(250, 66%, 85%);
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
    color: hsl(250, 66%, 34%);
}

.form-control:focus {
    outline: none;
    border-color: hsl(250, 66%, 59%);
    box-shadow: 0 0 0 3px hsla(250, 66%, 59%, 0.2);
    transform: translateY(-2px);
}

.form-control::placeholder {
    color: hsl(250, 66%, 60%);
    opacity: 0.8;
}

.form-textarea {
    min-height: 120px;
    resize: vertical;
}

.submit-btn {
    background: linear-gradient(135deg, hsl(250, 66%, 59%) 0%, hsl(250, 66%, 45%) 100%);
    color: white;
    border: none;
    padding: 1.2rem 3rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 8px 25px hsla(250, 66%, 59%, 0.4);
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px hsla(250, 66%, 59%, 0.6);
    background: linear-gradient(135deg, hsl(250, 66%, 65%) 0%, hsl(250, 66%, 50%) 100%);
}

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

@media (max-width: 768px) {
    .contact-title {
        font-size: 2.5rem;
    }
    
    .contact-section {
        padding: 60px 0;
    }
    
    .info-card,
    .contact-form {
        padding: 2rem;
        margin-bottom: 2rem;
    }
    
    .contact-subtitle {
        font-size: 1.1rem;
        margin-bottom: 3rem;
    }
}

.about-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    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="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="hsl(250, 66%, 34%)" opacity="0.03"/><circle cx="75" cy="75" r="1" fill="hsl(250, 66%, 59%)" opacity="0.02"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

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

.about-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: hsl(250, 66%, 19%);
    margin-bottom: 20px;
    background: linear-gradient(135deg, hsl(250, 66%, 34%), hsl(250, 66%, 59%));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.about-subtitle {
    font-size: 1.3rem;
    color: hsl(250, 66%, 34%);
    font-weight: 300;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.story-block {
    display: flex;
    align-items: center;
    margin-bottom: 80px;
    gap: 60px;
}

.story-image {
    flex: 0 0 45%;
    position: relative;
}

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

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

.story-content {
    flex: 1;
    padding-left: 40px;
}

.story-content h3 {
    font-size: 2.2rem;
    color: hsl(250, 66%, 19%);
    margin-bottom: 25px;
    font-weight: 600;
}

.story-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.mission-block {
    display: flex;
    align-items: center;
    margin-bottom: 80px;
    gap: 60px;
    flex-direction: row-reverse;
}

.mission-image {
    flex: 0 0 45%;
    position: relative;
}

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

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

.mission-content {
    flex: 1;
    padding-right: 40px;
}

.mission-content h3 {
    font-size: 2.2rem;
    color: hsl(250, 66%, 19%);
    margin-bottom: 25px;
    font-weight: 600;
}

.mission-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.value-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.value-card:hover {
    border-color: hsl(250, 66%, 59%);
    transform: translateY(-5px);
}

.value-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, hsl(250, 66%, 34%), hsl(250, 66%, 59%));
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
}

.value-card h4 {
    font-size: 1.4rem;
    color: hsl(250, 66%, 19%);
    margin-bottom: 15px;
    font-weight: 600;
}

.value-card p {
    color: #666;
    line-height: 1.6;
    font-size: 1rem;
}

@media (max-width: 768px) {
    .about-title {
        font-size: 2.5rem;
    }
    
    .story-block,
    .mission-block {
        flex-direction: column;
        gap: 40px;
    }
    
    .story-content,
    .mission-content {
        padding: 0;
    }
    
    .story-image,
    .mission-image {
        flex: none;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

footer {
    background: linear-gradient(135deg, hsl(250, 66%, 19%) 0%, hsl(250, 66%, 34%) 100%);
    color: white;
    padding: 60px 0 20px;
    margin-top: 80px;
}

.footer-brand h3 {
    color: hsl(250, 66%, 59%);
    font-weight: 700;
    margin-bottom: 20px;
    font-size: 2rem;
}

.footer-description {
    font-size: 1.1rem;
    line-height: 1.7;
    opacity: 0.9;
    margin-bottom: 30px;
}

.footer-section h5 {
    color: hsl(250, 66%, 59%);
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.footer-section ul li {
    margin-bottom: 12px;
}

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

.footer-section ul li a:hover {
    color: hsl(250, 66%, 59%);
    transform: translateX(5px);
}

.contact-info p {
    margin-bottom: 15px;
    font-size: 1rem;
    opacity: 0.9;
}

.contact-info i {
    color: hsl(250, 66%, 59%);
    margin-right: 10px;
    width: 20px;
}

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

.footer-bottom p {
    margin: 0;
    opacity: 0.7;
    font-size: 0.95rem;
}

.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, hsl(250, 66%, 19%) 0%, hsl(250, 66%, 34%) 100%);
    color: white;
    padding: 25px 0;
    z-index: 9999;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.3);
    transform: translateY(100%);
    transition: transform 0.4s ease-in-out;
}

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

.cookie-notice.hide {
    transform: translateY(100%);
}

.cookie-text {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 0;
}

.cookie-buttons .btn {
    margin: 5px;
    padding: 10px 25px;
    border-radius: 25px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    border: none;
}

.btn-accept {
    background: hsl(250, 66%, 59%);
    color: white;
}

.btn-accept:hover {
    background: hsl(250, 66%, 49%);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.btn-learn {
    background: transparent;
    color: hsl(250, 66%, 59%);
    border: 2px solid hsl(250, 66%, 59%);
}

.btn-learn:hover {
    background: hsl(250, 66%, 59%);
    color: white;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .cookie-notice .row {
        text-align: center;
    }
    
    .cookie-buttons {
        margin-top: 20px;
    }
    
    .cookie-buttons .btn {
        display: block;
        width: 100%;
        margin: 10px 0;
    }
}

:root {
            --primary-color: hsl(250, 66%, 34%);
            --secondary-color: hsl(250, 66%, 19%);
            --accent-color: hsl(250, 66%, 59%);
        }
        
        .navbar {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            box-shadow: 0 4px 20px rgba(0,0,0,0.1);
            padding: 1rem 0;
        }
        
        .navbar-brand {
            font-weight: 700;
            font-size: 1.8rem;
            color: white !important;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
            transition: all 0.3s ease;
        }
        
        .navbar-brand:hover {
            transform: translateY(-2px);
            text-shadow: 3px 3px 6px rgba(0,0,0,0.4);
        }
        
        .navbar-nav .nav-link {
            color: rgba(255,255,255,0.9) !important;
            font-weight: 500;
            margin: 0 0.5rem;
            padding: 0.5rem 1rem !important;
            border-radius: 25px;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }
        
        .navbar-nav .nav-link::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
            transition: left 0.5s;
        }
        
        .navbar-nav .nav-link:hover::before {
            left: 100%;
        }
        
        .navbar-nav .nav-link:hover {
            color: white !important;
            background: var(--accent-color);
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(0,0,0,0.2);
        }
        
        .navbar-toggler {
            border: 2px solid var(--accent-color);
            padding: 0.5rem;
        }
        
        .navbar-toggler:focus {
            box-shadow: 0 0 0 0.25rem rgba(156, 119, 255, 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, 0.9%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        .logo-container {
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }
        
        .logo-container img {
            filter: drop-shadow(2px 2px 4px rgba(0,0,0,0.3));
            transition: transform 0.3s ease;
        }
        
        .logo-container:hover img {
            transform: rotate(5deg) scale(1.1);
        }
        
        @media (max-width: 991.98px) {
            .navbar-collapse {
                background: rgba(0,0,0,0.1);
                border-radius: 15px;
                margin-top: 1rem;
                padding: 1rem;
                backdrop-filter: blur(10px);
            }
            
            .navbar-nav .nav-link {
                margin: 0.25rem 0;
            }
        }

.services-section {
    background: linear-gradient(135deg, hsl(250, 66%, 19%) 0%, hsl(250, 66%, 34%) 100%);
    padding: 80px 0;
    color: white;
}

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

.services-header h2 {
    font-size: 3rem;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
}

.services-header p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto;
}

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

.service-card:hover {
    transform: translateY(-15px);
    background: rgba(255, 255, 255, 0.15);
    border-color: hsl(250, 66%, 59%);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.service-icon {
    font-size: 3.5rem;
    color: hsl(250, 66%, 59%);
    margin-bottom: 25px;
    display: block;
}

.service-card h4 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: white;
}

.service-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 25px;
}

.service-price {
    font-size: 1.4rem;
    font-weight: 700;
    color: hsl(250, 66%, 59%);
    margin-bottom: 15px;
}

.service-conditions {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    font-style: italic;
}

@media (max-width: 768px) {
    .services-header h2 {
        font-size: 2.2rem;
    }
    
    .service-card {
        margin-bottom: 30px;
    }
}

.newsletter-section {
    background: linear-gradient(135deg, hsl(250, 66%, 34%) 0%, hsl(250, 66%, 19%) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

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

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

.newsletter-container {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

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

.newsletter-subtitle {
    font-size: 1.3rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 3rem;
    font-weight: 300;
    line-height: 1.6;
}

.newsletter-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 8px 32px rgba(0,0,0,0.3);
}

.form-group {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
    flex-wrap: wrap;
    justify-content: center;
}

.email-input {
    flex: 1;
    min-width: 300px;
    padding: 18px 25px;
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 50px;
    background: rgba(255,255,255,0.15);
    color: white;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.email-input::placeholder {
    color: rgba(255,255,255,0.7);
}

.email-input:focus {
    outline: none;
    border-color: hsl(250, 66%, 59%);
    background: rgba(255,255,255,0.25);
    box-shadow: 0 0 20px rgba(255,255,255,0.2);
    transform: translateY(-2px);
}

.subscribe-btn {
    padding: 18px 40px;
    background: linear-gradient(45deg, hsl(250, 66%, 59%), hsl(250, 66%, 49%));
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    min-width: 160px;
}

.subscribe-btn:hover {
    background: linear-gradient(45deg, hsl(250, 66%, 69%), hsl(250, 66%, 59%));
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.4);
}

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

.benefits-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 30px;
    text-align: left;
}

.benefit-item {
    display: flex;
    align-items: center;
    color: rgba(255,255,255,0.9);
    font-size: 1rem;
    gap: 12px;
}

.benefit-icon {
    width: 20px;
    height: 20px;
    background: hsl(250, 66%, 59%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 12px;
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .newsletter-section {
        padding: 60px 20px;
    }
    
    .newsletter-title {
        font-size: 2.2rem;
    }
    
    .newsletter-subtitle {
        font-size: 1.1rem;
    }
    
    .newsletter-form {
        padding: 30px 20px;
    }
    
    .form-group {
        flex-direction: column;
        align-items: stretch;
    }
    
    .email-input {
        min-width: auto;
        width: 100%;
    }
    
    .subscribe-btn {
        width: 100%;
    }
    
    .benefits-list {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

.testimonials-section {
    background: linear-gradient(135deg, hsl(250, 66%, 19%) 0%, hsl(250, 66%, 34%) 100%);
    padding: 80px 0;
    overflow: hidden;
}

.testimonials-container {
    height: 600px;
    overflow: hidden;
    position: relative;
}

.testimonials-scroll {
    display: flex;
    flex-direction: column;
    animation: scrollTestimonials 45s linear infinite;
    gap: 30px;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 40px;
    margin: 0 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    min-height: 200px;
    flex-shrink: 0;
    border-left: 5px solid hsl(250, 66%, 59%);
    transition: transform 0.3s ease;
}

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

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: hsl(250, 66%, 19%);
    font-style: italic;
    margin-bottom: 25px;
    position: relative;
}

.testimonial-text::before {
    content: '"';
    font-size: 4rem;
    color: hsl(250, 66%, 59%);
    position: absolute;
    top: -20px;
    left: -15px;
    font-family: serif;
}

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

.author-name {
    font-weight: 600;
    color: hsl(250, 66%, 34%);
    font-size: 1.1rem;
}

.author-location {
    color: hsl(250, 66%, 59%);
    font-size: 0.95rem;
}

.section-title {
    text-align: center;
    color: white;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.section-title p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

@keyframes scrollTestimonials {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-50%);
    }
}

.testimonials-scroll::after {
    content: '';
    height: 100%;
}

@media (max-width: 768px) {
    .testimonial-card {
        margin: 0 10px;
        padding: 30px 25px;
    }
    
    .section-title h2 {
        font-size: 2.2rem;
    }
    
    .testimonials-container {
        height: 500px;
    }
}

footer {
    background: linear-gradient(135deg, hsl(250, 66%, 19%) 0%, hsl(250, 66%, 34%) 100%);
    color: white;
    padding: 60px 0 20px;
    margin-top: 80px;
}

.footer-brand h3 {
    color: hsl(250, 66%, 59%);
    font-weight: 700;
    margin-bottom: 20px;
    font-size: 2rem;
}

.footer-description {
    font-size: 1.1rem;
    line-height: 1.7;
    opacity: 0.9;
    margin-bottom: 30px;
}

.footer-section h5 {
    color: hsl(250, 66%, 59%);
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.footer-section ul li {
    margin-bottom: 12px;
}

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

.footer-section ul li a:hover {
    color: hsl(250, 66%, 59%);
    transform: translateX(5px);
}

.contact-info p {
    margin-bottom: 15px;
    font-size: 1rem;
    opacity: 0.9;
}

.contact-info i {
    color: hsl(250, 66%, 59%);
    margin-right: 10px;
    width: 20px;
}

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

.footer-bottom p {
    margin: 0;
    opacity: 0.7;
    font-size: 0.95rem;
}

.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, hsl(250, 66%, 19%) 0%, hsl(250, 66%, 34%) 100%);
    color: white;
    padding: 25px 0;
    z-index: 9999;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.3);
    transform: translateY(100%);
    transition: transform 0.4s ease-in-out;
}

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

.cookie-notice.hide {
    transform: translateY(100%);
}

.cookie-text {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 0;
}

.cookie-buttons .btn {
    margin: 5px;
    padding: 10px 25px;
    border-radius: 25px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    border: none;
}

.btn-accept {
    background: hsl(250, 66%, 59%);
    color: white;
}

.btn-accept:hover {
    background: hsl(250, 66%, 49%);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.btn-learn {
    background: transparent;
    color: hsl(250, 66%, 59%);
    border: 2px solid hsl(250, 66%, 59%);
}

.btn-learn:hover {
    background: hsl(250, 66%, 59%);
    color: white;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .cookie-notice .row {
        text-align: center;
    }
    
    .cookie-buttons {
        margin-top: 20px;
    }
    
    .cookie-buttons .btn {
        display: block;
        width: 100%;
        margin: 10px 0;
    }
}

:root {
            --primary-color: hsl(250, 66%, 34%);
            --secondary-color: hsl(250, 66%, 19%);
            --accent-color: hsl(250, 66%, 59%);
        }
        
        .navbar {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            box-shadow: 0 4px 20px rgba(0,0,0,0.1);
            padding: 1rem 0;
        }
        
        .navbar-brand {
            font-weight: 700;
            font-size: 1.8rem;
            color: white !important;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
            transition: all 0.3s ease;
        }
        
        .navbar-brand:hover {
            transform: translateY(-2px);
            text-shadow: 3px 3px 6px rgba(0,0,0,0.4);
        }
        
        .navbar-nav .nav-link {
            color: rgba(255,255,255,0.9) !important;
            font-weight: 500;
            margin: 0 0.5rem;
            padding: 0.5rem 1rem !important;
            border-radius: 25px;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }
        
        .navbar-nav .nav-link::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
            transition: left 0.5s;
        }
        
        .navbar-nav .nav-link:hover::before {
            left: 100%;
        }
        
        .navbar-nav .nav-link:hover {
            color: white !important;
            background: var(--accent-color);
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(0,0,0,0.2);
        }
        
        .navbar-toggler {
            border: 2px solid var(--accent-color);
            padding: 0.5rem;
        }
        
        .navbar-toggler:focus {
            box-shadow: 0 0 0 0.25rem rgba(156, 119, 255, 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, 0.9%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        .logo-container {
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }
        
        .logo-container img {
            filter: drop-shadow(2px 2px 4px rgba(0,0,0,0.3));
            transition: transform 0.3s ease;
        }
        
        .logo-container:hover img {
            transform: rotate(5deg) scale(1.1);
        }
        
        @media (max-width: 991.98px) {
            .navbar-collapse {
                background: rgba(0,0,0,0.1);
                border-radius: 15px;
                margin-top: 1rem;
                padding: 1rem;
                backdrop-filter: blur(10px);
            }
            
            .navbar-nav .nav-link {
                margin: 0.25rem 0;
            }
        }

.terms-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    font-family: 'Georgia', serif;
    line-height: 1.8;
    color: #2c3e50;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.terms-header {
    text-align: center;
    margin-bottom: 50px;
    padding: 30px;
    background: linear-gradient(135deg, #34495e 0%, #2c3e50 100%);
    color: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.terms-header h1 {
    font-size: 2.5em;
    margin: 0 0 10px 0;
    font-weight: 300;
    letter-spacing: 2px;
}

.terms-header p {
    font-size: 1.1em;
    opacity: 0.9;
    margin: 0;
}

.terms-section {
    background: white;
    margin: 30px 0;
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    border-left: 5px solid #3498db;
    transition: transform 0.3s ease;
}

.terms-section:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.terms-section h2 {
    color: #2c3e50;
    font-size: 1.6em;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #ecf0f1;
    font-weight: 400;
}

.terms-section p {
    margin-bottom: 15px;
    text-align: justify;
    font-size: 1.05em;
}

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

.terms-section li {
    margin-bottom: 8px;
    font-size: 1.05em;
}

.highlight-box {
    background: linear-gradient(135deg, #74b9ff 0%, #0984e3 100%);
    color: white;
    padding: 25px;
    border-radius: 10px;
    margin: 25px 0;
    text-align: center;
    font-weight: 500;
}

.effective-date {
    text-align: center;
    font-style: italic;
    color: #7f8c8d;
    margin-top: 40px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
    border: 1px solid #dee2e6;
}

footer {
    background: linear-gradient(135deg, hsl(250, 66%, 19%) 0%, hsl(250, 66%, 34%) 100%);
    color: white;
    padding: 60px 0 20px;
    margin-top: 80px;
}

.footer-brand h3 {
    color: hsl(250, 66%, 59%);
    font-weight: 700;
    margin-bottom: 20px;
    font-size: 2rem;
}

.footer-description {
    font-size: 1.1rem;
    line-height: 1.7;
    opacity: 0.9;
    margin-bottom: 30px;
}

.footer-section h5 {
    color: hsl(250, 66%, 59%);
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.footer-section ul li {
    margin-bottom: 12px;
}

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

.footer-section ul li a:hover {
    color: hsl(250, 66%, 59%);
    transform: translateX(5px);
}

.contact-info p {
    margin-bottom: 15px;
    font-size: 1rem;
    opacity: 0.9;
}

.contact-info i {
    color: hsl(250, 66%, 59%);
    margin-right: 10px;
    width: 20px;
}

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

.footer-bottom p {
    margin: 0;
    opacity: 0.7;
    font-size: 0.95rem;
}

.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, hsl(250, 66%, 19%) 0%, hsl(250, 66%, 34%) 100%);
    color: white;
    padding: 25px 0;
    z-index: 9999;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.3);
    transform: translateY(100%);
    transition: transform 0.4s ease-in-out;
}

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

.cookie-notice.hide {
    transform: translateY(100%);
}

.cookie-text {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 0;
}

.cookie-buttons .btn {
    margin: 5px;
    padding: 10px 25px;
    border-radius: 25px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    border: none;
}

.btn-accept {
    background: hsl(250, 66%, 59%);
    color: white;
}

.btn-accept:hover {
    background: hsl(250, 66%, 49%);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.btn-learn {
    background: transparent;
    color: hsl(250, 66%, 59%);
    border: 2px solid hsl(250, 66%, 59%);
}

.btn-learn:hover {
    background: hsl(250, 66%, 59%);
    color: white;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .cookie-notice .row {
        text-align: center;
    }
    
    .cookie-buttons {
        margin-top: 20px;
    }
    
    .cookie-buttons .btn {
        display: block;
        width: 100%;
        margin: 10px 0;
    }
}

:root {
            --primary-color: hsl(250, 66%, 34%);
            --secondary-color: hsl(250, 66%, 19%);
            --accent-color: hsl(250, 66%, 59%);
        }
        
        .navbar {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            box-shadow: 0 4px 20px rgba(0,0,0,0.1);
            padding: 1rem 0;
        }
        
        .navbar-brand {
            font-weight: 700;
            font-size: 1.8rem;
            color: white !important;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
            transition: all 0.3s ease;
        }
        
        .navbar-brand:hover {
            transform: translateY(-2px);
            text-shadow: 3px 3px 6px rgba(0,0,0,0.4);
        }
        
        .navbar-nav .nav-link {
            color: rgba(255,255,255,0.9) !important;
            font-weight: 500;
            margin: 0 0.5rem;
            padding: 0.5rem 1rem !important;
            border-radius: 25px;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }
        
        .navbar-nav .nav-link::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
            transition: left 0.5s;
        }
        
        .navbar-nav .nav-link:hover::before {
            left: 100%;
        }
        
        .navbar-nav .nav-link:hover {
            color: white !important;
            background: var(--accent-color);
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(0,0,0,0.2);
        }
        
        .navbar-toggler {
            border: 2px solid var(--accent-color);
            padding: 0.5rem;
        }
        
        .navbar-toggler:focus {
            box-shadow: 0 0 0 0.25rem rgba(156, 119, 255, 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, 0.9%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        .logo-container {
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }
        
        .logo-container img {
            filter: drop-shadow(2px 2px 4px rgba(0,0,0,0.3));
            transition: transform 0.3s ease;
        }
        
        .logo-container:hover img {
            transform: rotate(5deg) scale(1.1);
        }
        
        @media (max-width: 991.98px) {
            .navbar-collapse {
                background: rgba(0,0,0,0.1);
                border-radius: 15px;
                margin-top: 1rem;
                padding: 1rem;
                backdrop-filter: blur(10px);
            }
            
            .navbar-nav .nav-link {
                margin: 0.25rem 0;
            }
        }

.faq-section {
    background: linear-gradient(135deg, hsl(250, 66%, 34%) 0%, hsl(250, 66%, 19%) 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"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><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)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>') repeat;
    opacity: 0.3;
}

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

.faq-tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 50px;
    flex-wrap: wrap;
    gap: 10px;
}

.faq-tab {
    background: rgba(255,255,255,0.1);
    border: 2px solid hsl(250, 66%, 59%);
    color: white;
    padding: 12px 25px;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    backdrop-filter: blur(10px);
}

.faq-tab:hover,
.faq-tab.active {
    background: hsl(250, 66%, 59%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

.faq-content {
    display: none;
}

.faq-content.active {
    display: block;
}

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

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

.faq-question {
    padding: 25px 30px;
    background: linear-gradient(135deg, hsl(250, 66%, 59%) 0%, hsl(250, 66%, 45%) 100%);
    color: white;
    cursor: pointer;
    font-weight: 600;
    font-size: 1.1rem;
    position: relative;
    transition: all 0.3s ease;
}

.faq-question::after {
    content: '+';
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    font-weight: bold;
    transition: transform 0.3s ease;
}

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

.faq-answer {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
    color: hsl(250, 66%, 19%);
    line-height: 1.7;
}

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

.faq-answer p {
    margin-bottom: 15px;
}

.faq-answer strong {
    color: hsl(250, 66%, 34%);
}

@media (max-width: 768px) {
    .faq-title {
        font-size: 2.5rem;
    }
    
    .faq-subtitle {
        font-size: 1.1rem;
    }
    
    .faq-question,
    .faq-answer {
        padding: 20px;
    }
    
    .faq-tab {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}

.about-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    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="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="hsl(250, 66%, 34%)" opacity="0.03"/><circle cx="75" cy="75" r="1" fill="hsl(250, 66%, 59%)" opacity="0.02"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

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

.about-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: hsl(250, 66%, 19%);
    margin-bottom: 20px;
    background: linear-gradient(135deg, hsl(250, 66%, 34%), hsl(250, 66%, 59%));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.about-subtitle {
    font-size: 1.3rem;
    color: hsl(250, 66%, 34%);
    font-weight: 300;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.story-block {
    display: flex;
    align-items: center;
    margin-bottom: 80px;
    gap: 60px;
}

.story-image {
    flex: 0 0 45%;
    position: relative;
}

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

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

.story-content {
    flex: 1;
    padding-left: 40px;
}

.story-content h3 {
    font-size: 2.2rem;
    color: hsl(250, 66%, 19%);
    margin-bottom: 25px;
    font-weight: 600;
}

.story-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.mission-block {
    display: flex;
    align-items: center;
    margin-bottom: 80px;
    gap: 60px;
    flex-direction: row-reverse;
}

.mission-image {
    flex: 0 0 45%;
    position: relative;
}

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

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

.mission-content {
    flex: 1;
    padding-right: 40px;
}

.mission-content h3 {
    font-size: 2.2rem;
    color: hsl(250, 66%, 19%);
    margin-bottom: 25px;
    font-weight: 600;
}

.mission-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.value-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.value-card:hover {
    border-color: hsl(250, 66%, 59%);
    transform: translateY(-5px);
}

.value-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, hsl(250, 66%, 34%), hsl(250, 66%, 59%));
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
}

.value-card h4 {
    font-size: 1.4rem;
    color: hsl(250, 66%, 19%);
    margin-bottom: 15px;
    font-weight: 600;
}

.value-card p {
    color: #666;
    line-height: 1.6;
    font-size: 1rem;
}

@media (max-width: 768px) {
    .about-title {
        font-size: 2.5rem;
    }
    
    .story-block,
    .mission-block {
        flex-direction: column;
        gap: 40px;
    }
    
    .story-content,
    .mission-content {
        padding: 0;
    }
    
    .story-image,
    .mission-image {
        flex: none;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

.newsletter-section {
    background: linear-gradient(135deg, hsl(250, 66%, 34%) 0%, hsl(250, 66%, 19%) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

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

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

.newsletter-container {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

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

.newsletter-subtitle {
    font-size: 1.3rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 3rem;
    font-weight: 300;
    line-height: 1.6;
}

.newsletter-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 8px 32px rgba(0,0,0,0.3);
}

.form-group {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
    flex-wrap: wrap;
    justify-content: center;
}

.email-input {
    flex: 1;
    min-width: 300px;
    padding: 18px 25px;
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 50px;
    background: rgba(255,255,255,0.15);
    color: white;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.email-input::placeholder {
    color: rgba(255,255,255,0.7);
}

.email-input:focus {
    outline: none;
    border-color: hsl(250, 66%, 59%);
    background: rgba(255,255,255,0.25);
    box-shadow: 0 0 20px rgba(255,255,255,0.2);
    transform: translateY(-2px);
}

.subscribe-btn {
    padding: 18px 40px;
    background: linear-gradient(45deg, hsl(250, 66%, 59%), hsl(250, 66%, 49%));
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    min-width: 160px;
}

.subscribe-btn:hover {
    background: linear-gradient(45deg, hsl(250, 66%, 69%), hsl(250, 66%, 59%));
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.4);
}

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

.benefits-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 30px;
    text-align: left;
}

.benefit-item {
    display: flex;
    align-items: center;
    color: rgba(255,255,255,0.9);
    font-size: 1rem;
    gap: 12px;
}

.benefit-icon {
    width: 20px;
    height: 20px;
    background: hsl(250, 66%, 59%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 12px;
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .newsletter-section {
        padding: 60px 20px;
    }
    
    .newsletter-title {
        font-size: 2.2rem;
    }
    
    .newsletter-subtitle {
        font-size: 1.1rem;
    }
    
    .newsletter-form {
        padding: 30px 20px;
    }
    
    .form-group {
        flex-direction: column;
        align-items: stretch;
    }
    
    .email-input {
        min-width: auto;
        width: 100%;
    }
    
    .subscribe-btn {
        width: 100%;
    }
    
    .benefits-list {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

footer {
    background: linear-gradient(135deg, hsl(250, 66%, 19%) 0%, hsl(250, 66%, 34%) 100%);
    color: white;
    padding: 60px 0 20px;
    margin-top: 80px;
}

.footer-brand h3 {
    color: hsl(250, 66%, 59%);
    font-weight: 700;
    margin-bottom: 20px;
    font-size: 2rem;
}

.footer-description {
    font-size: 1.1rem;
    line-height: 1.7;
    opacity: 0.9;
    margin-bottom: 30px;
}

.footer-section h5 {
    color: hsl(250, 66%, 59%);
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.footer-section ul li {
    margin-bottom: 12px;
}

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

.footer-section ul li a:hover {
    color: hsl(250, 66%, 59%);
    transform: translateX(5px);
}

.contact-info p {
    margin-bottom: 15px;
    font-size: 1rem;
    opacity: 0.9;
}

.contact-info i {
    color: hsl(250, 66%, 59%);
    margin-right: 10px;
    width: 20px;
}

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

.footer-bottom p {
    margin: 0;
    opacity: 0.7;
    font-size: 0.95rem;
}

.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, hsl(250, 66%, 19%) 0%, hsl(250, 66%, 34%) 100%);
    color: white;
    padding: 25px 0;
    z-index: 9999;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.3);
    transform: translateY(100%);
    transition: transform 0.4s ease-in-out;
}

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

.cookie-notice.hide {
    transform: translateY(100%);
}

.cookie-text {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 0;
}

.cookie-buttons .btn {
    margin: 5px;
    padding: 10px 25px;
    border-radius: 25px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    border: none;
}

.btn-accept {
    background: hsl(250, 66%, 59%);
    color: white;
}

.btn-accept:hover {
    background: hsl(250, 66%, 49%);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.btn-learn {
    background: transparent;
    color: hsl(250, 66%, 59%);
    border: 2px solid hsl(250, 66%, 59%);
}

.btn-learn:hover {
    background: hsl(250, 66%, 59%);
    color: white;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .cookie-notice .row {
        text-align: center;
    }
    
    .cookie-buttons {
        margin-top: 20px;
    }
    
    .cookie-buttons .btn {
        display: block;
        width: 100%;
        margin: 10px 0;
    }
}

:root {
            --primary-color: hsl(250, 66%, 34%);
            --secondary-color: hsl(250, 66%, 19%);
            --accent-color: hsl(250, 66%, 59%);
        }
        
        .navbar {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            box-shadow: 0 4px 20px rgba(0,0,0,0.1);
            padding: 1rem 0;
        }
        
        .navbar-brand {
            font-weight: 700;
            font-size: 1.8rem;
            color: white !important;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
            transition: all 0.3s ease;
        }
        
        .navbar-brand:hover {
            transform: translateY(-2px);
            text-shadow: 3px 3px 6px rgba(0,0,0,0.4);
        }
        
        .navbar-nav .nav-link {
            color: rgba(255,255,255,0.9) !important;
            font-weight: 500;
            margin: 0 0.5rem;
            padding: 0.5rem 1rem !important;
            border-radius: 25px;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }
        
        .navbar-nav .nav-link::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
            transition: left 0.5s;
        }
        
        .navbar-nav .nav-link:hover::before {
            left: 100%;
        }
        
        .navbar-nav .nav-link:hover {
            color: white !important;
            background: var(--accent-color);
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(0,0,0,0.2);
        }
        
        .navbar-toggler {
            border: 2px solid var(--accent-color);
            padding: 0.5rem;
        }
        
        .navbar-toggler:focus {
            box-shadow: 0 0 0 0.25rem rgba(156, 119, 255, 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, 0.9%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        .logo-container {
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }
        
        .logo-container img {
            filter: drop-shadow(2px 2px 4px rgba(0,0,0,0.3));
            transition: transform 0.3s ease;
        }
        
        .logo-container:hover img {
            transform: rotate(5deg) scale(1.1);
        }
        
        @media (max-width: 991.98px) {
            .navbar-collapse {
                background: rgba(0,0,0,0.1);
                border-radius: 15px;
                margin-top: 1rem;
                padding: 1rem;
                backdrop-filter: blur(10px);
            }
            
            .navbar-nav .nav-link {
                margin: 0.25rem 0;
            }
        }

.hero-section {
    background: linear-gradient(135deg, hsl(250, 66%, 34%) 0%, hsl(250, 66%, 19%) 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 70%, hsla(250, 66%, 59%, 0.3) 0%, transparent 50%);
    pointer-events: none;
}

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

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

.hero-subtitle {
    font-size: 1.8rem;
    color: hsl(250, 66%, 59%);
    font-weight: 600;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
}

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

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

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

.hero-features li i {
    color: hsl(250, 66%, 59%);
    margin-right: 1rem;
    font-size: 1.3rem;
}

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

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    transform: perspective(1000px) rotateY(-5deg);
    transition: transform 0.3s ease;
}

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

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

.btn-primary-custom:hover {
    background: hsl(250, 66%, 49%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
    color: white;
    text-decoration: none;
}

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

.btn-secondary-custom:hover {
    background: hsl(250, 66%, 59%);
    color: white;
    text-decoration: none;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.4rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .hero-image img {
        transform: none;
        margin-top: 2rem;
    }
}

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 1;
}

.floating-elements::before,
.floating-elements::after {
    content: '';
    position: absolute;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: hsla(250, 66%, 59%, 0.1);
    animation: float 6s ease-in-out infinite;
}

.floating-elements::before {
    top: 20%;
    right: 10%;
    animation-delay: -2s;
}

.floating-elements::after {
    bottom: 20%;
    left: 10%;
    animation-delay: -4s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.faq-section {
    background: linear-gradient(135deg, hsl(250, 66%, 34%) 0%, hsl(250, 66%, 19%) 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"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><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)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>') repeat;
    opacity: 0.3;
}

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

.faq-tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 50px;
    flex-wrap: wrap;
    gap: 10px;
}

.faq-tab {
    background: rgba(255,255,255,0.1);
    border: 2px solid hsl(250, 66%, 59%);
    color: white;
    padding: 12px 25px;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    backdrop-filter: blur(10px);
}

.faq-tab:hover,
.faq-tab.active {
    background: hsl(250, 66%, 59%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

.faq-content {
    display: none;
}

.faq-content.active {
    display: block;
}

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

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

.faq-question {
    padding: 25px 30px;
    background: linear-gradient(135deg, hsl(250, 66%, 59%) 0%, hsl(250, 66%, 45%) 100%);
    color: white;
    cursor: pointer;
    font-weight: 600;
    font-size: 1.1rem;
    position: relative;
    transition: all 0.3s ease;
}

.faq-question::after {
    content: '+';
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    font-weight: bold;
    transition: transform 0.3s ease;
}

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

.faq-answer {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
    color: hsl(250, 66%, 19%);
    line-height: 1.7;
}

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

.faq-answer p {
    margin-bottom: 15px;
}

.faq-answer strong {
    color: hsl(250, 66%, 34%);
}

@media (max-width: 768px) {
    .faq-title {
        font-size: 2.5rem;
    }
    
    .faq-subtitle {
        font-size: 1.1rem;
    }
    
    .faq-question,
    .faq-answer {
        padding: 20px;
    }
    
    .faq-tab {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}

.about-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    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="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="hsl(250, 66%, 34%)" opacity="0.03"/><circle cx="75" cy="75" r="1" fill="hsl(250, 66%, 59%)" opacity="0.02"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

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

.about-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: hsl(250, 66%, 19%);
    margin-bottom: 20px;
    background: linear-gradient(135deg, hsl(250, 66%, 34%), hsl(250, 66%, 59%));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.about-subtitle {
    font-size: 1.3rem;
    color: hsl(250, 66%, 34%);
    font-weight: 300;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.story-block {
    display: flex;
    align-items: center;
    margin-bottom: 80px;
    gap: 60px;
}

.story-image {
    flex: 0 0 45%;
    position: relative;
}

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

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

.story-content {
    flex: 1;
    padding-left: 40px;
}

.story-content h3 {
    font-size: 2.2rem;
    color: hsl(250, 66%, 19%);
    margin-bottom: 25px;
    font-weight: 600;
}

.story-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.mission-block {
    display: flex;
    align-items: center;
    margin-bottom: 80px;
    gap: 60px;
    flex-direction: row-reverse;
}

.mission-image {
    flex: 0 0 45%;
    position: relative;
}

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

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

.mission-content {
    flex: 1;
    padding-right: 40px;
}

.mission-content h3 {
    font-size: 2.2rem;
    color: hsl(250, 66%, 19%);
    margin-bottom: 25px;
    font-weight: 600;
}

.mission-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.value-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.value-card:hover {
    border-color: hsl(250, 66%, 59%);
    transform: translateY(-5px);
}

.value-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, hsl(250, 66%, 34%), hsl(250, 66%, 59%));
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
}

.value-card h4 {
    font-size: 1.4rem;
    color: hsl(250, 66%, 19%);
    margin-bottom: 15px;
    font-weight: 600;
}

.value-card p {
    color: #666;
    line-height: 1.6;
    font-size: 1rem;
}

@media (max-width: 768px) {
    .about-title {
        font-size: 2.5rem;
    }
    
    .story-block,
    .mission-block {
        flex-direction: column;
        gap: 40px;
    }
    
    .story-content,
    .mission-content {
        padding: 0;
    }
    
    .story-image,
    .mission-image {
        flex: none;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

.testimonials-section {
    background: linear-gradient(135deg, hsl(250, 66%, 19%) 0%, hsl(250, 66%, 34%) 100%);
    padding: 80px 0;
    overflow: hidden;
}

.testimonials-container {
    height: 600px;
    overflow: hidden;
    position: relative;
}

.testimonials-scroll {
    display: flex;
    flex-direction: column;
    animation: scrollTestimonials 45s linear infinite;
    gap: 30px;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 40px;
    margin: 0 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    min-height: 200px;
    flex-shrink: 0;
    border-left: 5px solid hsl(250, 66%, 59%);
    transition: transform 0.3s ease;
}

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

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: hsl(250, 66%, 19%);
    font-style: italic;
    margin-bottom: 25px;
    position: relative;
}

.testimonial-text::before {
    content: '"';
    font-size: 4rem;
    color: hsl(250, 66%, 59%);
    position: absolute;
    top: -20px;
    left: -15px;
    font-family: serif;
}

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

.author-name {
    font-weight: 600;
    color: hsl(250, 66%, 34%);
    font-size: 1.1rem;
}

.author-location {
    color: hsl(250, 66%, 59%);
    font-size: 0.95rem;
}

.section-title {
    text-align: center;
    color: white;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.section-title p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

@keyframes scrollTestimonials {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-50%);
    }
}

.testimonials-scroll::after {
    content: '';
    height: 100%;
}

@media (max-width: 768px) {
    .testimonial-card {
        margin: 0 10px;
        padding: 30px 25px;
    }
    
    .section-title h2 {
        font-size: 2.2rem;
    }
    
    .testimonials-container {
        height: 500px;
    }
}

.advantages-section {
    background: linear-gradient(135deg, hsl(250, 66%, 19%) 0%, hsl(250, 66%, 34%) 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.advantages-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="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="1" fill="rgba(255,255,255,0.05)"/><circle cx="80" cy="40" r="0.5" fill="rgba(255,255,255,0.03)"/><circle cx="40" cy="80" r="1.5" fill="rgba(255,255,255,0.04)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
}

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

.section-subtitle {
    color: hsl(250, 66%, 80%);
    font-size: 1.3rem;
    text-align: center;
    margin-bottom: 80px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

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

.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(to bottom, hsl(250, 66%, 59%), hsl(250, 66%, 80%));
    transform: translateX(-50%);
    border-radius: 2px;
    box-shadow: 0 0 20px rgba(159, 122, 234, 0.5);
}

.advantage-item {
    position: relative;
    margin-bottom: 60px;
    display: flex;
    align-items: center;
}

.advantage-item:nth-child(even) {
    flex-direction: row-reverse;
}

.advantage-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 40px;
    width: 45%;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    transition: all 0.4s ease;
    border: 2px solid transparent;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

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

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

.advantage-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
    border-color: hsl(250, 66%, 59%);
}

.advantage-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, hsl(250, 66%, 59%), hsl(250, 66%, 34%));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    box-shadow: 0 10px 30px rgba(159, 122, 234, 0.4);
    transition: all 0.3s ease;
}

.advantage-card:hover .advantage-icon {
    transform: rotate(360deg) scale(1.1);
    box-shadow: 0 15px 40px rgba(159, 122, 234, 0.6);
}

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

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

.advantage-description {
    color: hsl(250, 66%, 25%);
    font-size: 1.1rem;
    line-height: 1.7;
    margin: 0;
}

.timeline-dot {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 20px;
    height: 20px;
    background: hsl(250, 66%, 59%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 0 8px rgba(255, 255, 255, 0.3), 0 0 20px rgba(159, 122, 234, 0.6);
    z-index: 2;
    transition: all 0.3s ease;
}

.advantage-item:hover .timeline-dot {
    transform: translate(-50%, -50%) scale(1.3);
    box-shadow: 0 0 0 12px rgba(255, 255, 255, 0.4), 0 0 30px rgba(159, 122, 234, 0.8);
}

@media (max-width: 768px) {
    .timeline-line {
        left: 30px;
    }
    
    .advantage-item {
        flex-direction: column !important;
        align-items: flex-start;
        padding-left: 70px;
    }
    
    .advantage-card {
        width: 100%;
    }
    
    .timeline-dot {
        left: 30px;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
}

.services-section {
    background: linear-gradient(135deg, hsl(250, 66%, 19%) 0%, hsl(250, 66%, 34%) 100%);
    padding: 80px 0;
    color: white;
}

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

.services-header h2 {
    font-size: 3rem;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
}

.services-header p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto;
}

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

.service-card:hover {
    transform: translateY(-15px);
    background: rgba(255, 255, 255, 0.15);
    border-color: hsl(250, 66%, 59%);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.service-icon {
    font-size: 3.5rem;
    color: hsl(250, 66%, 59%);
    margin-bottom: 25px;
    display: block;
}

.service-card h4 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: white;
}

.service-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 25px;
}

.service-price {
    font-size: 1.4rem;
    font-weight: 700;
    color: hsl(250, 66%, 59%);
    margin-bottom: 15px;
}

.service-conditions {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    font-style: italic;
}

@media (max-width: 768px) {
    .services-header h2 {
        font-size: 2.2rem;
    }
    
    .service-card {
        margin-bottom: 30px;
    }
}

.statistics-section {
    background: linear-gradient(135deg, hsl(250, 66%, 34%) 0%, hsl(250, 66%, 19%) 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

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

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

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

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.stat-circle {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    width: 220px;
    height: 220px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    position: relative;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.stat-circle:hover {
    transform: translateY(-10px) scale(1.05);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.stat-circle::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border-radius: 50%;
    background: linear-gradient(45deg, hsl(250, 66%, 59%), transparent, hsl(250, 66%, 59%));
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.stat-circle:hover::before {
    opacity: 1;
}

.stat-icon {
    font-size: 2.5rem;
    color: hsl(250, 66%, 59%);
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

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

.stat-number {
    font-size: 2.8rem;
    font-weight: 800;
    color: white;
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.stat-label {
    font-size: 1rem;
    color: hsl(250, 66%, 85%);
    text-align: center;
    font-weight: 500;
    line-height: 1.3;
    padding: 0 10px;
}

.stat-circle:hover .stat-label {
    color: white;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2.5rem;
    }
    
    .section-subtitle {
        font-size: 1.1rem;
        margin-bottom: 3rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 2rem;
    }
    
    .stat-circle {
        width: 200px;
        height: 200px;
    }
    
    .stat-number {
        font-size: 2.4rem;
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .stat-circle {
        width: 180px;
        height: 180px;
    }
    
    .stat-icon {
        font-size: 2rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
}

.newsletter-section {
    background: linear-gradient(135deg, hsl(250, 66%, 34%) 0%, hsl(250, 66%, 19%) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

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

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

.newsletter-container {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

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

.newsletter-subtitle {
    font-size: 1.3rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 3rem;
    font-weight: 300;
    line-height: 1.6;
}

.newsletter-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 8px 32px rgba(0,0,0,0.3);
}

.form-group {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
    flex-wrap: wrap;
    justify-content: center;
}

.email-input {
    flex: 1;
    min-width: 300px;
    padding: 18px 25px;
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 50px;
    background: rgba(255,255,255,0.15);
    color: white;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.email-input::placeholder {
    color: rgba(255,255,255,0.7);
}

.email-input:focus {
    outline: none;
    border-color: hsl(250, 66%, 59%);
    background: rgba(255,255,255,0.25);
    box-shadow: 0 0 20px rgba(255,255,255,0.2);
    transform: translateY(-2px);
}

.subscribe-btn {
    padding: 18px 40px;
    background: linear-gradient(45deg, hsl(250, 66%, 59%), hsl(250, 66%, 49%));
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    min-width: 160px;
}

.subscribe-btn:hover {
    background: linear-gradient(45deg, hsl(250, 66%, 69%), hsl(250, 66%, 59%));
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.4);
}

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

.benefits-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 30px;
    text-align: left;
}

.benefit-item {
    display: flex;
    align-items: center;
    color: rgba(255,255,255,0.9);
    font-size: 1rem;
    gap: 12px;
}

.benefit-icon {
    width: 20px;
    height: 20px;
    background: hsl(250, 66%, 59%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 12px;
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .newsletter-section {
        padding: 60px 20px;
    }
    
    .newsletter-title {
        font-size: 2.2rem;
    }
    
    .newsletter-subtitle {
        font-size: 1.1rem;
    }
    
    .newsletter-form {
        padding: 30px 20px;
    }
    
    .form-group {
        flex-direction: column;
        align-items: stretch;
    }
    
    .email-input {
        min-width: auto;
        width: 100%;
    }
    
    .subscribe-btn {
        width: 100%;
    }
    
    .benefits-list {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

.contact-section {
    background: linear-gradient(135deg, hsl(250, 66%, 34%) 0%, hsl(250, 66%, 19%) 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 70%, hsla(250, 66%, 59%, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

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

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

.contact-subtitle {
    color: hsl(250, 66%, 85%);
    font-size: 1.3rem;
    text-align: center;
    margin-bottom: 4rem;
    font-weight: 300;
    line-height: 1.6;
}

.info-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 3rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
    height: 100%;
}

.info-title {
    color: white;
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 2rem;
    position: relative;
}

.info-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background: hsl(250, 66%, 59%);
    border-radius: 2px;
}

.info-text {
    color: hsl(250, 66%, 90%);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.working-hours {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 2rem;
    border-left: 4px solid hsl(250, 66%, 59%);
}

.working-hours h4 {
    color: white;
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.working-hours p {
    color: hsl(250, 66%, 85%);
    margin: 0.5rem 0;
    font-size: 1rem;
}

.contact-form {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 25px 50px rgba(0,0,0,0.3);
    backdrop-filter: blur(10px);
}

.form-title {
    color: hsl(250, 66%, 34%);
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 2rem;
    text-align: center;
}

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

.form-label {
    color: hsl(250, 66%, 34%);
    font-weight: 600;
    margin-bottom: 0.8rem;
    display: block;
    font-size: 1rem;
}

.form-control {
    width: 100%;
    padding: 1rem 1.5rem;
    border: 2px solid hsl(250, 66%, 85%);
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
    color: hsl(250, 66%, 34%);
}

.form-control:focus {
    outline: none;
    border-color: hsl(250, 66%, 59%);
    box-shadow: 0 0 0 3px hsla(250, 66%, 59%, 0.2);
    transform: translateY(-2px);
}

.form-control::placeholder {
    color: hsl(250, 66%, 60%);
    opacity: 0.8;
}

.form-textarea {
    min-height: 120px;
    resize: vertical;
}

.submit-btn {
    background: linear-gradient(135deg, hsl(250, 66%, 59%) 0%, hsl(250, 66%, 45%) 100%);
    color: white;
    border: none;
    padding: 1.2rem 3rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 8px 25px hsla(250, 66%, 59%, 0.4);
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px hsla(250, 66%, 59%, 0.6);
    background: linear-gradient(135deg, hsl(250, 66%, 65%) 0%, hsl(250, 66%, 50%) 100%);
}

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

@media (max-width: 768px) {
    .contact-title {
        font-size: 2.5rem;
    }
    
    .contact-section {
        padding: 60px 0;
    }
    
    .info-card,
    .contact-form {
        padding: 2rem;
        margin-bottom: 2rem;
    }
    
    .contact-subtitle {
        font-size: 1.1rem;
        margin-bottom: 3rem;
    }
}

footer {
    background: linear-gradient(135deg, hsl(250, 66%, 19%) 0%, hsl(250, 66%, 34%) 100%);
    color: white;
    padding: 60px 0 20px;
    margin-top: 80px;
}

.footer-brand h3 {
    color: hsl(250, 66%, 59%);
    font-weight: 700;
    margin-bottom: 20px;
    font-size: 2rem;
}

.footer-description {
    font-size: 1.1rem;
    line-height: 1.7;
    opacity: 0.9;
    margin-bottom: 30px;
}

.footer-section h5 {
    color: hsl(250, 66%, 59%);
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.footer-section ul li {
    margin-bottom: 12px;
}

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

.footer-section ul li a:hover {
    color: hsl(250, 66%, 59%);
    transform: translateX(5px);
}

.contact-info p {
    margin-bottom: 15px;
    font-size: 1rem;
    opacity: 0.9;
}

.contact-info i {
    color: hsl(250, 66%, 59%);
    margin-right: 10px;
    width: 20px;
}

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

.footer-bottom p {
    margin: 0;
    opacity: 0.7;
    font-size: 0.95rem;
}

.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, hsl(250, 66%, 19%) 0%, hsl(250, 66%, 34%) 100%);
    color: white;
    padding: 25px 0;
    z-index: 9999;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.3);
    transform: translateY(100%);
    transition: transform 0.4s ease-in-out;
}

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

.cookie-notice.hide {
    transform: translateY(100%);
}

.cookie-text {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 0;
}

.cookie-buttons .btn {
    margin: 5px;
    padding: 10px 25px;
    border-radius: 25px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    border: none;
}

.btn-accept {
    background: hsl(250, 66%, 59%);
    color: white;
}

.btn-accept:hover {
    background: hsl(250, 66%, 49%);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.btn-learn {
    background: transparent;
    color: hsl(250, 66%, 59%);
    border: 2px solid hsl(250, 66%, 59%);
}

.btn-learn:hover {
    background: hsl(250, 66%, 59%);
    color: white;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .cookie-notice .row {
        text-align: center;
    }
    
    .cookie-buttons {
        margin-top: 20px;
    }
    
    .cookie-buttons .btn {
        display: block;
        width: 100%;
        margin: 10px 0;
    }
}