:root {
            --primary-color: hsl(226, 68%, 45%);
            --secondary-color: hsl(226, 68%, 30%);
            --accent-color: hsl(226, 68%, 70%);
        }
        
        body {
            font-family: 'Poppins', sans-serif;
        }
        
        .navbar-brand {
            font-weight: 700;
            color: var(--primary-color);
            transition: color 0.3s ease;
        }
        
        .navbar-brand:hover {
            color: var(--secondary-color);
        }
        
        .nav-link {
            color: #333;
            font-weight: 500;
            position: relative;
            transition: color 0.3s ease;
        }
        
        .nav-link:hover {
            color: var(--primary-color);
        }
        
        .nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0;
            left: 0;
            background-color: var(--primary-color);
            transition: width 0.3s ease;
        }
        
        .nav-link:hover::after {
            width: 100%;
        }
        
        .navbar-toggler {
            border: none;
            outline: none;
        }
        
        .navbar-toggler:focus {
            box-shadow: none;
        }
        
        .navbar {
            padding: 15px 0;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
        }

.about-section {
        padding: 80px 0;
        background-color: #f8f9fc;
        font-family: 'Poppins', sans-serif;
    }
    
    .about-heading {
        color: hsl(226, 68%, 45%);
        font-weight: 700;
        margin-bottom: 30px;
        position: relative;
    }
    
    .about-heading:after {
        content: '';
        position: absolute;
        bottom: -10px;
        left: 0;
        width: 80px;
        height: 3px;
        background-color: hsl(226, 68%, 70%);
    }
    
    .about-subheading {
        color: hsl(226, 68%, 30%);
        font-weight: 600;
        margin-top: 30px;
        margin-bottom: 20px;
    }
    
    .about-text {
        color: #333;
        line-height: 1.8;
        margin-bottom: 20px;
    }
    
    .about-image {
        border-radius: 10px;
        box-shadow: 0 8px 20px rgba(0,0,0,0.1);
        transition: transform 0.3s ease;
        max-width: 100%;
        height: auto;
    }
    
    .about-image:hover {
        transform: translateY(-5px);
    }
    
    .timeline {
        position: relative;
        padding: 40px 0;
    }
    
    .timeline:before {
        content: '';
        position: absolute;
        height: 100%;
        width: 3px;
        background: hsl(226, 68%, 45%);
        left: 50%;
        transform: translateX(-50%);
    }
    
    .timeline-item {
        position: relative;
        margin-bottom: 40px;
    }
    
    .timeline-content {
        position: relative;
        width: 45%;
        padding: 20px;
        background: white;
        border-radius: 8px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    }
    
    .timeline-content h4 {
        color: hsl(226, 68%, 45%);
        margin-bottom: 10px;
    }
    
    .timeline-item:nth-child(odd) .timeline-content {
        left: 55%;
    }
    
    .timeline-item:nth-child(even) .timeline-content {
        left: 0;
    }
    
    .timeline-marker {
        position: absolute;
        width: 20px;
        height: 20px;
        background: hsl(226, 68%, 70%);
        border-radius: 50%;
        left: 50%;
        top: 20px;
        transform: translateX(-50%);
        z-index: 10;
    }
    
    .values-card {
        background: white;
        border-radius: 10px;
        padding: 25px;
        margin-bottom: 20px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        transition: all 0.3s ease;
        border-left: 4px solid hsl(226, 68%, 45%);
    }
    
    .values-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    }
    
    .values-card h4 {
        color: hsl(226, 68%, 45%);
        margin-bottom: 15px;
    }
    
    @media (max-width: 768px) {
        .timeline:before {
            left: 30px;
        }
        
        .timeline-content {
            width: calc(100% - 60px);
            left: 60px !important;
        }
        
        .timeline-marker {
            left: 30px;
        }
    }

.advantages-section {
        padding: 80px 0;
        background-color: #f8f9fa;
    }
    
    .advantages-section .section-title {
        color: hsl(226, 68%, 45%);
        margin-bottom: 50px;
        font-weight: 700;
    }
    
    .advantages-section .section-subtitle {
        color: hsl(226, 68%, 30%);
        margin-bottom: 40px;
        font-size: 1.2rem;
    }
    
    .advantage-card {
        background-color: white;
        border-radius: 10px;
        padding: 30px;
        margin-bottom: 30px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        height: 100%;
        transition: all 0.3s ease;
        border-bottom: 4px solid transparent;
    }
    
    .advantage-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        border-bottom: 4px solid hsl(226, 68%, 70%);
    }
    
    .advantage-icon {
        font-size: 2.5rem;
        color: hsl(226, 68%, 45%);
        margin-bottom: 20px;
    }
    
    .advantage-title {
        font-weight: 600;
        margin-bottom: 15px;
        color: hsl(226, 68%, 30%);
    }
    
    .advantage-description {
        color: #6c757d;
        font-size: 0.95rem;
        line-height: 1.6;
    }

.statistics-section {
    padding: 80px 0;
    background-color: #f8f9fc;
}

.statistics-section h2 {
    color: hsl(226, 68%, 45%);
    margin-bottom: 50px;
    text-align: center;
    font-weight: 700;
}

.stat-card {
    padding: 25px;
    border-radius: 10px;
    transition: all 0.3s ease;
    margin-bottom: 30px;
    background-color: white;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    height: 100%;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.stat-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: hsl(226, 68%, 70%);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: hsl(226, 68%, 45%);
    margin-bottom: 10px;
    line-height: 1;
}

.stat-title {
    font-size: 1.2rem;
    color: hsl(226, 68%, 30%);
    margin-bottom: 10px;
    font-weight: 600;
}

.stat-description {
    color: #6c757d;
    font-size: 0.95rem;
}

.progress-bar {
    background-color: hsl(226, 68%, 45%);
}

.progress {
    height: 8px;
    margin-bottom: 15px;
    background-color: #e9ecef;
}

.progress-title {
    font-weight: 600;
    margin-bottom: 5px;
    color: hsl(226, 68%, 30%);
}

.progress-value {
    font-weight: 600;
    color: hsl(226, 68%, 45%);
}

@media (max-width: 768px) {
    .statistics-section {
        padding: 50px 0;
    }
    
    .stat-card {
        margin-bottom: 20px;
    }
}

:root {
        --primary-color: hsl(226, 68%, 45%);
        --secondary-color: hsl(226, 68%, 30%);
        --accent-color: hsl(226, 68%, 70%);
    }

    footer {
        background-color: var(--secondary-color);
        color: white;
        padding: 3rem 0;
        margin-top: 2rem;
    }

    footer h5 {
        font-weight: 600;
        margin-bottom: 1.5rem;
        color: white;
    }

    footer p {
        line-height: 1.6;
    }

    footer a {
        color: var(--accent-color);
        text-decoration: none;
        transition: all 0.3s ease;
    }

    footer a:hover {
        color: white;
        text-decoration: underline;
    }

    footer .nav-link {
        padding-left: 0;
        padding-right: 0;
        margin-bottom: 0.5rem;
    }

    footer .copyright {
        margin-top: 2rem;
        padding-top: 1.5rem;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .cookie-notice {
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        background-color: var(--secondary-color);
        color: white;
        padding: 1rem 0;
        box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.1);
        z-index: 1000;
        display: none;
    }

    .cookie-notice.show {
        display: block;
    }

    .cookie-notice p {
        margin-bottom: 0;
    }

    .cookie-btn {
        background-color: var(--accent-color);
        color: white;
        border: none;
        padding: 0.5rem 1.25rem;
        border-radius: 4px;
        font-weight: 500;
        transition: all 0.3s ease;
    }

    .cookie-btn:hover {
        background-color: var(--primary-color);
        transform: translateY(-2px);
    }

    .cookie-btn.outline {
        background-color: transparent;
        border: 1px solid var(--accent-color);
    }

    .cookie-btn.outline:hover {
        background-color: var(--accent-color);
        color: white;
    }

    @media (max-width: 768px) {
        .cookie-notice .d-flex {
            flex-direction: column;
            gap: 1rem;
        }
    }

