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

.about-section {
    background: linear-gradient(135deg, hsl(236, 53%, 19%) 0%, hsl(236, 53%, 34%) 100%);
    padding: 80px 0;
    color: white;
    position: relative;
    overflow: hidden;
}

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

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

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

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

.about-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: hsl(236, 53%, 59%);
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    position: relative;
}

.about-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: hsl(236, 53%, 59%);
    border-radius: 2px;
}

.about-subtitle {
    font-size: 1.3rem;
    color: rgba(255,255,255,0.8);
    font-weight: 300;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.content-row {
    display: flex;
    align-items: center;
    margin-bottom: 80px;
    gap: 40px;
}

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

.content-text {
    flex: 1;
    padding: 0 20px;
}

.content-image {
    flex: 0 0 400px;
    position: relative;
}

.content-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.3);
    transition: transform 0.3s ease;
}

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

.content-image::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: linear-gradient(45deg, hsl(236, 53%, 59%), hsl(236, 53%, 34%));
    border-radius: 20px;
    z-index: -1;
    opacity: 0.7;
}

.section-title {
    font-size: 2.2rem;
    color: hsl(236, 53%, 59%);
    margin-bottom: 25px;
    font-weight: 600;
    position: relative;
    padding-left: 20px;
}

.section-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 30px;
    background: hsl(236, 53%, 59%);
    border-radius: 2px;
}

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

.highlight-text {
    color: hsl(236, 53%, 59%);
    font-weight: 600;
}

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

.value-card {
    background: rgba(255,255,255,0.05);
    padding: 30px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.value-title {
    font-size: 1.4rem;
    color: hsl(236, 53%, 59%);
    margin-bottom: 15px;
    font-weight: 600;
}

.value-description {
    color: rgba(255,255,255,0.8);
    line-height: 1.6;
}

@media (max-width: 768px) {
    .about-title {
        font-size: 2.5rem;
    }
    
    .content-row {
        flex-direction: column !important;
        text-align: center;
    }
    
    .content-image {
        flex: none;
        max-width: 100%;
    }
    
    .content-text {
        padding: 0;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
}

.advantages-section {
    background: linear-gradient(135deg, hsl(236, 53%, 19%) 0%, hsl(236, 53%, 34%) 100%);
    padding: 80px 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="1" fill="rgba(255,255,255,0.03)"/><circle cx="40" cy="80" r="1" fill="rgba(255,255,255,0.04)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.section-title {
    color: white;
    font-size: 3.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
}

.section-subtitle {
    color: hsl(236, 53%, 59%);
    font-size: 1.3rem;
    text-align: center;
    margin-bottom: 4rem;
    font-weight: 300;
    position: relative;
    z-index: 2;
}

.advantage-card {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    margin-bottom: 2rem;
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.advantage-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, transparent 0%, rgba(255, 255, 255, 0.05) 50%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.advantage-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.12);
    border-color: hsl(236, 53%, 59%);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 30px rgba(147, 147, 255, 0.2);
}

.advantage-card:hover::before {
    opacity: 1;
}

.advantage-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, hsl(236, 53%, 59%) 0%, hsl(236, 53%, 44%) 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: white;
    transition: all 0.4s ease;
    position: relative;
    z-index: 2;
}

.advantage-card:hover .advantage-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 25px rgba(147, 147, 255, 0.4);
}

.advantage-content {
    flex: 1;
    position: relative;
    z-index: 2;
}

.advantage-title {
    color: white;
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
    line-height: 1.3;
}

.advantage-description {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2.5rem;
    }
    
    .advantage-card {
        padding: 2rem 1.5rem;
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
    
    .advantage-icon {
        margin-bottom: 1rem;
    }
}

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

.statistics-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="1" fill="rgba(255,255,255,0.03)"/><circle cx="80" cy="40" r="1" fill="rgba(255,255,255,0.02)"/><circle cx="40" cy="80" r="1" fill="rgba(255,255,255,0.03)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.1;
}

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

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

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

.section-subtitle {
    font-size: 1.2rem;
    color: hsl(236, 53%, 89%);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

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

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

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

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

.stat-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.12);
    border-color: hsl(236, 53%, 59%);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

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

.stat-card:hover .stat-icon {
    transform: scale(1.1);
    color: hsl(236, 53%, 79%);
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 15px;
    display: block;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
}

.stat-card:hover .stat-number {
    transform: scale(1.05);
}

.stat-label {
    font-size: 1.1rem;
    color: hsl(236, 53%, 89%);
    font-weight: 500;
    line-height: 1.4;
    margin-bottom: 10px;
}

.stat-description {
    font-size: 0.9rem;
    color: hsl(236, 53%, 79%);
    line-height: 1.5;
    opacity: 0.8;
}

@media (max-width: 768px) {
    .statistics-section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .stat-card {
        padding: 30px 20px;
    }
    
    .stat-number {
        font-size: 2.8rem;
    }
    
    .stat-icon {
        font-size: 2.5rem;
    }
}