:root {
            --primary-color: hsl(226, 68%, 45%);
            --secondary-color: hsl(226, 68%, 30%);
            --accent-color: hsl(226, 68%, 70%);
        }
        
        body {
            font-family: 'Poppins', sans-serif;
        }
        
        .navbar-brand {
            font-weight: 700;
            color: var(--primary-color);
            transition: color 0.3s ease;
        }
        
        .navbar-brand:hover {
            color: var(--secondary-color);
        }
        
        .nav-link {
            color: #333;
            font-weight: 500;
            position: relative;
            transition: color 0.3s ease;
        }
        
        .nav-link:hover {
            color: var(--primary-color);
        }
        
        .nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0;
            left: 0;
            background-color: var(--primary-color);
            transition: width 0.3s ease;
        }
        
        .nav-link:hover::after {
            width: 100%;
        }
        
        .navbar-toggler {
            border: none;
            outline: none;
        }
        
        .navbar-toggler:focus {
            box-shadow: none;
        }
        
        .navbar {
            padding: 15px 0;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
        }

.privacy-container {
        max-width: 1200px;
        margin: 0 auto;
        font-family: 'Arial', sans-serif;
        line-height: 1.6;
        color: #333;
        padding: 20px;
    }
    .privacy-heading {
        color: #1a5276;
        border-bottom: 2px solid #3498db;
        padding-bottom: 10px;
        margin-top: 30px;
    }
    .privacy-subheading {
        color: #2874a6;
        margin-top: 20px;
    }
    .privacy-text {
        margin-bottom: 15px;
        text-align: justify;
    }
    .privacy-list {
        margin-left: 20px;
        margin-bottom: 15px;
    }
    .privacy-list li {
        margin-bottom: 8px;
    }
    .privacy-emphasis {
        font-weight: bold;
        color: #2874a6;
    }
    .privacy-date {
        font-style: italic;
        margin-top: 30px;
        text-align: right;
    }
    .privacy-divider {
        height: 1px;
        background-color: #e0e0e0;
        margin: 25px 0;
    }

:root {
        --primary-color: hsl(226, 68%, 45%);
        --secondary-color: hsl(226, 68%, 30%);
        --accent-color: hsl(226, 68%, 70%);
    }

    footer {
        background-color: var(--secondary-color);
        color: white;
        padding: 3rem 0;
        margin-top: 2rem;
    }

    footer h5 {
        font-weight: 600;
        margin-bottom: 1.5rem;
        color: white;
    }

    footer p {
        line-height: 1.6;
    }

    footer a {
        color: var(--accent-color);
        text-decoration: none;
        transition: all 0.3s ease;
    }

    footer a:hover {
        color: white;
        text-decoration: underline;
    }

    footer .nav-link {
        padding-left: 0;
        padding-right: 0;
        margin-bottom: 0.5rem;
    }

    footer .copyright {
        margin-top: 2rem;
        padding-top: 1.5rem;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .cookie-notice {
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        background-color: var(--secondary-color);
        color: white;
        padding: 1rem 0;
        box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.1);
        z-index: 1000;
        display: none;
    }

    .cookie-notice.show {
        display: block;
    }

    .cookie-notice p {
        margin-bottom: 0;
    }

    .cookie-btn {
        background-color: var(--accent-color);
        color: white;
        border: none;
        padding: 0.5rem 1.25rem;
        border-radius: 4px;
        font-weight: 500;
        transition: all 0.3s ease;
    }

    .cookie-btn:hover {
        background-color: var(--primary-color);
        transform: translateY(-2px);
    }

    .cookie-btn.outline {
        background-color: transparent;
        border: 1px solid var(--accent-color);
    }

    .cookie-btn.outline:hover {
        background-color: var(--accent-color);
        color: white;
    }

    @media (max-width: 768px) {
        .cookie-notice .d-flex {
            flex-direction: column;
            gap: 1rem;
        }
    }

:root {
            --primary-color: hsl(226, 68%, 45%);
            --secondary-color: hsl(226, 68%, 30%);
            --accent-color: hsl(226, 68%, 70%);
        }
        
        body {
            font-family: 'Poppins', sans-serif;
        }
        
        .navbar-brand {
            font-weight: 700;
            color: var(--primary-color);
            transition: color 0.3s ease;
        }
        
        .navbar-brand:hover {
            color: var(--secondary-color);
        }
        
        .nav-link {
            color: #333;
            font-weight: 500;
            position: relative;
            transition: color 0.3s ease;
        }
        
        .nav-link:hover {
            color: var(--primary-color);
        }
        
        .nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0;
            left: 0;
            background-color: var(--primary-color);
            transition: width 0.3s ease;
        }
        
        .nav-link:hover::after {
            width: 100%;
        }
        
        .navbar-toggler {
            border: none;
            outline: none;
        }
        
        .navbar-toggler:focus {
            box-shadow: none;
        }
        
        .navbar {
            padding: 15px 0;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
        }

.cookies-policy {
        max-width: 1100px;
        margin: 0 auto;
        padding: 20px;
        font-family: 'Arial', sans-serif;
        color: #333;
        line-height: 1.6;
    }
    .cookies-policy h1 {
        color: #1a5276;
        font-size: 32px;
        margin-bottom: 20px;
        text-align: center;
        border-bottom: 2px solid #1a5276;
        padding-bottom: 10px;
    }
    .cookies-policy h2 {
        color: #2874a6;
        font-size: 24px;
        margin-top: 30px;
        margin-bottom: 15px;
        padding-bottom: 8px;
        border-bottom: 1px solid #eee;
    }
    .cookies-policy p {
        margin-bottom: 15px;
        text-align: justify;
    }
    .cookies-policy ul, .cookies-policy ol {
        margin-bottom: 15px;
        margin-left: 20px;
    }
    .cookies-policy li {
        margin-bottom: 8px;
    }
    .cookies-policy .highlight {
        background-color: #f8f9fa;
        padding: 15px;
        border-left: 4px solid #2874a6;
        margin-bottom: 20px;
    }
    .cookies-policy .table-container {
        overflow-x: auto;
        margin-bottom: 20px;
    }
    .cookies-policy table {
        width: 100%;
        border-collapse: collapse;
        margin-bottom: 15px;
    }
    .cookies-policy th, .cookies-policy td {
        border: 1px solid #ddd;
        padding: 10px;
        text-align: left;
    }
    .cookies-policy th {
        background-color: #f2f2f2;
        font-weight: bold;
    }
    .cookies-policy tr:nth-child(even) {
        background-color: #f9f9f9;
    }

:root {
        --primary-color: hsl(226, 68%, 45%);
        --secondary-color: hsl(226, 68%, 30%);
        --accent-color: hsl(226, 68%, 70%);
    }

    footer {
        background-color: var(--secondary-color);
        color: white;
        padding: 3rem 0;
        margin-top: 2rem;
    }

    footer h5 {
        font-weight: 600;
        margin-bottom: 1.5rem;
        color: white;
    }

    footer p {
        line-height: 1.6;
    }

    footer a {
        color: var(--accent-color);
        text-decoration: none;
        transition: all 0.3s ease;
    }

    footer a:hover {
        color: white;
        text-decoration: underline;
    }

    footer .nav-link {
        padding-left: 0;
        padding-right: 0;
        margin-bottom: 0.5rem;
    }

    footer .copyright {
        margin-top: 2rem;
        padding-top: 1.5rem;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .cookie-notice {
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        background-color: var(--secondary-color);
        color: white;
        padding: 1rem 0;
        box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.1);
        z-index: 1000;
        display: none;
    }

    .cookie-notice.show {
        display: block;
    }

    .cookie-notice p {
        margin-bottom: 0;
    }

    .cookie-btn {
        background-color: var(--accent-color);
        color: white;
        border: none;
        padding: 0.5rem 1.25rem;
        border-radius: 4px;
        font-weight: 500;
        transition: all 0.3s ease;
    }

    .cookie-btn:hover {
        background-color: var(--primary-color);
        transform: translateY(-2px);
    }

    .cookie-btn.outline {
        background-color: transparent;
        border: 1px solid var(--accent-color);
    }

    .cookie-btn.outline:hover {
        background-color: var(--accent-color);
        color: white;
    }

    @media (max-width: 768px) {
        .cookie-notice .d-flex {
            flex-direction: column;
            gap: 1rem;
        }
    }

:root {
            --primary-color: hsl(226, 68%, 45%);
            --secondary-color: hsl(226, 68%, 30%);
            --accent-color: hsl(226, 68%, 70%);
        }
        
        body {
            font-family: 'Poppins', sans-serif;
        }
        
        .navbar-brand {
            font-weight: 700;
            color: var(--primary-color);
            transition: color 0.3s ease;
        }
        
        .navbar-brand:hover {
            color: var(--secondary-color);
        }
        
        .nav-link {
            color: #333;
            font-weight: 500;
            position: relative;
            transition: color 0.3s ease;
        }
        
        .nav-link:hover {
            color: var(--primary-color);
        }
        
        .nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0;
            left: 0;
            background-color: var(--primary-color);
            transition: width 0.3s ease;
        }
        
        .nav-link:hover::after {
            width: 100%;
        }
        
        .navbar-toggler {
            border: none;
            outline: none;
        }
        
        .navbar-toggler:focus {
            box-shadow: none;
        }
        
        .navbar {
            padding: 15px 0;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
        }

.contact-section {
        padding: 80px 0;
        background-color: #f9f9ff;
    }
    
    .contact-heading {
        color: hsl(226, 68%, 30%);
        font-weight: 700;
        margin-bottom: 30px;
        position: relative;
    }
    
    .contact-heading:after {
        content: '';
        position: absolute;
        bottom: -10px;
        left: 0;
        width: 80px;
        height: 3px;
        background-color: hsl(226, 68%, 45%);
    }
    
    .contact-subheading {
        color: hsl(226, 68%, 45%);
        margin-bottom: 20px;
        font-weight: 600;
    }
    
    .contact-text {
        color: #555;
        margin-bottom: 25px;
        line-height: 1.6;
    }
    
    .contact-highlight {
        color: hsl(226, 68%, 45%);
        font-weight: 600;
    }
    
    .contact-card {
        background-color: white;
        border-radius: 8px;
        padding: 30px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
        height: 100%;
    }
    
    .contact-form label {
        color: #444;
        font-weight: 500;
        margin-bottom: 5px;
    }
    
    .contact-form .form-control {
        border: 1px solid #ddd;
        border-radius: 4px;
        padding: 12px;
        margin-bottom: 20px;
    }
    
    .contact-form .form-control:focus {
        border-color: hsl(226, 68%, 45%);
        box-shadow: 0 0 0 0.2rem hsla(226, 68%, 45%, 0.2);
    }
    
    .contact-btn {
        background-color: hsl(226, 68%, 45%);
        color: white;
        border: none;
        padding: 12px 25px;
        border-radius: 4px;
        font-weight: 600;
        transition: all 0.3s ease;
        width: 100%;
    }
    
    .contact-btn:hover {
        background-color: hsl(226, 68%, 30%);
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }
    
    .hours-card {
        background-color: hsl(226, 68%, 45%);
        color: white;
        border-radius: 8px;
        padding: 20px;
        margin-top: 30px;
    }
    
    .hours-heading {
        color: white;
        font-size: 1.2rem;
        margin-bottom: 15px;
        font-weight: 600;
    }
    
    .hours-list {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    
    .hours-list li {
        margin-bottom: 8px;
        display: flex;
        justify-content: space-between;
    }
    
    .map-container {
        width: 100%;
        height: 250px;
        border-radius: 8px;
        overflow: hidden;
        margin-bottom: 20px;
        background-color: #eee;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #777;
        font-style: italic;
    }

.about-section {
        padding: 80px 0;
        background-color: #f8f9fc;
        font-family: 'Poppins', sans-serif;
    }
    
    .about-heading {
        color: hsl(226, 68%, 45%);
        font-weight: 700;
        margin-bottom: 30px;
        position: relative;
    }
    
    .about-heading:after {
        content: '';
        position: absolute;
        bottom: -10px;
        left: 0;
        width: 80px;
        height: 3px;
        background-color: hsl(226, 68%, 70%);
    }
    
    .about-subheading {
        color: hsl(226, 68%, 30%);
        font-weight: 600;
        margin-top: 30px;
        margin-bottom: 20px;
    }
    
    .about-text {
        color: #333;
        line-height: 1.8;
        margin-bottom: 20px;
    }
    
    .about-image {
        border-radius: 10px;
        box-shadow: 0 8px 20px rgba(0,0,0,0.1);
        transition: transform 0.3s ease;
        max-width: 100%;
        height: auto;
    }
    
    .about-image:hover {
        transform: translateY(-5px);
    }
    
    .timeline {
        position: relative;
        padding: 40px 0;
    }
    
    .timeline:before {
        content: '';
        position: absolute;
        height: 100%;
        width: 3px;
        background: hsl(226, 68%, 45%);
        left: 50%;
        transform: translateX(-50%);
    }
    
    .timeline-item {
        position: relative;
        margin-bottom: 40px;
    }
    
    .timeline-content {
        position: relative;
        width: 45%;
        padding: 20px;
        background: white;
        border-radius: 8px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    }
    
    .timeline-content h4 {
        color: hsl(226, 68%, 45%);
        margin-bottom: 10px;
    }
    
    .timeline-item:nth-child(odd) .timeline-content {
        left: 55%;
    }
    
    .timeline-item:nth-child(even) .timeline-content {
        left: 0;
    }
    
    .timeline-marker {
        position: absolute;
        width: 20px;
        height: 20px;
        background: hsl(226, 68%, 70%);
        border-radius: 50%;
        left: 50%;
        top: 20px;
        transform: translateX(-50%);
        z-index: 10;
    }
    
    .values-card {
        background: white;
        border-radius: 10px;
        padding: 25px;
        margin-bottom: 20px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        transition: all 0.3s ease;
        border-left: 4px solid hsl(226, 68%, 45%);
    }
    
    .values-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    }
    
    .values-card h4 {
        color: hsl(226, 68%, 45%);
        margin-bottom: 15px;
    }
    
    @media (max-width: 768px) {
        .timeline:before {
            left: 30px;
        }
        
        .timeline-content {
            width: calc(100% - 60px);
            left: 60px !important;
        }
        
        .timeline-marker {
            left: 30px;
        }
    }

:root {
        --primary-color: hsl(226, 68%, 45%);
        --secondary-color: hsl(226, 68%, 30%);
        --accent-color: hsl(226, 68%, 70%);
    }

    footer {
        background-color: var(--secondary-color);
        color: white;
        padding: 3rem 0;
        margin-top: 2rem;
    }

    footer h5 {
        font-weight: 600;
        margin-bottom: 1.5rem;
        color: white;
    }

    footer p {
        line-height: 1.6;
    }

    footer a {
        color: var(--accent-color);
        text-decoration: none;
        transition: all 0.3s ease;
    }

    footer a:hover {
        color: white;
        text-decoration: underline;
    }

    footer .nav-link {
        padding-left: 0;
        padding-right: 0;
        margin-bottom: 0.5rem;
    }

    footer .copyright {
        margin-top: 2rem;
        padding-top: 1.5rem;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .cookie-notice {
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        background-color: var(--secondary-color);
        color: white;
        padding: 1rem 0;
        box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.1);
        z-index: 1000;
        display: none;
    }

    .cookie-notice.show {
        display: block;
    }

    .cookie-notice p {
        margin-bottom: 0;
    }

    .cookie-btn {
        background-color: var(--accent-color);
        color: white;
        border: none;
        padding: 0.5rem 1.25rem;
        border-radius: 4px;
        font-weight: 500;
        transition: all 0.3s ease;
    }

    .cookie-btn:hover {
        background-color: var(--primary-color);
        transform: translateY(-2px);
    }

    .cookie-btn.outline {
        background-color: transparent;
        border: 1px solid var(--accent-color);
    }

    .cookie-btn.outline:hover {
        background-color: var(--accent-color);
        color: white;
    }

    @media (max-width: 768px) {
        .cookie-notice .d-flex {
            flex-direction: column;
            gap: 1rem;
        }
    }