@media (max-width: 576px) {
    .section-title {
        font-size: 1.8rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .stat-number {
        font-size: 2.4rem;
    }
}

footer {
        background: linear-gradient(135deg, hsl(236, 53%, 19%) 0%, hsl(236, 53%, 34%) 100%);
        color: #ffffff;
        padding: 3rem 0 1rem;
        margin-top: 4rem;
    }
    
    footer h5 {
        color: hsl(236, 53%, 59%);
        font-weight: 600;
        margin-bottom: 1.5rem;
        position: relative;
    }
    
    footer h5::after {
        content: '';
        position: absolute;
        bottom: -8px;
        left: 0;
        width: 40px;
        height: 2px;
        background: hsl(236, 53%, 59%);
    }
    
    footer p {
        color: rgba(255, 255, 255, 0.85);
        line-height: 1.6;
    }
    
    footer a {
        color: rgba(255, 255, 255, 0.8);
        text-decoration: none;
        transition: all 0.3s ease;
        display: inline-block;
        margin-bottom: 0.5rem;
    }
    
    footer a:hover {
        color: hsl(236, 53%, 59%);
        transform: translateX(5px);
    }
    
    .footer-contact i {
        color: hsl(236, 53%, 59%);
        margin-right: 10px;
        width: 20px;
    }
    
    .footer-bottom {
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        margin-top: 2rem;
        padding-top: 1.5rem;
        text-align: center;
        color: rgba(255, 255, 255, 0.6);
    }
    
    .cookie-notice {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        background: linear-gradient(135deg, hsl(236, 53%, 19%) 0%, hsl(236, 53%, 34%) 100%);
        color: white;
        padding: 1.5rem 0;
        box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
        z-index: 9999;
        transform: translateY(100%);
        transition: transform 0.4s ease-in-out;
        border-top: 3px solid hsl(236, 53%, 59%);
    }
    
    .cookie-notice.show {
        transform: translateY(0);
    }
    
    .cookie-notice .btn-accept {
        background: hsl(236, 53%, 59%);
        border: none;
        color: white;
        padding: 0.75rem 2rem;
        border-radius: 50px;
        font-weight: 600;
        transition: all 0.3s ease;
        margin-right: 1rem;
    }
    
    .cookie-notice .btn-accept:hover {
        background: hsl(236, 53%, 49%);
        transform: translateY(-2px);
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    }
    
    .cookie-notice .btn-learn {
        background: transparent;
        border: 2px solid hsl(236, 53%, 59%);
        color: hsl(236, 53%, 59%);
        padding: 0.75rem 2rem;
        border-radius: 50px;
        font-weight: 600;
        transition: all 0.3s ease;
        text-decoration: none;
        display: inline-block;
    }
    
    .cookie-notice .btn-learn:hover {
        background: hsl(236, 53%, 59%);
        color: white;
        transform: translateY(-2px);
    }
    
    @media (max-width: 768px) {
        .cookie-notice .d-flex {
            flex-direction: column;
            text-align: center;
        }
        
        .cookie-notice .btn-accept,
        .cookie-notice .btn-learn {
            margin: 0.5rem 0;
            width: 100%;
        }
    }

:root {
            --primary-color: hsl(236, 53%, 34%);
            --secondary-color: hsl(236, 53%, 19%);
            --accent-color: hsl(236, 53%, 59%);
        }
        
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            color: var(--secondary-color);
        }
        
        .navbar {
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
            box-shadow: 0 4px 20px rgba(0,0,0,0.1);
            padding: 1rem 0;
        }
        
        .navbar-brand {
            font-weight: 700;
            font-size: 1.5rem;
            color: white !important;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }
        
        .navbar-brand:hover {
            color: var(--accent-color) !important;
            transform: translateY(-1px);
            transition: all 0.3s ease;
        }
        
        .navbar-nav .nav-link {
            color: rgba(255,255,255,0.9) !important;
            font-weight: 500;
            margin: 0 0.5rem;
            padding: 0.5rem 1rem !important;
            border-radius: 25px;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .navbar-nav .nav-link:hover {
            color: white !important;
            background: var(--accent-color);
            transform: translateY(-2px);
        }
        
        .navbar-toggler {
            border: none;
            padding: 0.25rem 0.5rem;
        }
        
        .navbar-toggler:focus {
            box-shadow: none;
        }
        
        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.8%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        .logo-img {
            filter: brightness(0) invert(1);
            transition: all 0.3s ease;
        }
        
        .navbar-brand:hover .logo-img {
            filter: brightness(0) invert(1) sepia(1) saturate(2) hue-rotate(220deg);
        }
        
        @media (max-width: 991.98px) {
            .navbar-collapse {
                background: var(--secondary-color);
                margin-top: 1rem;
                border-radius: 10px;
                padding: 1rem;
            }
            
            .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, #f5f7fa 0%, #c3cfe2 100%);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.privacy-policy h1 {
    color: #8b4513;
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 30px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
    border-bottom: 3px solid #d4a574;
    padding-bottom: 15px;
}

.privacy-policy h2 {
    color: #5d4037;
    font-size: 1.8rem;
    margin: 35px 0 20px 0;
    padding: 15px 20px;
    background: rgba(212, 165, 116, 0.2);
    border-left: 5px solid #8b4513;
    border-radius: 0 10px 10px 0;
}

.privacy-policy h3 {
    color: #6d4c41;
    font-size: 1.4rem;
    margin: 25px 0 15px 0;
    padding-left: 15px;
    border-left: 3px solid #bcaaa4;
}

.privacy-policy p {
    margin-bottom: 18px;
    text-align: justify;
    padding: 0 10px;
    font-size: 1.1rem;
}

.privacy-policy ul {
    margin: 20px 0;
    padding-left: 30px;
}

.privacy-policy li {
    margin-bottom: 12px;
    font-size: 1.05rem;
    position: relative;
}

.privacy-policy li::marker {
    color: #8b4513;
    font-weight: bold;
}

.highlight-box {
    background: rgba(139, 69, 19, 0.1);
    border: 2px solid #d4a574;
    border-radius: 10px;
    padding: 20px;
    margin: 25px 0;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.effective-date {
    text-align: center;
    font-style: italic;
    color: #6d4c41;
    background: rgba(212, 165, 116, 0.15);
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.section-divider {
    height: 2px;
    background: linear-gradient(90deg, transparent, #d4a574, transparent);
    margin: 35px 0;
    border-radius: 1px;
}

footer {
        background: linear-gradient(135deg, hsl(236, 53%, 19%) 0%, hsl(236, 53%, 34%) 100%);
        color: #ffffff;
        padding: 3rem 0 1rem;
        margin-top: 4rem;
    }
    
    footer h5 {
        color: hsl(236, 53%, 59%);
        font-weight: 600;
        margin-bottom: 1.5rem;
        position: relative;
    }
    
    footer h5::after {
        content: '';
        position: absolute;
        bottom: -8px;
        left: 0;
        width: 40px;
        height: 2px;
        background: hsl(236, 53%, 59%);
    }
    
    footer p {
        color: rgba(255, 255, 255, 0.85);
        line-height: 1.6;
    }
    
    footer a {
        color: rgba(255, 255, 255, 0.8);
        text-decoration: none;
        transition: all 0.3s ease;
        display: inline-block;
        margin-bottom: 0.5rem;
    }
    
    footer a:hover {
        color: hsl(236, 53%, 59%);
        transform: translateX(5px);
    }
    
    .footer-contact i {
        color: hsl(236, 53%, 59%);
        margin-right: 10px;
        width: 20px;
    }
    
    .footer-bottom {
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        margin-top: 2rem;
        padding-top: 1.5rem;
        text-align: center;
        color: rgba(255, 255, 255, 0.6);
    }
    
    .cookie-notice {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        background: linear-gradient(135deg, hsl(236, 53%, 19%) 0%, hsl(236, 53%, 34%) 100%);
        color: white;
        padding: 1.5rem 0;
        box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
        z-index: 9999;
        transform: translateY(100%);
        transition: transform 0.4s ease-in-out;
        border-top: 3px solid hsl(236, 53%, 59%);
    }
    
    .cookie-notice.show {
        transform: translateY(0);
    }
    
    .cookie-notice .btn-accept {
        background: hsl(236, 53%, 59%);
        border: none;
        color: white;
        padding: 0.75rem 2rem;
        border-radius: 50px;
        font-weight: 600;
        transition: all 0.3s ease;
        margin-right: 1rem;
    }
    
    .cookie-notice .btn-accept:hover {
        background: hsl(236, 53%, 49%);
        transform: translateY(-2px);
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    }
    
    .cookie-notice .btn-learn {
        background: transparent;
        border: 2px solid hsl(236, 53%, 59%);
        color: hsl(236, 53%, 59%);
        padding: 0.75rem 2rem;
        border-radius: 50px;
        font-weight: 600;
        transition: all 0.3s ease;
        text-decoration: none;
        display: inline-block;
    }
    
    .cookie-notice .btn-learn:hover {
        background: hsl(236, 53%, 59%);
        color: white;
        transform: translateY(-2px);
    }
    
    @media (max-width: 768px) {
        .cookie-notice .d-flex {
            flex-direction: column;
            text-align: center;
        }
        
        .cookie-notice .btn-accept,
        .cookie-notice .btn-learn {
            margin: 0.5rem 0;
            width: 100%;
        }
    }

:root {
            --primary-color: hsl(236, 53%, 34%);
            --secondary-color: hsl(236, 53%, 19%);
            --accent-color: hsl(236, 53%, 59%);
        }
        
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            color: var(--secondary-color);
        }
        
        .navbar {
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
            box-shadow: 0 4px 20px rgba(0,0,0,0.1);
            padding: 1rem 0;
        }
        
        .navbar-brand {
            font-weight: 700;
            font-size: 1.5rem;
            color: white !important;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }
        
        .navbar-brand:hover {
            color: var(--accent-color) !important;
            transform: translateY(-1px);
            transition: all 0.3s ease;
        }
        
        .navbar-nav .nav-link {
            color: rgba(255,255,255,0.9) !important;
            font-weight: 500;
            margin: 0 0.5rem;
            padding: 0.5rem 1rem !important;
            border-radius: 25px;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .navbar-nav .nav-link:hover {
            color: white !important;
            background: var(--accent-color);
            transform: translateY(-2px);
        }
        
        .navbar-toggler {
            border: none;
            padding: 0.25rem 0.5rem;
        }
        
        .navbar-toggler:focus {
            box-shadow: none;
        }
        
        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.8%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        .logo-img {
            filter: brightness(0) invert(1);
            transition: all 0.3s ease;
        }
        
        .navbar-brand:hover .logo-img {
            filter: brightness(0) invert(1) sepia(1) saturate(2) hue-rotate(220deg);
        }
        
        @media (max-width: 991.98px) {
            .navbar-collapse {
                background: var(--secondary-color);
                margin-top: 1rem;
                border-radius: 10px;
                padding: 1rem;
            }
            
            .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-header h1 {
    color: #2c3e50;
    font-size: 2.5em;
    margin-bottom: 15px;
    font-weight: 700;
}

.policy-header p {
    color: #7f8c8d;
    font-size: 1.1em;
    margin: 0;
}

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

.policy-section {
    margin-bottom: 40px;
}

.policy-section h2 {
    color: #34495e;
    font-size: 1.8em;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 3px solid #3498db;
    font-weight: 600;
}

.policy-section h3 {
    color: #2c3e50;
    font-size: 1.4em;
    margin: 25px 0 15px 0;
    font-weight: 600;
}

.policy-section p {
    margin-bottom: 15px;
    text-align: justify;
}

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

.cookie-type {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    border-left: 4px solid #3498db;
}

.cookie-type h4 {
    color: #2c3e50;
    margin-bottom: 10px;
    font-size: 1.2em;
}

.highlight-box {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 25px;
    border-radius: 10px;
    margin: 25px 0;
}

.highlight-box h3 {
    color: white;
    margin-top: 0;
}

.consent-info {
    background: #e8f5e8;
    border: 2px solid #27ae60;
    padding: 20px;
    border-radius: 10px;
    margin: 20px 0;
}

.gdpr-notice {
    background: #fff3cd;
    border: 2px solid #ffc107;
    padding: 20px;
    border-radius: 10px;
    margin: 20px 0;
}

ul {
    padding-left: 20px;
}

li {
    margin-bottom: 8px;
}

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

footer {
        background: linear-gradient(135deg, hsl(236, 53%, 19%) 0%, hsl(236, 53%, 34%) 100%);
        color: #ffffff;
        padding: 3rem 0 1rem;
        margin-top: 4rem;
    }
    
    footer h5 {
        color: hsl(236, 53%, 59%);
        font-weight: 600;
        margin-bottom: 1.5rem;
        position: relative;
    }
    
    footer h5::after {
        content: '';
        position: absolute;
        bottom: -8px;
        left: 0;
        width: 40px;
        height: 2px;
        background: hsl(236, 53%, 59%);
    }
    
    footer p {
        color: rgba(255, 255, 255, 0.85);
        line-height: 1.6;
    }
    
    footer a {
        color: rgba(255, 255, 255, 0.8);
        text-decoration: none;
        transition: all 0.3s ease;
        display: inline-block;
        margin-bottom: 0.5rem;
    }
    
    footer a:hover {
        color: hsl(236, 53%, 59%);
        transform: translateX(5px);
    }
    
    .footer-contact i {
        color: hsl(236, 53%, 59%);
        margin-right: 10px;
        width: 20px;
    }
    
    .footer-bottom {
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        margin-top: 2rem;
        padding-top: 1.5rem;
        text-align: center;
        color: rgba(255, 255, 255, 0.6);
    }
    
    .cookie-notice {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        background: linear-gradient(135deg, hsl(236, 53%, 19%) 0%, hsl(236, 53%, 34%) 100%);
        color: white;
        padding: 1.5rem 0;
        box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
        z-index: 9999;
        transform: translateY(100%);
        transition: transform 0.4s ease-in-out;
        border-top: 3px solid hsl(236, 53%, 59%);
    }
    
    .cookie-notice.show {
        transform: translateY(0);
    }
    
    .cookie-notice .btn-accept {
        background: hsl(236, 53%, 59%);
        border: none;
        color: white;
        padding: 0.75rem 2rem;
        border-radius: 50px;
        font-weight: 600;
        transition: all 0.3s ease;
        margin-right: 1rem;
    }
    
    .cookie-notice .btn-accept:hover {
        background: hsl(236, 53%, 49%);
        transform: translateY(-2px);
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    }
    
    .cookie-notice .btn-learn {
        background: transparent;
        border: 2px solid hsl(236, 53%, 59%);
        color: hsl(236, 53%, 59%);
        padding: 0.75rem 2rem;
        border-radius: 50px;
        font-weight: 600;
        transition: all 0.3s ease;
        text-decoration: none;
        display: inline-block;
    }
    
    .cookie-notice .btn-learn:hover {
        background: hsl(236, 53%, 59%);
        color: white;
        transform: translateY(-2px);
    }
    
    @media (max-width: 768px) {
        .cookie-notice .d-flex {
            flex-direction: column;
            text-align: center;
        }
        
        .cookie-notice .btn-accept,
        .cookie-notice .btn-learn {
            margin: 0.5rem 0;
            width: 100%;
        }
    }

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

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

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, hsl(236, 53%, 59%) 0%, transparent 50%);
    opacity: 0.1;
}

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

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

.contact-info p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: rgba(255,255,255,0.9);
}

.working-hours {
    background: rgba(255,255,255,0.1);
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid hsl(236, 53%, 59%);
    margin-top: 2rem;
}

.working-hours h4 {
    color: hsl(236, 53%, 59%);
    margin-bottom: 1rem;
    font-weight: 600;
}

.contact-form {
    background: rgba(255,255,255,0.95);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
    backdrop-filter: blur(10px);
}

.contact-form h3 {
    color: hsl(236, 53%, 34%);
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-align: center;
}

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

.form-label {
    color: hsl(236, 53%, 34%);
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: block;
    font-size: 0.95rem;
}

.form-control {
    border: 2px solid hsl(236, 53%, 80%);
    border-radius: 8px;
    padding: 12px 15px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
    color: hsl(236, 53%, 34%);
}

.form-control:focus {
    border-color: hsl(236, 53%, 59%);
    box-shadow: 0 0 0 0.2rem rgba(93, 93, 150, 0.25);
    outline: none;
    background: white;
    color: hsl(236, 53%, 34%);
}

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

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

.submit-btn {
    background: linear-gradient(135deg, hsl(236, 53%, 59%) 0%, hsl(236, 53%, 45%) 100%);
    color: white;
    border: none;
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 5px 15px rgba(93, 93, 150, 0.3);
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(93, 93, 150, 0.4);
    background: linear-gradient(135deg, hsl(236, 53%, 65%) 0%, hsl(236, 53%, 50%) 100%);
}

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

@media (max-width: 768px) {
    .contact-section {
        padding: 60px 0;
    }
    
    .contact-info h2 {
        font-size: 2.2rem;
    }
    
    .contact-form {
        padding: 2rem;
        margin-top: 3rem;
    }
}

.about-section {
    background: linear-gradient(135deg, hsl(236, 53%, 19%) 0%, hsl(236, 53%, 34%) 100%);
    padding: 80px 0;
    color: white;
    position: relative;
    overflow: hidden;
}

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

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

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

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

.about-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: hsl(236, 53%, 59%);
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    position: relative;
}

.about-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: hsl(236, 53%, 59%);
    border-radius: 2px;
}