:root {
            --primary-color: hsl(226, 68%, 45%);
            --secondary-color: hsl(226, 68%, 30%);
            --accent-color: hsl(226, 68%, 70%);
        }
        
        body {
            font-family: 'Poppins', sans-serif;
        }
        
        .navbar-brand {
            font-weight: 700;
            color: var(--primary-color);
            transition: color 0.3s ease;
        }
        
        .navbar-brand:hover {
            color: var(--secondary-color);
        }
        
        .nav-link {
            color: #333;
            font-weight: 500;
            position: relative;
            transition: color 0.3s ease;
        }
        
        .nav-link:hover {
            color: var(--primary-color);
        }
        
        .nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0;
            left: 0;
            background-color: var(--primary-color);
            transition: width 0.3s ease;
        }
        
        .nav-link:hover::after {
            width: 100%;
        }
        
        .navbar-toggler {
            border: none;
            outline: none;
        }
        
        .navbar-toggler:focus {
            box-shadow: none;
        }
        
        .navbar {
            padding: 15px 0;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
        }

.services-section {
    padding: 80px 0;
    background-color: #f8f9fa;
  }
  
  .services-header {
    text-align: center;
    margin-bottom: 60px;
  }
  
  .services-title {
    color: hsl(226, 68%, 45%);
    font-weight: 700;
    margin-bottom: 20px;
  }
  
  .services-subtitle {
    color: hsl(226, 68%, 30%);
    max-width: 700px;
    margin: 0 auto;
  }
  
  .service-card {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    padding: 30px;
    height: 100%;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid #eee;
  }
  
  .service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border-color: hsl(226, 68%, 70%);
  }
  
  .service-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: hsl(226, 68%, 97%);
    border-radius: 50%;
    margin-bottom: 20px;
  }
  
  .service-icon i {
    font-size: 30px;
    color: hsl(226, 68%, 45%);
  }
  
  .service-title {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
    color: hsl(226, 68%, 30%);
  }
  
  .service-description {
    color: #666;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 20px;
  }
  
  .service-price {
    font-weight: 700;
    color: hsl(226, 68%, 45%);
    font-size: 20px;
    margin-bottom: 15px;
  }
  
  .service-conditions {
    font-size: 13px;
    color: #888;
    font-style: italic;
  }
  
  .service-cta {
    display: inline-block;
    margin-top: 15px;
    color: hsl(226, 68%, 45%);
    font-weight: 600;
    text-decoration: none;
    position: relative;
  }
  
  .service-cta:after {
    content: "";
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -2px;
    left: 0;
    background-color: hsl(226, 68%, 45%);
    transition: width 0.3s ease;
  }
  
  .service-cta:hover:after {
    width: 100%;
  }

.newsletter-section {
    background: linear-gradient(135deg, hsl(226, 68%, 45%) 0%, hsl(226, 68%, 30%) 100%);
    border-radius: 1rem;
    padding: 3rem 2rem;
    color: white;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    margin: 4rem 0;
  }
  
  .newsletter-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
  }
  
  .newsletter-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    font-weight: 300;
    line-height: 1.6;
  }
  
  .newsletter-features {
    margin-bottom: 2.5rem;
  }
  
  .newsletter-features li {
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
  }
  
  .newsletter-features li::before {
    content: "✓";
    margin-right: 10px;
    background: hsl(226, 68%, 70%);
    color: white;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: bold;
  }
  
  .newsletter-form {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 0.75rem;
    backdrop-filter: blur(5px);
  }
  
  .newsletter-form .form-control {
    height: 54px;
    background-color: rgba(255, 255, 255, 0.95);
    border: none;
    font-size: 1.1rem;
    padding-left: 1.25rem;
  }
  
  .newsletter-form .form-control:focus {
    box-shadow: 0 0 0 3px hsl(226, 68%, 70%);
  }
  
  .newsletter-form .btn {
    background-color: hsl(226, 68%, 70%);
    border: none;
    height: 54px;
    font-weight: 600;
    font-size: 1.1rem;
    padding: 0 1.75rem;
    transition: all 0.3s ease;
  }
  
  .newsletter-form .btn:hover {
    background-color: hsl(226, 68%, 60%);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.15);
  }
  
  .privacy-note {
    font-size: 0.85rem;
    opacity: 0.8;
    margin-top: 1rem;
    text-align: center;
  }
  
  @media (max-width: 768px) {
    .newsletter-section {
      padding: 2rem 1.5rem;
    }
    
    .newsletter-title {
      font-size: 2rem;
    }
    
    .newsletter-form .btn {
      width: 100%;
      margin-top: 1rem;
    }
  }

.testimonials-section {
    padding: 5rem 0;
    background-color: #f8f9fa;
}

.testimonials-section h2 {
    color: hsl(226, 68%, 45%);
    text-align: center;
    margin-bottom: 3rem;
    font-weight: 700;
    position: relative;
}

.testimonials-section h2:after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: hsl(226, 68%, 70%);
}

.testimonial-card {
    background-color: white;
    border-radius: 10px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    height: 100%;
    transition: all 0.3s ease;
    border-left: 4px solid hsl(226, 68%, 45%);
}

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

.testimonial-text {
    font-style: italic;
    margin-bottom: 1.5rem;
    color: #555;
    position: relative;
}

.testimonial-text:before {
    content: '"';
    font-size: 3rem;
    color: hsl(226, 68%, 70%);
    position: absolute;
    top: -20px;
    left: -10px;
    opacity: 0.3;
}

.testimonial-author {
    font-weight: 600;
    color: hsl(226, 68%, 30%);
    margin-bottom: 0.2rem;
}

.testimonial-location {
    font-size: 0.9rem;
    color: #777;
}

@media (max-width: 768px) {
    .testimonial-card {
        padding: 1.5rem;
    }
}

:root {
        --primary-color: hsl(226, 68%, 45%);
        --secondary-color: hsl(226, 68%, 30%);
        --accent-color: hsl(226, 68%, 70%);
    }

    footer {
        background-color: var(--secondary-color);
        color: white;
        padding: 3rem 0;
        margin-top: 2rem;
    }

    footer h5 {
        font-weight: 600;
        margin-bottom: 1.5rem;
        color: white;
    }

    footer p {
        line-height: 1.6;
    }

    footer a {
        color: var(--accent-color);
        text-decoration: none;
        transition: all 0.3s ease;
    }

    footer a:hover {
        color: white;
        text-decoration: underline;
    }

    footer .nav-link {
        padding-left: 0;
        padding-right: 0;
        margin-bottom: 0.5rem;
    }

    footer .copyright {
        margin-top: 2rem;
        padding-top: 1.5rem;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .cookie-notice {
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        background-color: var(--secondary-color);
        color: white;
        padding: 1rem 0;
        box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.1);
        z-index: 1000;
        display: none;
    }

    .cookie-notice.show {
        display: block;
    }

    .cookie-notice p {
        margin-bottom: 0;
    }

    .cookie-btn {
        background-color: var(--accent-color);
        color: white;
        border: none;
        padding: 0.5rem 1.25rem;
        border-radius: 4px;
        font-weight: 500;
        transition: all 0.3s ease;
    }

    .cookie-btn:hover {
        background-color: var(--primary-color);
        transform: translateY(-2px);
    }

    .cookie-btn.outline {
        background-color: transparent;
        border: 1px solid var(--accent-color);
    }

    .cookie-btn.outline:hover {
        background-color: var(--accent-color);
        color: white;
    }

    @media (max-width: 768px) {
        .cookie-notice .d-flex {
            flex-direction: column;
            gap: 1rem;
        }
    }

:root {
            --primary-color: hsl(226, 68%, 45%);
            --secondary-color: hsl(226, 68%, 30%);
            --accent-color: hsl(226, 68%, 70%);
        }
        
        body {
            font-family: 'Poppins', sans-serif;
        }
        
        .navbar-brand {
            font-weight: 700;
            color: var(--primary-color);
            transition: color 0.3s ease;
        }
        
        .navbar-brand:hover {
            color: var(--secondary-color);
        }
        
        .nav-link {
            color: #333;
            font-weight: 500;
            position: relative;
            transition: color 0.3s ease;
        }
        
        .nav-link:hover {
            color: var(--primary-color);
        }
        
        .nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0;
            left: 0;
            background-color: var(--primary-color);
            transition: width 0.3s ease;
        }
        
        .nav-link:hover::after {
            width: 100%;
        }
        
        .navbar-toggler {
            border: none;
            outline: none;
        }
        
        .navbar-toggler:focus {
            box-shadow: none;
        }
        
        .navbar {
            padding: 15px 0;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
        }

.terms-container {
        font-family: 'Arial', sans-serif;
        line-height: 1.6;
        color: #333;
        max-width: 1000px;
        margin: 0 auto;
        padding: 20px;
    }
    .terms-container h1 {
        color: #2c3e50;
        border-bottom: 2px solid #3498db;
        padding-bottom: 10px;
        margin-bottom: 30px;
    }
    .terms-container h2 {
        color: #2980b9;
        margin-top: 30px;
        margin-bottom: 15px;
        font-size: 1.5em;
    }
    .terms-container p {
        margin-bottom: 15px;
        text-align: justify;
    }
    .terms-container ul {
        margin-bottom: 20px;
    }
    .terms-container li {
        margin-bottom: 8px;
    }
    .terms-container .effective-date {
        font-style: italic;
        margin-top: 30px;
        color: #7f8c8d;
    }
    .terms-container .section {
        background-color: #f9f9f9;
        padding: 20px;
        border-radius: 5px;
        margin-bottom: 25px;
        border-left: 4px solid #3498db;
    }

:root {
        --primary-color: hsl(226, 68%, 45%);
        --secondary-color: hsl(226, 68%, 30%);
        --accent-color: hsl(226, 68%, 70%);
    }

    footer {
        background-color: var(--secondary-color);
        color: white;
        padding: 3rem 0;
        margin-top: 2rem;
    }

    footer h5 {
        font-weight: 600;
        margin-bottom: 1.5rem;
        color: white;
    }

    footer p {
        line-height: 1.6;
    }

    footer a {
        color: var(--accent-color);
        text-decoration: none;
        transition: all 0.3s ease;
    }

    footer a:hover {
        color: white;
        text-decoration: underline;
    }

    footer .nav-link {
        padding-left: 0;
        padding-right: 0;
        margin-bottom: 0.5rem;
    }

    footer .copyright {
        margin-top: 2rem;
        padding-top: 1.5rem;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .cookie-notice {
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        background-color: var(--secondary-color);
        color: white;
        padding: 1rem 0;
        box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.1);
        z-index: 1000;
        display: none;
    }

    .cookie-notice.show {
        display: block;
    }

    .cookie-notice p {
        margin-bottom: 0;
    }

    .cookie-btn {
        background-color: var(--accent-color);
        color: white;
        border: none;
        padding: 0.5rem 1.25rem;
        border-radius: 4px;
        font-weight: 500;
        transition: all 0.3s ease;
    }

    .cookie-btn:hover {
        background-color: var(--primary-color);
        transform: translateY(-2px);
    }

    .cookie-btn.outline {
        background-color: transparent;
        border: 1px solid var(--accent-color);
    }

    .cookie-btn.outline:hover {
        background-color: var(--accent-color);
        color: white;
    }

    @media (max-width: 768px) {
        .cookie-notice .d-flex {
            flex-direction: column;
            gap: 1rem;
        }
    }

:root {
            --primary-color: hsl(226, 68%, 45%);
            --secondary-color: hsl(226, 68%, 30%);
            --accent-color: hsl(226, 68%, 70%);
        }
        
        body {
            font-family: 'Poppins', sans-serif;
        }
        
        .navbar-brand {
            font-weight: 700;
            color: var(--primary-color);
            transition: color 0.3s ease;
        }
        
        .navbar-brand:hover {
            color: var(--secondary-color);
        }
        
        .nav-link {
            color: #333;
            font-weight: 500;
            position: relative;
            transition: color 0.3s ease;
        }
        
        .nav-link:hover {
            color: var(--primary-color);
        }
        
        .nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0;
            left: 0;
            background-color: var(--primary-color);
            transition: width 0.3s ease;
        }
        
        .nav-link:hover::after {
            width: 100%;
        }
        
        .navbar-toggler {
            border: none;
            outline: none;
        }
        
        .navbar-toggler:focus {
            box-shadow: none;
        }
        
        .navbar {
            padding: 15px 0;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
        }

.faq-section {
        padding: 80px 0;
        background-color: #f8f9fa;
    }
    
    .faq-header {
        text-align: center;
        margin-bottom: 50px;
    }
    
    .faq-header h2 {
        color: hsl(226, 68%, 45%);
        font-weight: 700;
        margin-bottom: 15px;
        position: relative;
        display: inline-block;
    }
    
    .faq-header h2:after {
        content: "";
        position: absolute;
        width: 70px;
        height: 3px;
        background-color: hsl(226, 68%, 70%);
        bottom: -10px;
        left: 50%;
        transform: translateX(-50%);
    }
    
    .faq-header p {
        color: #666;
        font-size: 1.1rem;
        max-width: 700px;
        margin: 0 auto;
    }
    
    .accordion-button:not(.collapsed) {
        background-color: hsl(226, 68%, 95%);
        color: hsl(226, 68%, 45%);
        box-shadow: none;
    }
    
    .accordion-button:focus {
        box-shadow: none;
        border-color: hsl(226, 68%, 70%);
    }
    
    .accordion-item {
        border-radius: 8px;
        overflow: hidden;
        margin-bottom: 15px;
        border: 1px solid rgba(0,0,0,.125);
    }
    
    .accordion-button::after {
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%233949ab'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    }
    
    .accordion-body {
        padding: 20px;
        line-height: 1.6;
    }
    
    .faq-divider {
        width: 100%;
        height: 1px;
        background: linear-gradient(to right, transparent, hsl(226, 68%, 70%), transparent);
        margin: 30px 0;
    }

.about-section {
        padding: 80px 0;
        background-color: #f8f9fc;
        font-family: 'Poppins', sans-serif;
    }
    
    .about-heading {
        color: hsl(226, 68%, 45%);
        font-weight: 700;
        margin-bottom: 30px;
        position: relative;
    }
    
    .about-heading:after {
        content: '';
        position: absolute;
        bottom: -10px;
        left: 0;
        width: 80px;
        height: 3px;
        background-color: hsl(226, 68%, 70%);
    }
    
    .about-subheading {
        color: hsl(226, 68%, 30%);
        font-weight: 600;
        margin-top: 30px;
        margin-bottom: 20px;
    }
    
    .about-text {
        color: #333;
        line-height: 1.8;
        margin-bottom: 20px;
    }
    
    .about-image {
        border-radius: 10px;
        box-shadow: 0 8px 20px rgba(0,0,0,0.1);
        transition: transform 0.3s ease;
        max-width: 100%;
        height: auto;
    }
    
    .about-image:hover {
        transform: translateY(-5px);
    }
    
    .timeline {
        position: relative;
        padding: 40px 0;
    }
    
    .timeline:before {
        content: '';
        position: absolute;
        height: 100%;
        width: 3px;
        background: hsl(226, 68%, 45%);
        left: 50%;
        transform: translateX(-50%);
    }
    
    .timeline-item {
        position: relative;
        margin-bottom: 40px;
    }
    
    .timeline-content {
        position: relative;
        width: 45%;
        padding: 20px;
        background: white;
        border-radius: 8px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    }
    
    .timeline-content h4 {
        color: hsl(226, 68%, 45%);
        margin-bottom: 10px;
    }
    
    .timeline-item:nth-child(odd) .timeline-content {
        left: 55%;
    }
    
    .timeline-item:nth-child(even) .timeline-content {
        left: 0;
    }
    
    .timeline-marker {
        position: absolute;
        width: 20px;
        height: 20px;
        background: hsl(226, 68%, 70%);
        border-radius: 50%;
        left: 50%;
        top: 20px;
        transform: translateX(-50%);
        z-index: 10;
    }
    
    .values-card {
        background: white;
        border-radius: 10px;
        padding: 25px;
        margin-bottom: 20px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        transition: all 0.3s ease;
        border-left: 4px solid hsl(226, 68%, 45%);
    }
    
    .values-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    }
    
    .values-card h4 {
        color: hsl(226, 68%, 45%);
        margin-bottom: 15px;
    }
    
    @media (max-width: 768px) {
        .timeline:before {
            left: 30px;
        }
        
        .timeline-content {
            width: calc(100% - 60px);
            left: 60px !important;
        }
        
        .timeline-marker {
            left: 30px;
        }
    }