.about-subtitle {
    font-size: 1.3rem;
    color: rgba(255,255,255,0.8);
    font-weight: 300;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.content-row {
    display: flex;
    align-items: center;
    margin-bottom: 80px;
    gap: 40px;
}

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

.content-text {
    flex: 1;
    padding: 0 20px;
}

.content-image {
    flex: 0 0 400px;
    position: relative;
}

.content-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.3);
    transition: transform 0.3s ease;
}

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

.content-image::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: linear-gradient(45deg, hsl(236, 53%, 59%), hsl(236, 53%, 34%));
    border-radius: 20px;
    z-index: -1;
    opacity: 0.7;
}

.section-title {
    font-size: 2.2rem;
    color: hsl(236, 53%, 59%);
    margin-bottom: 25px;
    font-weight: 600;
    position: relative;
    padding-left: 20px;
}

.section-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 30px;
    background: hsl(236, 53%, 59%);
    border-radius: 2px;
}

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

.highlight-text {
    color: hsl(236, 53%, 59%);
    font-weight: 600;
}

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

.value-card {
    background: rgba(255,255,255,0.05);
    padding: 30px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.value-title {
    font-size: 1.4rem;
    color: hsl(236, 53%, 59%);
    margin-bottom: 15px;
    font-weight: 600;
}

.value-description {
    color: rgba(255,255,255,0.8);
    line-height: 1.6;
}

@media (max-width: 768px) {
    .about-title {
        font-size: 2.5rem;
    }
    
    .content-row {
        flex-direction: column !important;
        text-align: center;
    }
    
    .content-image {
        flex: none;
        max-width: 100%;
    }
    
    .content-text {
        padding: 0;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
}

footer {
        background: linear-gradient(135deg, hsl(236, 53%, 19%) 0%, hsl(236, 53%, 34%) 100%);
        color: #ffffff;
        padding: 3rem 0 1rem;
        margin-top: 4rem;
    }
    
    footer h5 {
        color: hsl(236, 53%, 59%);
        font-weight: 600;
        margin-bottom: 1.5rem;
        position: relative;
    }
    
    footer h5::after {
        content: '';
        position: absolute;
        bottom: -8px;
        left: 0;
        width: 40px;
        height: 2px;
        background: hsl(236, 53%, 59%);
    }
    
    footer p {
        color: rgba(255, 255, 255, 0.85);
        line-height: 1.6;
    }
    
    footer a {
        color: rgba(255, 255, 255, 0.8);
        text-decoration: none;
        transition: all 0.3s ease;
        display: inline-block;
        margin-bottom: 0.5rem;
    }
    
    footer a:hover {
        color: hsl(236, 53%, 59%);
        transform: translateX(5px);
    }
    
    .footer-contact i {
        color: hsl(236, 53%, 59%);
        margin-right: 10px;
        width: 20px;
    }
    
    .footer-bottom {
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        margin-top: 2rem;
        padding-top: 1.5rem;
        text-align: center;
        color: rgba(255, 255, 255, 0.6);
    }
    
    .cookie-notice {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        background: linear-gradient(135deg, hsl(236, 53%, 19%) 0%, hsl(236, 53%, 34%) 100%);
        color: white;
        padding: 1.5rem 0;
        box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
        z-index: 9999;
        transform: translateY(100%);
        transition: transform 0.4s ease-in-out;
        border-top: 3px solid hsl(236, 53%, 59%);
    }
    
    .cookie-notice.show {
        transform: translateY(0);
    }
    
    .cookie-notice .btn-accept {
        background: hsl(236, 53%, 59%);
        border: none;
        color: white;
        padding: 0.75rem 2rem;
        border-radius: 50px;
        font-weight: 600;
        transition: all 0.3s ease;
        margin-right: 1rem;
    }
    
    .cookie-notice .btn-accept:hover {
        background: hsl(236, 53%, 49%);
        transform: translateY(-2px);
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    }
    
    .cookie-notice .btn-learn {
        background: transparent;
        border: 2px solid hsl(236, 53%, 59%);
        color: hsl(236, 53%, 59%);
        padding: 0.75rem 2rem;
        border-radius: 50px;
        font-weight: 600;
        transition: all 0.3s ease;
        text-decoration: none;
        display: inline-block;
    }
    
    .cookie-notice .btn-learn:hover {
        background: hsl(236, 53%, 59%);
        color: white;
        transform: translateY(-2px);
    }
    
    @media (max-width: 768px) {
        .cookie-notice .d-flex {
            flex-direction: column;
            text-align: center;
        }
        
        .cookie-notice .btn-accept,
        .cookie-notice .btn-learn {
            margin: 0.5rem 0;
            width: 100%;
        }
    }

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

.services-section {
    background: linear-gradient(135deg, hsl(236, 53%, 19%) 0%, hsl(236, 53%, 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;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.services-header p {
    font-size: 1.2rem;
    color: hsl(236, 53%, 79%);
    max-width: 600px;
    margin: 0 auto;
}

.nav-tabs {
    border-bottom: 2px solid hsl(236, 53%, 59%);
    margin-bottom: 40px;
    justify-content: center;
}

.nav-tabs .nav-link {
    background: transparent;
    border: 2px solid hsl(236, 53%, 59%);
    color: hsl(236, 53%, 79%);
    font-weight: 600;
    margin: 0 10px;
    border-radius: 25px;
    padding: 12px 30px;
    transition: all 0.3s ease;
}

.nav-tabs .nav-link:hover {
    background: hsl(236, 53%, 59%);
    color: white;
    transform: translateY(-3px);
}

.nav-tabs .nav-link.active {
    background: hsl(236, 53%, 59%);
    color: white;
    border-color: hsl(236, 53%, 59%);
}

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

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

.service-icon {
    font-size: 3rem;
    color: hsl(236, 53%, 59%);
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

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

.service-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: white;
}

.service-description {
    color: hsl(236, 53%, 79%);
    line-height: 1.6;
    margin-bottom: 20px;
}

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

.service-conditions {
    background: rgba(0, 0, 0, 0.2);
    padding: 15px;
    border-radius: 10px;
    font-size: 0.9rem;
    color: hsl(236, 53%, 89%);
}

.conditions-title {
    font-weight: 600;
    margin-bottom: 10px;
    color: hsl(236, 53%, 59%);
}

@media (max-width: 768px) {
    .services-header h2 {
        font-size: 2rem;
    }
    
    .nav-tabs .nav-link {
        margin: 5px;
        padding: 8px 20px;
    }
    
    .service-card {
        padding: 20px;
    }
}

.newsletter-section {
    background: linear-gradient(135deg, hsl(236, 53%, 34%) 0%, hsl(236, 53%, 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 infinite linear;
}

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

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

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

.newsletter-subtitle {
    color: rgba(255,255,255,0.9);
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

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

.benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.benefit-icon {
    font-size: 2.5rem;
    color: hsl(236, 53%, 59%);
    margin-bottom: 1rem;
}

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

.benefit-text {
    color: rgba(255,255,255,0.8);
    font-size: 0.9rem;
    line-height: 1.5;
}

.newsletter-form {
    max-width: 500px;
    margin: 0 auto;
    background: rgba(255,255,255,0.15);
    padding: 2rem;
    border-radius: 20px;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255,255,255,0.3);
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

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

.form-control {
    background: rgba(255,255,255,0.9);
    border: 2px solid transparent;
    border-radius: 12px;
    padding: 15px 20px;
    font-size: 1rem;
    width: 100%;
    transition: all 0.3s ease;
    color: hsl(236, 53%, 19%);
}

.form-control:focus {
    outline: none;
    border-color: hsl(236, 53%, 59%);
    background: white;
    box-shadow: 0 0 20px rgba(133, 133, 255, 0.3);
    transform: translateY(-2px);
}

.form-control::placeholder {
    color: hsl(236, 53%, 34%);
    opacity: 0.7;
}

.subscribe-btn {
    background: linear-gradient(45deg, hsl(236, 53%, 59%) 0%, hsl(236, 53%, 49%) 100%);
    color: white;
    border: none;
    padding: 15px 40px;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    width: 100%;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

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

.subscribe-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(133, 133, 255, 0.4);
    background: linear-gradient(45deg, hsl(236, 53%, 69%) 0%, hsl(236, 53%, 59%) 100%);
}

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

.privacy-text {
    color: rgba(255,255,255,0.7);
    font-size: 0.8rem;
    text-align: center;
    margin-top: 1rem;
    line-height: 1.4;
}

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

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

.testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="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); }
    50% { transform: translateY(-20px); }
}

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

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

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

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

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    border-color: hsl(236, 53%, 59%);
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 4rem;
    color: hsl(236, 53%, 59%);
    font-family: serif;
    line-height: 1;
}

.testimonial-text {
    color: hsl(236, 53%, 19%);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
    font-style: italic;
    margin-top: 20px;
}

.testimonial-author {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 2px solid hsl(236, 53%, 89%);
    padding-top: 15px;
}

.author-info h5 {
    color: hsl(236, 53%, 34%);
    font-weight: 600;
    margin: 0;
    font-size: 1.1rem;
}

.author-info p {
    color: hsl(236, 53%, 59%);
    margin: 0;
    font-size: 0.9rem;
}

.rating {
    display: flex;
    gap: 2px;
}

.star {
    color: #ffd700;
    font-size: 1.2rem;
}

.testimonial-card.large {
    grid-column: span 2;
}

.testimonial-card.medium {
    grid-row: span 1;
}

@media (max-width: 768px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .testimonial-card.large {
        grid-column: span 1;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
}

footer {
        background: linear-gradient(135deg, hsl(236, 53%, 19%) 0%, hsl(236, 53%, 34%) 100%);
        color: #ffffff;
        padding: 3rem 0 1rem;
        margin-top: 4rem;
    }
    
    footer h5 {
        color: hsl(236, 53%, 59%);
        font-weight: 600;
        margin-bottom: 1.5rem;
        position: relative;
    }
    
    footer h5::after {
        content: '';
        position: absolute;
        bottom: -8px;
        left: 0;
        width: 40px;
        height: 2px;
        background: hsl(236, 53%, 59%);
    }
    
    footer p {
        color: rgba(255, 255, 255, 0.85);
        line-height: 1.6;
    }
    
    footer a {
        color: rgba(255, 255, 255, 0.8);
        text-decoration: none;
        transition: all 0.3s ease;
        display: inline-block;
        margin-bottom: 0.5rem;
    }
    
    footer a:hover {
        color: hsl(236, 53%, 59%);
        transform: translateX(5px);
    }
    
    .footer-contact i {
        color: hsl(236, 53%, 59%);
        margin-right: 10px;
        width: 20px;
    }
    
    .footer-bottom {
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        margin-top: 2rem;
        padding-top: 1.5rem;
        text-align: center;
        color: rgba(255, 255, 255, 0.6);
    }
    
    .cookie-notice {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        background: linear-gradient(135deg, hsl(236, 53%, 19%) 0%, hsl(236, 53%, 34%) 100%);
        color: white;
        padding: 1.5rem 0;
        box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
        z-index: 9999;
        transform: translateY(100%);
        transition: transform 0.4s ease-in-out;
        border-top: 3px solid hsl(236, 53%, 59%);
    }
    
    .cookie-notice.show {
        transform: translateY(0);
    }
    
    .cookie-notice .btn-accept {
        background: hsl(236, 53%, 59%);
        border: none;
        color: white;
        padding: 0.75rem 2rem;
        border-radius: 50px;
        font-weight: 600;
        transition: all 0.3s ease;
        margin-right: 1rem;
    }
    
    .cookie-notice .btn-accept:hover {
        background: hsl(236, 53%, 49%);
        transform: translateY(-2px);
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    }
    
    .cookie-notice .btn-learn {
        background: transparent;
        border: 2px solid hsl(236, 53%, 59%);
        color: hsl(236, 53%, 59%);
        padding: 0.75rem 2rem;
        border-radius: 50px;
        font-weight: 600;
        transition: all 0.3s ease;
        text-decoration: none;
        display: inline-block;
    }
    
    .cookie-notice .btn-learn:hover {
        background: hsl(236, 53%, 59%);
        color: white;
        transform: translateY(-2px);
    }
    
    @media (max-width: 768px) {
        .cookie-notice .d-flex {
            flex-direction: column;
            text-align: center;
        }
        
        .cookie-notice .btn-accept,
        .cookie-notice .btn-learn {
            margin: 0.5rem 0;
            width: 100%;
        }
    }

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

.terms-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px;
    font-family: 'Georgia', serif;
    line-height: 1.8;
    color: #2c3e50;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.terms-title {
    text-align: center;
    color: #8b4513;
    font-size: 2.5em;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
    border-bottom: 3px solid #d4a574;
    padding-bottom: 15px;
}

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

.section-header {
    color: #8b4513;
    font-size: 1.4em;
    margin: 35px 0 15px 0;
    padding: 10px 0;
    border-left: 4px solid #d4a574;
    padding-left: 15px;
    background: rgba(212, 165, 116, 0.1);
    border-radius: 0 8px 8px 0;
}

.terms-text {
    margin-bottom: 20px;
    text-align: justify;
    padding: 0 10px;
}

.highlight-box {
    background: linear-gradient(135deg, #fff3e0 0%, #ffe0b2 100%);
    border: 1px solid #d4a574;
    border-radius: 8px;
    padding: 20px;
    margin: 25px 0;
    box-shadow: 0 4px 15px rgba(212, 165, 116, 0.2);
}

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

.terms-list li {
    margin-bottom: 10px;
    position: relative;
}

.terms-list li::marker {
    color: #8b4513;
    font-weight: bold;
}

.effective-date {
    text-align: center;
    font-style: italic;
    color: #6c757d;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 2px solid #d4a574;
}

footer {
        background: linear-gradient(135deg, hsl(236, 53%, 19%) 0%, hsl(236, 53%, 34%) 100%);
        color: #ffffff;
        padding: 3rem 0 1rem;
        margin-top: 4rem;
    }
    
    footer h5 {
        color: hsl(236, 53%, 59%);
        font-weight: 600;
        margin-bottom: 1.5rem;
        position: relative;
    }
    
    footer h5::after {
        content: '';
        position: absolute;
        bottom: -8px;
        left: 0;
        width: 40px;
        height: 2px;
        background: hsl(236, 53%, 59%);
    }
    
    footer p {
        color: rgba(255, 255, 255, 0.85);
        line-height: 1.6;
    }
    
    footer a {
        color: rgba(255, 255, 255, 0.8);
        text-decoration: none;
        transition: all 0.3s ease;
        display: inline-block;
        margin-bottom: 0.5rem;
    }
    
    footer a:hover {
        color: hsl(236, 53%, 59%);
        transform: translateX(5px);
    }
    
    .footer-contact i {
        color: hsl(236, 53%, 59%);
        margin-right: 10px;
        width: 20px;
    }
    
    .footer-bottom {
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        margin-top: 2rem;
        padding-top: 1.5rem;
        text-align: center;
        color: rgba(255, 255, 255, 0.6);
    }
    
    .cookie-notice {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        background: linear-gradient(135deg, hsl(236, 53%, 19%) 0%, hsl(236, 53%, 34%) 100%);
        color: white;
        padding: 1.5rem 0;
        box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
        z-index: 9999;
        transform: translateY(100%);
        transition: transform 0.4s ease-in-out;
        border-top: 3px solid hsl(236, 53%, 59%);
    }
    
    .cookie-notice.show {
        transform: translateY(0);
    }
    
    .cookie-notice .btn-accept {
        background: hsl(236, 53%, 59%);
        border: none;
        color: white;
        padding: 0.75rem 2rem;
        border-radius: 50px;
        font-weight: 600;
        transition: all 0.3s ease;
        margin-right: 1rem;
    }
    
    .cookie-notice .btn-accept:hover {
        background: hsl(236, 53%, 49%);
        transform: translateY(-2px);
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    }
    
    .cookie-notice .btn-learn {
        background: transparent;
        border: 2px solid hsl(236, 53%, 59%);
        color: hsl(236, 53%, 59%);
        padding: 0.75rem 2rem;
        border-radius: 50px;
        font-weight: 600;
        transition: all 0.3s ease;
        text-decoration: none;
        display: inline-block;
    }
    
    .cookie-notice .btn-learn:hover {
        background: hsl(236, 53%, 59%);
        color: white;
        transform: translateY(-2px);
    }
    
    @media (max-width: 768px) {
        .cookie-notice .d-flex {
            flex-direction: column;
            text-align: center;
        }
        
        .cookie-notice .btn-accept,
        .cookie-notice .btn-learn {
            margin: 0.5rem 0;
            width: 100%;
        }
    }

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

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

.faq-title {
    color: hsl(236, 53%, 59%);
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.faq-subtitle {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 60px;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.faq-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
    border-color: hsl(236, 53%, 59%);
}

.faq-question {
    font-size: 1.3rem;
    font-weight: 600;
    color: hsl(236, 53%, 59%);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.faq-question::before {
    content: "🎸";
    margin-right: 15px;
    font-size: 1.5rem;
}

.faq-answer {
    font-size: 1.1rem;
    line-height: 1.7;
    opacity: 0.95;
    padding-left: 40px;
}

.faq-highlight {
    color: hsl(236, 53%, 59%);
    font-weight: 600;
}

@media (max-width: 768px) {
    .faq-title {
        font-size: 2.2rem;
    }
    
    .faq-card {
        padding: 20px;
    }
    
    .faq-question {
        font-size: 1.1rem;
    }
    
    .faq-answer {
        font-size: 1rem;
        padding-left: 30px;
    }
}

.about-section {
    background: linear-gradient(135deg, hsl(236, 53%, 19%) 0%, hsl(236, 53%, 34%) 100%);
    padding: 80px 0;
    color: white;
    position: relative;
    overflow: hidden;
}

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

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

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

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

.about-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: hsl(236, 53%, 59%);
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    position: relative;
}

.about-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: hsl(236, 53%, 59%);
    border-radius: 2px;
}

.about-subtitle {
    font-size: 1.3rem;
    color: rgba(255,255,255,0.8);
    font-weight: 300;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.content-row {
    display: flex;
    align-items: center;
    margin-bottom: 80px;
    gap: 40px;
}

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

.content-text {
    flex: 1;
    padding: 0 20px;
}

.content-image {
    flex: 0 0 400px;
    position: relative;
}

.content-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.3);
    transition: transform 0.3s ease;
}

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

.content-image::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: linear-gradient(45deg, hsl(236, 53%, 59%), hsl(236, 53%, 34%));
    border-radius: 20px;
    z-index: -1;
    opacity: 0.7;
}

.section-title {
    font-size: 2.2rem;
    color: hsl(236, 53%, 59%);
    margin-bottom: 25px;
    font-weight: 600;
    position: relative;
    padding-left: 20px;
}

.section-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 30px;
    background: hsl(236, 53%, 59%);
    border-radius: 2px;
}

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

.highlight-text {
    color: hsl(236, 53%, 59%);
    font-weight: 600;
}

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

.value-card {
    background: rgba(255,255,255,0.05);
    padding: 30px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.value-title {
    font-size: 1.4rem;
    color: hsl(236, 53%, 59%);
    margin-bottom: 15px;
    font-weight: 600;
}

.value-description {
    color: rgba(255,255,255,0.8);
    line-height: 1.6;
}

@media (max-width: 768px) {
    .about-title {
        font-size: 2.5rem;
    }
    
    .content-row {
        flex-direction: column !important;
        text-align: center;
    }
    
    .content-image {
        flex: none;
        max-width: 100%;
    }
    
    .content-text {
        padding: 0;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
}

.newsletter-section {
    background: linear-gradient(135deg, hsl(236, 53%, 34%) 0%, hsl(236, 53%, 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 infinite linear;
}

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

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

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

.newsletter-subtitle {
    color: rgba(255,255,255,0.9);
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

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

.benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.benefit-icon {
    font-size: 2.5rem;
    color: hsl(236, 53%, 59%);
    margin-bottom: 1rem;
}

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

.benefit-text {
    color: rgba(255,255,255,0.8);
    font-size: 0.9rem;
    line-height: 1.5;
}

.newsletter-form {
    max-width: 500px;
    margin: 0 auto;
    background: rgba(255,255,255,0.15);
    padding: 2rem;
    border-radius: 20px;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255,255,255,0.3);
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

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

.form-control {
    background: rgba(255,255,255,0.9);
    border: 2px solid transparent;
    border-radius: 12px;
    padding: 15px 20px;
    font-size: 1rem;
    width: 100%;
    transition: all 0.3s ease;
    color: hsl(236, 53%, 19%);
}

.form-control:focus {
    outline: none;
    border-color: hsl(236, 53%, 59%);
    background: white;
    box-shadow: 0 0 20px rgba(133, 133, 255, 0.3);
    transform: translateY(-2px);
}

.form-control::placeholder {
    color: hsl(236, 53%, 34%);
    opacity: 0.7;
}

.subscribe-btn {
    background: linear-gradient(45deg, hsl(236, 53%, 59%) 0%, hsl(236, 53%, 49%) 100%);
    color: white;
    border: none;
    padding: 15px 40px;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    width: 100%;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

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

.subscribe-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(133, 133, 255, 0.4);
    background: linear-gradient(45deg, hsl(236, 53%, 69%) 0%, hsl(236, 53%, 59%) 100%);
}

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

.privacy-text {
    color: rgba(255,255,255,0.7);
    font-size: 0.8rem;
    text-align: center;
    margin-top: 1rem;
    line-height: 1.4;
}

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

footer {
        background: linear-gradient(135deg, hsl(236, 53%, 19%) 0%, hsl(236, 53%, 34%) 100%);
        color: #ffffff;
        padding: 3rem 0 1rem;
        margin-top: 4rem;
    }
    
    footer h5 {
        color: hsl(236, 53%, 59%);
        font-weight: 600;
        margin-bottom: 1.5rem;
        position: relative;
    }
    
    footer h5::after {
        content: '';
        position: absolute;
        bottom: -8px;
        left: 0;
        width: 40px;
        height: 2px;
        background: hsl(236, 53%, 59%);
    }
    
    footer p {
        color: rgba(255, 255, 255, 0.85);
        line-height: 1.6;
    }
    
    footer a {
        color: rgba(255, 255, 255, 0.8);
        text-decoration: none;
        transition: all 0.3s ease;
        display: inline-block;
        margin-bottom: 0.5rem;
    }
    
    footer a:hover {
        color: hsl(236, 53%, 59%);
        transform: translateX(5px);
    }
    
    .footer-contact i {
        color: hsl(236, 53%, 59%);
        margin-right: 10px;
        width: 20px;
    }
    
    .footer-bottom {
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        margin-top: 2rem;
        padding-top: 1.5rem;
        text-align: center;
        color: rgba(255, 255, 255, 0.6);
    }
    
    .cookie-notice {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        background: linear-gradient(135deg, hsl(236, 53%, 19%) 0%, hsl(236, 53%, 34%) 100%);
        color: white;
        padding: 1.5rem 0;
        box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
        z-index: 9999;
        transform: translateY(100%);
        transition: transform 0.4s ease-in-out;
        border-top: 3px solid hsl(236, 53%, 59%);
    }
    
    .cookie-notice.show {
        transform: translateY(0);
    }
    
    .cookie-notice .btn-accept {
        background: hsl(236, 53%, 59%);
        border: none;
        color: white;
        padding: 0.75rem 2rem;
        border-radius: 50px;
        font-weight: 600;
        transition: all 0.3s ease;
        margin-right: 1rem;
    }
    
    .cookie-notice .btn-accept:hover {
        background: hsl(236, 53%, 49%);
        transform: translateY(-2px);
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    }
    
    .cookie-notice .btn-learn {
        background: transparent;
        border: 2px solid hsl(236, 53%, 59%);
        color: hsl(236, 53%, 59%);
        padding: 0.75rem 2rem;
        border-radius: 50px;
        font-weight: 600;
        transition: all 0.3s ease;
        text-decoration: none;
        display: inline-block;
    }
    
    .cookie-notice .btn-learn:hover {
        background: hsl(236, 53%, 59%);
        color: white;
        transform: translateY(-2px);
    }
    
    @media (max-width: 768px) {
        .cookie-notice .d-flex {
            flex-direction: column;
            text-align: center;
        }
        
        .cookie-notice .btn-accept,
        .cookie-notice .btn-learn {
            margin: 0.5rem 0;
            width: 100%;
        }
    }

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

.hero-section {
    background: linear-gradient(135deg, hsl(236, 53%, 34%) 0%, hsl(236, 53%, 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(236, 53%, 59%, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    max-width: 750px;
    margin: 0 auto;
    text-align: center;
    color: white;
    position: relative;
    z-index: 2;
    padding: 2rem 1rem;
}

.hero-image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 2rem;
    border: 4px solid hsl(236, 53%, 59%);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    animation: float 3s ease-in-out infinite;
}

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

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, white, hsl(236, 53%, 59%));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: hsl(236, 53%, 80%);
    margin-bottom: 2rem;
    font-weight: 300;
}

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

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

.hero-features li {
    padding: 0.75rem 0;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    position: relative;
    padding-left: 2rem;
}

.hero-features li::before {
    content: '\f135';
    font-family: 'Bootstrap Icons';
    position: absolute;
    left: 0;
    color: hsl(236, 53%, 59%);
    font-weight: bold;
}

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

.btn-primary-custom {
    background: linear-gradient(45deg, hsl(236, 53%, 59%), hsl(236, 53%, 45%));
    border: none;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-decoration: none;
    color: white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-primary-custom:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    background: linear-gradient(45deg, hsl(236, 53%, 65%), hsl(236, 53%, 50%));
    color: white;
}

.btn-secondary-custom {
    background: transparent;
    border: 2px solid hsl(236, 53%, 59%);
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-decoration: none;
    color: white;
}

.btn-secondary-custom:hover {
    background: hsl(236, 53%, 59%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    color: white;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-primary-custom,
    .btn-secondary-custom {
        width: 100%;
        max-width: 300px;
    }
}

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

.testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="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); }
    50% { transform: translateY(-20px); }
}

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

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

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

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

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    border-color: hsl(236, 53%, 59%);
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 4rem;
    color: hsl(236, 53%, 59%);
    font-family: serif;
    line-height: 1;
}

.testimonial-text {
    color: hsl(236, 53%, 19%);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
    font-style: italic;
    margin-top: 20px;
}

.testimonial-author {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 2px solid hsl(236, 53%, 89%);
    padding-top: 15px;
}

.author-info h5 {
    color: hsl(236, 53%, 34%);
    font-weight: 600;
    margin: 0;
    font-size: 1.1rem;
}

.author-info p {
    color: hsl(236, 53%, 59%);
    margin: 0;
    font-size: 0.9rem;
}

.rating {
    display: flex;
    gap: 2px;
}

.star {
    color: #ffd700;
    font-size: 1.2rem;
}

.testimonial-card.large {
    grid-column: span 2;
}

.testimonial-card.medium {
    grid-row: span 1;
}

@media (max-width: 768px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .testimonial-card.large {
        grid-column: span 1;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
}

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

.statistics-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="1" fill="rgba(255,255,255,0.03)"/><circle cx="80" cy="40" r="1" fill="rgba(255,255,255,0.02)"/><circle cx="40" cy="80" r="1" fill="rgba(255,255,255,0.03)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.1;
}

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

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

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

.section-subtitle {
    font-size: 1.2rem;
    color: hsl(236, 53%, 89%);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

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

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

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

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

.stat-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.12);
    border-color: hsl(236, 53%, 59%);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

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

.stat-card:hover .stat-icon {
    transform: scale(1.1);
    color: hsl(236, 53%, 79%);
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 15px;
    display: block;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
}

.stat-card:hover .stat-number {
    transform: scale(1.05);
}

.stat-label {
    font-size: 1.1rem;
    color: hsl(236, 53%, 89%);
    font-weight: 500;
    line-height: 1.4;
    margin-bottom: 10px;
}

.stat-description {
    font-size: 0.9rem;
    color: hsl(236, 53%, 79%);
    line-height: 1.5;
    opacity: 0.8;
}

@media (max-width: 768px) {
    .statistics-section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .stat-card {
        padding: 30px 20px;
    }
    
    .stat-number {
        font-size: 2.8rem;
    }
    
    .stat-icon {
        font-size: 2.5rem;
    }
}

@media (max-width: 576px) {
    .section-title {
        font-size: 1.8rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .stat-number {
        font-size: 2.4rem;
    }
}

.about-section {
    background: linear-gradient(135deg, hsl(236, 53%, 19%) 0%, hsl(236, 53%, 34%) 100%);
    padding: 80px 0;
    color: white;
    position: relative;
    overflow: hidden;
}

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

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

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

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

.about-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: hsl(236, 53%, 59%);
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    position: relative;
}

.about-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: hsl(236, 53%, 59%);
    border-radius: 2px;
}

.about-subtitle {
    font-size: 1.3rem;
    color: rgba(255,255,255,0.8);
    font-weight: 300;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.content-row {
    display: flex;
    align-items: center;
    margin-bottom: 80px;
    gap: 40px;
}

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

.content-text {
    flex: 1;
    padding: 0 20px;
}

.content-image {
    flex: 0 0 400px;
    position: relative;
}

.content-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.3);
    transition: transform 0.3s ease;
}

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

.content-image::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: linear-gradient(45deg, hsl(236, 53%, 59%), hsl(236, 53%, 34%));
    border-radius: 20px;
    z-index: -1;
    opacity: 0.7;
}

.section-title {
    font-size: 2.2rem;
    color: hsl(236, 53%, 59%);
    margin-bottom: 25px;
    font-weight: 600;
    position: relative;
    padding-left: 20px;
}

.section-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 30px;
    background: hsl(236, 53%, 59%);
    border-radius: 2px;
}

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

.highlight-text {
    color: hsl(236, 53%, 59%);
    font-weight: 600;
}

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

.value-card {
    background: rgba(255,255,255,0.05);
    padding: 30px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.value-title {
    font-size: 1.4rem;
    color: hsl(236, 53%, 59%);
    margin-bottom: 15px;
    font-weight: 600;
}

.value-description {
    color: rgba(255,255,255,0.8);
    line-height: 1.6;
}

@media (max-width: 768px) {
    .about-title {
        font-size: 2.5rem;
    }
    
    .content-row {
        flex-direction: column !important;
        text-align: center;
    }
    
    .content-image {
        flex: none;
        max-width: 100%;
    }
    
    .content-text {
        padding: 0;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
}

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

.faq-title {
    color: hsl(236, 53%, 59%);
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.faq-subtitle {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 60px;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.faq-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
    border-color: hsl(236, 53%, 59%);
}

.faq-question {
    font-size: 1.3rem;
    font-weight: 600;
    color: hsl(236, 53%, 59%);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.faq-question::before {
    content: "🎸";
    margin-right: 15px;
    font-size: 1.5rem;
}

.faq-answer {
    font-size: 1.1rem;
    line-height: 1.7;
    opacity: 0.95;
    padding-left: 40px;
}

.faq-highlight {
    color: hsl(236, 53%, 59%);
    font-weight: 600;
}

@media (max-width: 768px) {
    .faq-title {
        font-size: 2.2rem;
    }
    
    .faq-card {
        padding: 20px;
    }
    
    .faq-question {
        font-size: 1.1rem;
    }
    
    .faq-answer {
        font-size: 1rem;
        padding-left: 30px;
    }
}

.services-section {
    background: linear-gradient(135deg, hsl(236, 53%, 19%) 0%, hsl(236, 53%, 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;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.services-header p {
    font-size: 1.2rem;
    color: hsl(236, 53%, 79%);
    max-width: 600px;
    margin: 0 auto;
}

.nav-tabs {
    border-bottom: 2px solid hsl(236, 53%, 59%);
    margin-bottom: 40px;
    justify-content: center;
}

.nav-tabs .nav-link {
    background: transparent;
    border: 2px solid hsl(236, 53%, 59%);
    color: hsl(236, 53%, 79%);
    font-weight: 600;
    margin: 0 10px;
    border-radius: 25px;
    padding: 12px 30px;
    transition: all 0.3s ease;
}

.nav-tabs .nav-link:hover {
    background: hsl(236, 53%, 59%);
    color: white;
    transform: translateY(-3px);
}

.nav-tabs .nav-link.active {
    background: hsl(236, 53%, 59%);
    color: white;
    border-color: hsl(236, 53%, 59%);
}

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

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

.service-icon {
    font-size: 3rem;
    color: hsl(236, 53%, 59%);
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

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

.service-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: white;
}

.service-description {
    color: hsl(236, 53%, 79%);
    line-height: 1.6;
    margin-bottom: 20px;
}

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

.service-conditions {
    background: rgba(0, 0, 0, 0.2);
    padding: 15px;
    border-radius: 10px;
    font-size: 0.9rem;
    color: hsl(236, 53%, 89%);
}

.conditions-title {
    font-weight: 600;
    margin-bottom: 10px;
    color: hsl(236, 53%, 59%);
}

@media (max-width: 768px) {
    .services-header h2 {
        font-size: 2rem;
    }
    
    .nav-tabs .nav-link {
        margin: 5px;
        padding: 8px 20px;
    }
    
    .service-card {
        padding: 20px;
    }
}

.advantages-section {
    background: linear-gradient(135deg, hsl(236, 53%, 19%) 0%, hsl(236, 53%, 34%) 100%);
    padding: 80px 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="1" fill="rgba(255,255,255,0.03)"/><circle cx="40" cy="80" r="1" fill="rgba(255,255,255,0.04)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.section-title {
    color: white;
    font-size: 3.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
}

.section-subtitle {
    color: hsl(236, 53%, 59%);
    font-size: 1.3rem;
    text-align: center;
    margin-bottom: 4rem;
    font-weight: 300;
    position: relative;
    z-index: 2;
}

.advantage-card {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    margin-bottom: 2rem;
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.advantage-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, transparent 0%, rgba(255, 255, 255, 0.05) 50%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.advantage-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.12);
    border-color: hsl(236, 53%, 59%);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 30px rgba(147, 147, 255, 0.2);
}

.advantage-card:hover::before {
    opacity: 1;
}

.advantage-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, hsl(236, 53%, 59%) 0%, hsl(236, 53%, 44%) 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: white;
    transition: all 0.4s ease;
    position: relative;
    z-index: 2;
}

.advantage-card:hover .advantage-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 25px rgba(147, 147, 255, 0.4);
}

.advantage-content {
    flex: 1;
    position: relative;
    z-index: 2;
}

.advantage-title {
    color: white;
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
    line-height: 1.3;
}

.advantage-description {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2.5rem;
    }
    
    .advantage-card {
        padding: 2rem 1.5rem;
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
    
    .advantage-icon {
        margin-bottom: 1rem;
    }
}

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

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, hsl(236, 53%, 59%) 0%, transparent 50%);
    opacity: 0.1;
}

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

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

.contact-info p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: rgba(255,255,255,0.9);
}

.working-hours {
    background: rgba(255,255,255,0.1);
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid hsl(236, 53%, 59%);
    margin-top: 2rem;
}

.working-hours h4 {
    color: hsl(236, 53%, 59%);
    margin-bottom: 1rem;
    font-weight: 600;
}

.contact-form {
    background: rgba(255,255,255,0.95);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
    backdrop-filter: blur(10px);
}

.contact-form h3 {
    color: hsl(236, 53%, 34%);
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-align: center;
}

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

.form-label {
    color: hsl(236, 53%, 34%);
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: block;
    font-size: 0.95rem;
}

.form-control {
    border: 2px solid hsl(236, 53%, 80%);
    border-radius: 8px;
    padding: 12px 15px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
    color: hsl(236, 53%, 34%);
}

.form-control:focus {
    border-color: hsl(236, 53%, 59%);
    box-shadow: 0 0 0 0.2rem rgba(93, 93, 150, 0.25);
    outline: none;
    background: white;
    color: hsl(236, 53%, 34%);
}

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

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

.submit-btn {
    background: linear-gradient(135deg, hsl(236, 53%, 59%) 0%, hsl(236, 53%, 45%) 100%);
    color: white;
    border: none;
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 5px 15px rgba(93, 93, 150, 0.3);
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(93, 93, 150, 0.4);
    background: linear-gradient(135deg, hsl(236, 53%, 65%) 0%, hsl(236, 53%, 50%) 100%);
}

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

@media (max-width: 768px) {
    .contact-section {
        padding: 60px 0;
    }
    
    .contact-info h2 {
        font-size: 2.2rem;
    }
    
    .contact-form {
        padding: 2rem;
        margin-top: 3rem;
    }
}

.newsletter-section {
    background: linear-gradient(135deg, hsl(236, 53%, 34%) 0%, hsl(236, 53%, 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 infinite linear;
}

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

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

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

.newsletter-subtitle {
    color: rgba(255,255,255,0.9);
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

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

.benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.benefit-icon {
    font-size: 2.5rem;
    color: hsl(236, 53%, 59%);
    margin-bottom: 1rem;
}

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

.benefit-text {
    color: rgba(255,255,255,0.8);
    font-size: 0.9rem;
    line-height: 1.5;
}

.newsletter-form {
    max-width: 500px;
    margin: 0 auto;
    background: rgba(255,255,255,0.15);
    padding: 2rem;
    border-radius: 20px;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255,255,255,0.3);
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

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

.form-control {
    background: rgba(255,255,255,0.9);
    border: 2px solid transparent;
    border-radius: 12px;
    padding: 15px 20px;
    font-size: 1rem;
    width: 100%;
    transition: all 0.3s ease;
    color: hsl(236, 53%, 19%);
}

.form-control:focus {
    outline: none;
    border-color: hsl(236, 53%, 59%);
    background: white;
    box-shadow: 0 0 20px rgba(133, 133, 255, 0.3);
    transform: translateY(-2px);
}

.form-control::placeholder {
    color: hsl(236, 53%, 34%);
    opacity: 0.7;
}

.subscribe-btn {
    background: linear-gradient(45deg, hsl(236, 53%, 59%) 0%, hsl(236, 53%, 49%) 100%);
    color: white;
    border: none;
    padding: 15px 40px;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    width: 100%;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

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

.subscribe-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(133, 133, 255, 0.4);
    background: linear-gradient(45deg, hsl(236, 53%, 69%) 0%, hsl(236, 53%, 59%) 100%);
}

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

.privacy-text {
    color: rgba(255,255,255,0.7);
    font-size: 0.8rem;
    text-align: center;
    margin-top: 1rem;
    line-height: 1.4;
}

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

footer {
        background: linear-gradient(135deg, hsl(236, 53%, 19%) 0%, hsl(236, 53%, 34%) 100%);
        color: #ffffff;
        padding: 3rem 0 1rem;
        margin-top: 4rem;
    }
    
    footer h5 {
        color: hsl(236, 53%, 59%);
        font-weight: 600;
        margin-bottom: 1.5rem;
        position: relative;
    }
    
    footer h5::after {
        content: '';
        position: absolute;
        bottom: -8px;
        left: 0;
        width: 40px;
        height: 2px;
        background: hsl(236, 53%, 59%);
    }
    
    footer p {
        color: rgba(255, 255, 255, 0.85);
        line-height: 1.6;
    }
    
    footer a {
        color: rgba(255, 255, 255, 0.8);
        text-decoration: none;
        transition: all 0.3s ease;
        display: inline-block;
        margin-bottom: 0.5rem;
    }
    
    footer a:hover {
        color: hsl(236, 53%, 59%);
        transform: translateX(5px);
    }
    
    .footer-contact i {
        color: hsl(236, 53%, 59%);
        margin-right: 10px;
        width: 20px;
    }
    
    .footer-bottom {
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        margin-top: 2rem;
        padding-top: 1.5rem;
        text-align: center;
        color: rgba(255, 255, 255, 0.6);
    }
    
    .cookie-notice {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        background: linear-gradient(135deg, hsl(236, 53%, 19%) 0%, hsl(236, 53%, 34%) 100%);
        color: white;
        padding: 1.5rem 0;
        box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
        z-index: 9999;
        transform: translateY(100%);
        transition: transform 0.4s ease-in-out;
        border-top: 3px solid hsl(236, 53%, 59%);
    }
    
    .cookie-notice.show {
        transform: translateY(0);
    }
    
    .cookie-notice .btn-accept {
        background: hsl(236, 53%, 59%);
        border: none;
        color: white;
        padding: 0.75rem 2rem;
        border-radius: 50px;
        font-weight: 600;
        transition: all 0.3s ease;
        margin-right: 1rem;
    }
    
    .cookie-notice .btn-accept:hover {
        background: hsl(236, 53%, 49%);
        transform: translateY(-2px);
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    }
    
    .cookie-notice .btn-learn {
        background: transparent;
        border: 2px solid hsl(236, 53%, 59%);
        color: hsl(236, 53%, 59%);
        padding: 0.75rem 2rem;
        border-radius: 50px;
        font-weight: 600;
        transition: all 0.3s ease;
        text-decoration: none;
        display: inline-block;
    }
    
    .cookie-notice .btn-learn:hover {
        background: hsl(236, 53%, 59%);
        color: white;
        transform: translateY(-2px);
    }
    
    @media (max-width: 768px) {
        .cookie-notice .d-flex {
            flex-direction: column;
            text-align: center;
        }
        
        .cookie-notice .btn-accept,
        .cookie-notice .btn-learn {
            margin: 0.5rem 0;
            width: 100%;
        }
    }