.newsletter-section {
    background: linear-gradient(135deg, hsl(226, 68%, 45%) 0%, hsl(226, 68%, 30%) 100%);
    border-radius: 1rem;
    padding: 3rem 2rem;
    color: white;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    margin: 4rem 0;
  }
  
  .newsletter-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
  }
  
  .newsletter-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    font-weight: 300;
    line-height: 1.6;
  }
  
  .newsletter-features {
    margin-bottom: 2.5rem;
  }
  
  .newsletter-features li {
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
  }
  
  .newsletter-features li::before {
    content: "✓";
    margin-right: 10px;
    background: hsl(226, 68%, 70%);
    color: white;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: bold;
  }
  
  .newsletter-form {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 0.75rem;
    backdrop-filter: blur(5px);
  }
  
  .newsletter-form .form-control {
    height: 54px;
    background-color: rgba(255, 255, 255, 0.95);
    border: none;
    font-size: 1.1rem;
    padding-left: 1.25rem;
  }
  
  .newsletter-form .form-control:focus {
    box-shadow: 0 0 0 3px hsl(226, 68%, 70%);
  }
  
  .newsletter-form .btn {
    background-color: hsl(226, 68%, 70%);
    border: none;
    height: 54px;
    font-weight: 600;
    font-size: 1.1rem;
    padding: 0 1.75rem;
    transition: all 0.3s ease;
  }
  
  .newsletter-form .btn:hover {
    background-color: hsl(226, 68%, 60%);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.15);
  }
  
  .privacy-note {
    font-size: 0.85rem;
    opacity: 0.8;
    margin-top: 1rem;
    text-align: center;
  }
  
  @media (max-width: 768px) {
    .newsletter-section {
      padding: 2rem 1.5rem;
    }
    
    .newsletter-title {
      font-size: 2rem;
    }
    
    .newsletter-form .btn {
      width: 100%;
      margin-top: 1rem;
    }
  }

:root {
        --primary-color: hsl(226, 68%, 45%);
        --secondary-color: hsl(226, 68%, 30%);
        --accent-color: hsl(226, 68%, 70%);
    }

    footer {
        background-color: var(--secondary-color);
        color: white;
        padding: 3rem 0;
        margin-top: 2rem;
    }

    footer h5 {
        font-weight: 600;
        margin-bottom: 1.5rem;
        color: white;
    }

    footer p {
        line-height: 1.6;
    }

    footer a {
        color: var(--accent-color);
        text-decoration: none;
        transition: all 0.3s ease;
    }

    footer a:hover {
        color: white;
        text-decoration: underline;
    }

    footer .nav-link {
        padding-left: 0;
        padding-right: 0;
        margin-bottom: 0.5rem;
    }

    footer .copyright {
        margin-top: 2rem;
        padding-top: 1.5rem;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .cookie-notice {
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        background-color: var(--secondary-color);
        color: white;
        padding: 1rem 0;
        box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.1);
        z-index: 1000;
        display: none;
    }

    .cookie-notice.show {
        display: block;
    }

    .cookie-notice p {
        margin-bottom: 0;
    }

    .cookie-btn {
        background-color: var(--accent-color);
        color: white;
        border: none;
        padding: 0.5rem 1.25rem;
        border-radius: 4px;
        font-weight: 500;
        transition: all 0.3s ease;
    }

    .cookie-btn:hover {
        background-color: var(--primary-color);
        transform: translateY(-2px);
    }

    .cookie-btn.outline {
        background-color: transparent;
        border: 1px solid var(--accent-color);
    }

    .cookie-btn.outline:hover {
        background-color: var(--accent-color);
        color: white;
    }

    @media (max-width: 768px) {
        .cookie-notice .d-flex {
            flex-direction: column;
            gap: 1rem;
        }
    }

:root {
            --primary-color: hsl(226, 68%, 45%);
            --secondary-color: hsl(226, 68%, 30%);
            --accent-color: hsl(226, 68%, 70%);
        }
        
        body {
            font-family: 'Poppins', sans-serif;
        }
        
        .navbar-brand {
            font-weight: 700;
            color: var(--primary-color);
            transition: color 0.3s ease;
        }
        
        .navbar-brand:hover {
            color: var(--secondary-color);
        }
        
        .nav-link {
            color: #333;
            font-weight: 500;
            position: relative;
            transition: color 0.3s ease;
        }
        
        .nav-link:hover {
            color: var(--primary-color);
        }
        
        .nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0;
            left: 0;
            background-color: var(--primary-color);
            transition: width 0.3s ease;
        }
        
        .nav-link:hover::after {
            width: 100%;
        }
        
        .navbar-toggler {
            border: none;
            outline: none;
        }
        
        .navbar-toggler:focus {
            box-shadow: none;
        }
        
        .navbar {
            padding: 15px 0;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
        }

:root {
    --primary: hsl(226, 68%, 45%);
    --secondary: hsl(226, 68%, 30%);
    --accent: hsl(226, 68%, 70%);
  }

  .hero-section {
    position: relative;
    padding: 5rem 0;
    overflow: hidden;
    background-color: #f9f9ff;
  }

  .hero-background {
    position: absolute;
    top: 0;
    right: 0;
    width: 70%;
    height: 100%;
    background-color: var(--accent);
    clip-path: polygon(15% 0, 100% 0, 100% 100%, 0% 100%);
    z-index: 1;
  }

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

  .hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--secondary);
    margin-bottom: 1rem;
    line-height: 1.2;
    position: relative;
  }

  .hero-title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 80px;
    height: 5px;
    background-color: var(--primary);
  }

  .hero-subtitle {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 2rem;
  }

  .hero-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 2rem;
  }

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

  .hero-features li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    color: var(--secondary);
  }

  .hero-features li i {
    position: absolute;
    left: 0;
    top: 5px;
    color: var(--primary);
  }

  .hero-image-container {
    position: relative;
    margin-top: -2rem;
    margin-left: -3rem;
  }

  .hero-image {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 20px 20px 60px rgba(0, 0, 0, 0.1);
    shape-outside: circle(50%);
    position: relative;
    z-index: 3;
  }

  .accent-shape {
    position: absolute;
    width: 150px;
    height: 150px;
    background-color: var(--primary);
    border-radius: 50%;
    top: -30px;
    right: -30px;
    z-index: 2;
  }

  .cta-primary {
    background-color: var(--primary);
    color: white;
    border: none;
    padding: 12px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 30px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    margin-right: 15px;
    box-shadow: 0 4px 15px rgba(78, 95, 190, 0.3);
  }

  .cta-primary:hover {
    background-color: var(--secondary);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(78, 95, 190, 0.4);
    color: white;
  }

  .cta-secondary {
    background-color: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
    padding: 12px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 30px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
  }

  .cta-secondary:hover {
    background-color: var(--accent);
    color: var(--secondary);
    border-color: var(--accent);
    transform: translateY(-3px);
  }

  @media (max-width: 991px) {
    .hero-image-container {
      margin-top: 3rem;
      margin-left: 0;
    }
    
    .hero-background {
      width: 100%;
      clip-path: polygon(0 0, 100% 0, 100% 100%, 0 70%);
    }
    
    .hero-title {
      font-size: 2.8rem;
    }
    
    .hero-subtitle {
      font-size: 1.5rem;
    }
  }
  
  @media (max-width: 767px) {
    .hero-title {
      font-size: 2.3rem;
    }
    
    .cta-primary, .cta-secondary {
      display: block;
      margin-bottom: 15px;
      text-align: center;
    }
  }

.advantages-section {
        padding: 80px 0;
        background-color: #f8f9fa;
    }
    
    .advantages-section .section-title {
        color: hsl(226, 68%, 45%);
        margin-bottom: 50px;
        font-weight: 700;
    }
    
    .advantages-section .section-subtitle {
        color: hsl(226, 68%, 30%);
        margin-bottom: 40px;
        font-size: 1.2rem;
    }
    
    .advantage-card {
        background-color: white;
        border-radius: 10px;
        padding: 30px;
        margin-bottom: 30px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        height: 100%;
        transition: all 0.3s ease;
        border-bottom: 4px solid transparent;
    }
    
    .advantage-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        border-bottom: 4px solid hsl(226, 68%, 70%);
    }
    
    .advantage-icon {
        font-size: 2.5rem;
        color: hsl(226, 68%, 45%);
        margin-bottom: 20px;
    }
    
    .advantage-title {
        font-weight: 600;
        margin-bottom: 15px;
        color: hsl(226, 68%, 30%);
    }
    
    .advantage-description {
        color: #6c757d;
        font-size: 0.95rem;
        line-height: 1.6;
    }

.newsletter-section {
    background: linear-gradient(135deg, hsl(226, 68%, 45%) 0%, hsl(226, 68%, 30%) 100%);
    border-radius: 1rem;
    padding: 3rem 2rem;
    color: white;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    margin: 4rem 0;
  }
  
  .newsletter-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
  }
  
  .newsletter-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    font-weight: 300;
    line-height: 1.6;
  }
  
  .newsletter-features {
    margin-bottom: 2.5rem;
  }
  
  .newsletter-features li {
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
  }
  
  .newsletter-features li::before {
    content: "✓";
    margin-right: 10px;
    background: hsl(226, 68%, 70%);
    color: white;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: bold;
  }
  
  .newsletter-form {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 0.75rem;
    backdrop-filter: blur(5px);
  }
  
  .newsletter-form .form-control {
    height: 54px;
    background-color: rgba(255, 255, 255, 0.95);
    border: none;
    font-size: 1.1rem;
    padding-left: 1.25rem;
  }
  
  .newsletter-form .form-control:focus {
    box-shadow: 0 0 0 3px hsl(226, 68%, 70%);
  }
  
  .newsletter-form .btn {
    background-color: hsl(226, 68%, 70%);
    border: none;
    height: 54px;
    font-weight: 600;
    font-size: 1.1rem;
    padding: 0 1.75rem;
    transition: all 0.3s ease;
  }
  
  .newsletter-form .btn:hover {
    background-color: hsl(226, 68%, 60%);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.15);
  }
  
  .privacy-note {
    font-size: 0.85rem;
    opacity: 0.8;
    margin-top: 1rem;
    text-align: center;
  }
  
  @media (max-width: 768px) {
    .newsletter-section {
      padding: 2rem 1.5rem;
    }
    
    .newsletter-title {
      font-size: 2rem;
    }
    
    .newsletter-form .btn {
      width: 100%;
      margin-top: 1rem;
    }
  }

.faq-section {
        padding: 80px 0;
        background-color: #f8f9fa;
    }
    
    .faq-header {
        text-align: center;
        margin-bottom: 50px;
    }
    
    .faq-header h2 {
        color: hsl(226, 68%, 45%);
        font-weight: 700;
        margin-bottom: 15px;
        position: relative;
        display: inline-block;
    }
    
    .faq-header h2:after {
        content: "";
        position: absolute;
        width: 70px;
        height: 3px;
        background-color: hsl(226, 68%, 70%);
        bottom: -10px;
        left: 50%;
        transform: translateX(-50%);
    }
    
    .faq-header p {
        color: #666;
        font-size: 1.1rem;
        max-width: 700px;
        margin: 0 auto;
    }
    
    .accordion-button:not(.collapsed) {
        background-color: hsl(226, 68%, 95%);
        color: hsl(226, 68%, 45%);
        box-shadow: none;
    }
    
    .accordion-button:focus {
        box-shadow: none;
        border-color: hsl(226, 68%, 70%);
    }
    
    .accordion-item {
        border-radius: 8px;
        overflow: hidden;
        margin-bottom: 15px;
        border: 1px solid rgba(0,0,0,.125);
    }
    
    .accordion-button::after {
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%233949ab'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    }
    
    .accordion-body {
        padding: 20px;
        line-height: 1.6;
    }
    
    .faq-divider {
        width: 100%;
        height: 1px;
        background: linear-gradient(to right, transparent, hsl(226, 68%, 70%), transparent);
        margin: 30px 0;
    }

.contact-section {
        padding: 80px 0;
        background-color: #f9f9ff;
    }
    
    .contact-heading {
        color: hsl(226, 68%, 30%);
        font-weight: 700;
        margin-bottom: 30px;
        position: relative;
    }
    
    .contact-heading:after {
        content: '';
        position: absolute;
        bottom: -10px;
        left: 0;
        width: 80px;
        height: 3px;
        background-color: hsl(226, 68%, 45%);
    }
    
    .contact-subheading {
        color: hsl(226, 68%, 45%);
        margin-bottom: 20px;
        font-weight: 600;
    }
    
    .contact-text {
        color: #555;
        margin-bottom: 25px;
        line-height: 1.6;
    }
    
    .contact-highlight {
        color: hsl(226, 68%, 45%);
        font-weight: 600;
    }
    
    .contact-card {
        background-color: white;
        border-radius: 8px;
        padding: 30px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
        height: 100%;
    }
    
    .contact-form label {
        color: #444;
        font-weight: 500;
        margin-bottom: 5px;
    }
    
    .contact-form .form-control {
        border: 1px solid #ddd;
        border-radius: 4px;
        padding: 12px;
        margin-bottom: 20px;
    }
    
    .contact-form .form-control:focus {
        border-color: hsl(226, 68%, 45%);
        box-shadow: 0 0 0 0.2rem hsla(226, 68%, 45%, 0.2);
    }
    
    .contact-btn {
        background-color: hsl(226, 68%, 45%);
        color: white;
        border: none;
        padding: 12px 25px;
        border-radius: 4px;
        font-weight: 600;
        transition: all 0.3s ease;
        width: 100%;
    }
    
    .contact-btn:hover {
        background-color: hsl(226, 68%, 30%);
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }
    
    .hours-card {
        background-color: hsl(226, 68%, 45%);
        color: white;
        border-radius: 8px;
        padding: 20px;
        margin-top: 30px;
    }
    
    .hours-heading {
        color: white;
        font-size: 1.2rem;
        margin-bottom: 15px;
        font-weight: 600;
    }
    
    .hours-list {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    
    .hours-list li {
        margin-bottom: 8px;
        display: flex;
        justify-content: space-between;
    }
    
    .map-container {
        width: 100%;
        height: 250px;
        border-radius: 8px;
        overflow: hidden;
        margin-bottom: 20px;
        background-color: #eee;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #777;
        font-style: italic;
    }

.services-section {
    padding: 80px 0;
    background-color: #f8f9fa;
  }
  
  .services-header {
    text-align: center;
    margin-bottom: 60px;
  }
  
  .services-title {
    color: hsl(226, 68%, 45%);
    font-weight: 700;
    margin-bottom: 20px;
  }
  
  .services-subtitle {
    color: hsl(226, 68%, 30%);
    max-width: 700px;
    margin: 0 auto;
  }
  
  .service-card {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    padding: 30px;
    height: 100%;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid #eee;
  }
  
  .service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border-color: hsl(226, 68%, 70%);
  }
  
  .service-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: hsl(226, 68%, 97%);
    border-radius: 50%;
    margin-bottom: 20px;
  }
  
  .service-icon i {
    font-size: 30px;
    color: hsl(226, 68%, 45%);
  }
  
  .service-title {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
    color: hsl(226, 68%, 30%);
  }
  
  .service-description {
    color: #666;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 20px;
  }
  
  .service-price {
    font-weight: 700;
    color: hsl(226, 68%, 45%);
    font-size: 20px;
    margin-bottom: 15px;
  }
  
  .service-conditions {
    font-size: 13px;
    color: #888;
    font-style: italic;
  }
  
  .service-cta {
    display: inline-block;
    margin-top: 15px;
    color: hsl(226, 68%, 45%);
    font-weight: 600;
    text-decoration: none;
    position: relative;
  }
  
  .service-cta:after {
    content: "";
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -2px;
    left: 0;
    background-color: hsl(226, 68%, 45%);
    transition: width 0.3s ease;
  }
  
  .service-cta:hover:after {
    width: 100%;
  }

.statistics-section {
    padding: 80px 0;
    background-color: #f8f9fc;
}

.statistics-section h2 {
    color: hsl(226, 68%, 45%);
    margin-bottom: 50px;
    text-align: center;
    font-weight: 700;
}

.stat-card {
    padding: 25px;
    border-radius: 10px;
    transition: all 0.3s ease;
    margin-bottom: 30px;
    background-color: white;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    height: 100%;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.stat-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: hsl(226, 68%, 70%);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: hsl(226, 68%, 45%);
    margin-bottom: 10px;
    line-height: 1;
}

.stat-title {
    font-size: 1.2rem;
    color: hsl(226, 68%, 30%);
    margin-bottom: 10px;
    font-weight: 600;
}

.stat-description {
    color: #6c757d;
    font-size: 0.95rem;
}

.progress-bar {
    background-color: hsl(226, 68%, 45%);
}

.progress {
    height: 8px;
    margin-bottom: 15px;
    background-color: #e9ecef;
}

.progress-title {
    font-weight: 600;
    margin-bottom: 5px;
    color: hsl(226, 68%, 30%);
}

.progress-value {
    font-weight: 600;
    color: hsl(226, 68%, 45%);
}

@media (max-width: 768px) {
    .statistics-section {
        padding: 50px 0;
    }
    
    .stat-card {
        margin-bottom: 20px;
    }
}

.about-section {
        padding: 80px 0;
        background-color: #f8f9fc;
        font-family: 'Poppins', sans-serif;
    }
    
    .about-heading {
        color: hsl(226, 68%, 45%);
        font-weight: 700;
        margin-bottom: 30px;
        position: relative;
    }
    
    .about-heading:after {
        content: '';
        position: absolute;
        bottom: -10px;
        left: 0;
        width: 80px;
        height: 3px;
        background-color: hsl(226, 68%, 70%);
    }
    
    .about-subheading {
        color: hsl(226, 68%, 30%);
        font-weight: 600;
        margin-top: 30px;
        margin-bottom: 20px;
    }
    
    .about-text {
        color: #333;
        line-height: 1.8;
        margin-bottom: 20px;
    }
    
    .about-image {
        border-radius: 10px;
        box-shadow: 0 8px 20px rgba(0,0,0,0.1);
        transition: transform 0.3s ease;
        max-width: 100%;
        height: auto;
    }
    
    .about-image:hover {
        transform: translateY(-5px);
    }
    
    .timeline {
        position: relative;
        padding: 40px 0;
    }
    
    .timeline:before {
        content: '';
        position: absolute;
        height: 100%;
        width: 3px;
        background: hsl(226, 68%, 45%);
        left: 50%;
        transform: translateX(-50%);
    }
    
    .timeline-item {
        position: relative;
        margin-bottom: 40px;
    }
    
    .timeline-content {
        position: relative;
        width: 45%;
        padding: 20px;
        background: white;
        border-radius: 8px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    }
    
    .timeline-content h4 {
        color: hsl(226, 68%, 45%);
        margin-bottom: 10px;
    }
    
    .timeline-item:nth-child(odd) .timeline-content {
        left: 55%;
    }
    
    .timeline-item:nth-child(even) .timeline-content {
        left: 0;
    }
    
    .timeline-marker {
        position: absolute;
        width: 20px;
        height: 20px;
        background: hsl(226, 68%, 70%);
        border-radius: 50%;
        left: 50%;
        top: 20px;
        transform: translateX(-50%);
        z-index: 10;
    }
    
    .values-card {
        background: white;
        border-radius: 10px;
        padding: 25px;
        margin-bottom: 20px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        transition: all 0.3s ease;
        border-left: 4px solid hsl(226, 68%, 45%);
    }
    
    .values-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    }
    
    .values-card h4 {
        color: hsl(226, 68%, 45%);
        margin-bottom: 15px;
    }
    
    @media (max-width: 768px) {
        .timeline:before {
            left: 30px;
        }
        
        .timeline-content {
            width: calc(100% - 60px);
            left: 60px !important;
        }
        
        .timeline-marker {
            left: 30px;
        }
    }

.testimonials-section {
    padding: 5rem 0;
    background-color: #f8f9fa;
}

.testimonials-section h2 {
    color: hsl(226, 68%, 45%);
    text-align: center;
    margin-bottom: 3rem;
    font-weight: 700;
    position: relative;
}

.testimonials-section h2:after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: hsl(226, 68%, 70%);
}

.testimonial-card {
    background-color: white;
    border-radius: 10px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    height: 100%;
    transition: all 0.3s ease;
    border-left: 4px solid hsl(226, 68%, 45%);
}

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

.testimonial-text {
    font-style: italic;
    margin-bottom: 1.5rem;
    color: #555;
    position: relative;
}

.testimonial-text:before {
    content: '"';
    font-size: 3rem;
    color: hsl(226, 68%, 70%);
    position: absolute;
    top: -20px;
    left: -10px;
    opacity: 0.3;
}

.testimonial-author {
    font-weight: 600;
    color: hsl(226, 68%, 30%);
    margin-bottom: 0.2rem;
}

.testimonial-location {
    font-size: 0.9rem;
    color: #777;
}

@media (max-width: 768px) {
    .testimonial-card {
        padding: 1.5rem;
    }
}

:root {
        --primary-color: hsl(226, 68%, 45%);
        --secondary-color: hsl(226, 68%, 30%);
        --accent-color: hsl(226, 68%, 70%);
    }

    footer {
        background-color: var(--secondary-color);
        color: white;
        padding: 3rem 0;
        margin-top: 2rem;
    }

    footer h5 {
        font-weight: 600;
        margin-bottom: 1.5rem;
        color: white;
    }

    footer p {
        line-height: 1.6;
    }

    footer a {
        color: var(--accent-color);
        text-decoration: none;
        transition: all 0.3s ease;
    }

    footer a:hover {
        color: white;
        text-decoration: underline;
    }

    footer .nav-link {
        padding-left: 0;
        padding-right: 0;
        margin-bottom: 0.5rem;
    }

    footer .copyright {
        margin-top: 2rem;
        padding-top: 1.5rem;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .cookie-notice {
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        background-color: var(--secondary-color);
        color: white;
        padding: 1rem 0;
        box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.1);
        z-index: 1000;
        display: none;
    }

    .cookie-notice.show {
        display: block;
    }

    .cookie-notice p {
        margin-bottom: 0;
    }

    .cookie-btn {
        background-color: var(--accent-color);
        color: white;
        border: none;
        padding: 0.5rem 1.25rem;
        border-radius: 4px;
        font-weight: 500;
        transition: all 0.3s ease;
    }

    .cookie-btn:hover {
        background-color: var(--primary-color);
        transform: translateY(-2px);
    }

    .cookie-btn.outline {
        background-color: transparent;
        border: 1px solid var(--accent-color);
    }

    .cookie-btn.outline:hover {
        background-color: var(--accent-color);
        color: white;
    }

    @media (max-width: 768px) {
        .cookie-notice .d-flex {
            flex-direction: column;
            gap: 1rem;
        }
    }