:root {
            --primary: hsl(188, 46%, 45%);
            --secondary: hsl(188, 46%, 30%);
            --accent: hsl(188, 46%, 70%);
        }
        
        body {
            font-family: 'Poppins', sans-serif;
        }
        
        .navbar {
            background-color: white;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }
        
        .navbar-brand {
            display: flex;
            align-items: center;
        }
        
        .navbar-brand span {
            font-weight: 700;
            color: var(--secondary);
            margin-left: 10px;
            font-size: 1.5rem;
        }
        
        .nav-link {
            color: var(--secondary);
            font-weight: 500;
            transition: color 0.3s ease;
            position: relative;
            margin: 0 5px;
        }
        
        .nav-link:hover {
            color: var(--primary);
        }
        
        .nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0;
            left: 50%;
            background-color: var(--primary);
            transition: all 0.3s ease;
        }
        
        .nav-link:hover::after {
            width: 100%;
            left: 0;
        }
        
        .navbar-toggler {
            border: none;
            outline: none;
        }
        
        .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(64, 139, 139, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }

.about-section {
        padding: 80px 0;
        background-color: #f9f9f9;
        font-family: 'Poppins', sans-serif;
    }

    .about-section h2 {
        color: hsl(188, 46%, 30%);
        font-weight: 700;
        margin-bottom: 30px;
        position: relative;
        font-size: 2.5rem;
    }

    .about-section h2:after {
        content: '';
        position: absolute;
        bottom: -10px;
        left: 0;
        width: 70px;
        height: 3px;
        background-color: hsl(188, 46%, 45%);
    }

    .about-section p {
        color: #666;
        line-height: 1.8;
        margin-bottom: 20px;
        font-size: 1.05rem;
    }

    .about-section .highlight {
        color: hsl(188, 46%, 30%);
        font-weight: 600;
    }

    .about-image {
        border-radius: 10px;
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s ease-in-out;
        margin-bottom: 30px;
        overflow: hidden;
    }

    .about-image img {
        width: 100%;
        height: auto;
        object-fit: cover;
        transition: transform 0.5s ease;
    }

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

    .mission-box {
        background-color: hsl(188, 46%, 70%, 0.2);
        border-left: 4px solid hsl(188, 46%, 45%);
        padding: 20px;
        margin: 25px 0;
        border-radius: 0 8px 8px 0;
    }

    .mission-box h4 {
        color: hsl(188, 46%, 30%);
        margin-bottom: 15px;
    }

    .value-item {
        display: flex;
        align-items: flex-start;
        margin-bottom: 15px;
    }

    .value-icon {
        background-color: hsl(188, 46%, 45%);
        color: white;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-right: 15px;
        flex-shrink: 0;
    }

    .value-text h5 {
        color: hsl(188, 46%, 30%);
        margin-bottom: 5px;
    }

    .value-text p {
        margin-bottom: 0;
        font-size: 0.95rem;
    }

    @media (max-width: 768px) {
        .about-section {
            padding: 50px 0;
        }
        
        .about-section h2 {
            font-size: 2rem;
        }
        
        .order-md-1 {
            order: 2 !important;
        }
        
        .order-md-2 {
            order: 1 !important;
        }
    }

.advantages-section {
        padding: 80px 0;
        background-color: #f8f9fa;
    }
    
    .advantages-title {
        text-align: center;
        margin-bottom: 60px;
        color: hsl(188, 46%, 30%);
    }
    
    .advantages-title h2 {
        font-size: 2.5rem;
        font-weight: 700;
        position: relative;
        display: inline-block;
        margin-bottom: 20px;
    }
    
    .advantages-title h2:after {
        content: '';
        position: absolute;
        bottom: -10px;
        left: 50%;
        transform: translateX(-50%);
        width: 80px;
        height: 3px;
        background-color: hsl(188, 46%, 45%);
    }
    
    .advantage-card {
        border-radius: 10px;
        padding: 30px;
        margin-bottom: 30px;
        height: 100%;
        transition: all 0.3s ease;
        background-color: white;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        border-bottom: 3px solid transparent;
    }
    
    .advantage-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        border-bottom: 3px solid hsl(188, 46%, 45%);
    }
    
    .advantage-icon {
        font-size: 2.5rem;
        color: hsl(188, 46%, 45%);
        margin-bottom: 20px;
        display: inline-block;
        background-color: hsl(188, 46%, 95%);
        width: 80px;
        height: 80px;
        line-height: 80px;
        border-radius: 50%;
        text-align: center;
    }
    
    .advantage-title {
        font-size: 1.4rem;
        font-weight: 700;
        margin-bottom: 15px;
        color: hsl(188, 46%, 30%);
    }
    
    .advantage-description {
        color: #6c757d;
        line-height: 1.6;
    }
    
    @media (max-width: 768px) {
        .advantage-card {
            padding: 20px;
        }
        
        .advantages-title h2 {
            font-size: 2rem;
        }
    }

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

.statistics-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: hsl(188, 46%, 45%);
}

.statistics-section h2 {
    color: hsl(188, 46%, 30%);
    font-weight: 700;
    margin-bottom: 2.5rem;
    position: relative;
    display: inline-block;
}

.statistics-section h2::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 70px;
    height: 3px;
    background-color: hsl(188, 46%, 70%);
}

.stat-card {
    padding: 2rem 1.5rem;
    margin-bottom: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
    background-color: white;
}

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

.stat-icon {
    font-size: 2.5rem;
    margin-bottom: 1.2rem;
    color: hsl(188, 46%, 45%);
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, hsl(188, 46%, 45%), hsl(188, 46%, 30%));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 1rem;
}

.stat-description {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}

@media (max-width: 767px) {
    .stat-number {
        font-size: 2.5rem;
    }
    
    .stat-title {
        font-size: 1rem;
    }
}

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

footer {
    background-color: var(--secondary-color);
    color: white;
    padding: 60px 0 30px;
    font-family: 'Open Sans', sans-serif;
}

.footer-heading {
    color: white;
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.footer-content p {
    line-height: 1.6;
    margin-bottom: 20px;
}

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

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

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

.footer-links ul li a:hover {
    color: white;
    padding-left: 5px;
}

.contact-info p {
    margin-bottom: 10px;
}

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

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

.copyright {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    font-size: 0.9rem;
}

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

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

.cookie-text {
    font-size: 0.95rem;
    line-height: 1.5;
}

.cookie-btn {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 8px 20px;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
}

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

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

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

@media (max-width: 768px) {
    .footer-col {
        margin-bottom: 30px;
    }
    
    .cookie-buttons {
        margin-top: 15px;
    }
}

:root {
            --primary: hsl(188, 46%, 45%);
            --secondary: hsl(188, 46%, 30%);
            --accent: hsl(188, 46%, 70%);
        }
        
        body {
            font-family: 'Poppins', sans-serif;
        }
        
        .navbar {
            background-color: white;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }
        
        .navbar-brand {
            display: flex;
            align-items: center;
        }
        
        .navbar-brand span {
            font-weight: 700;
            color: var(--secondary);
            margin-left: 10px;
            font-size: 1.5rem;
        }
        
        .nav-link {
            color: var(--secondary);
            font-weight: 500;
            transition: color 0.3s ease;
            position: relative;
            margin: 0 5px;
        }
        
        .nav-link:hover {
            color: var(--primary);
        }
        
        .nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0;
            left: 50%;
            background-color: var(--primary);
            transition: all 0.3s ease;
        }
        
        .nav-link:hover::after {
            width: 100%;
            left: 0;
        }
        
        .navbar-toggler {
            border: none;
            outline: none;
        }
        
        .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(64, 139, 139, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }

.privacy-policy {
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        color: #333;
        line-height: 1.6;
        background-color: #f9f9f9;
        padding: 2rem 0;
    }
    
    .policy-container {
        max-width: 1000px;
        margin: 0 auto;
        background-color: #fff;
        padding: 3rem;
        border-radius: 10px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    }
    
    .privacy-policy h1 {
        color: #2c3e50;
        text-align: center;
        font-size: 2.5rem;
        margin-bottom: 0.5rem;
        border-bottom: 2px solid #f0f0f0;
        padding-bottom: 1rem;
    }
    
    .last-updated {
        text-align: center;
        color: #7f8c8d;
        margin-bottom: 2rem;
        font-style: italic;
    }
    
    .policy-section {
        margin-bottom: 2rem;
        padding-bottom: 1rem;
        border-bottom: 1px solid #f0f0f0;
    }
    
    .policy-section:last-child {
        border-bottom: none;
    }
    
    .privacy-policy h2 {
        color: #3498db;
        font-size: 1.5rem;
        margin-top: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .privacy-policy h3 {
        color: #2980b9;
        font-size: 1.2rem;
        margin-top: 1.2rem;
        margin-bottom: 0.8rem;
    }
    
    .privacy-policy p {
        margin-bottom: 1rem;
    }
    
    .privacy-policy ul {
        padding-left: 2rem;
        margin-bottom: 1rem;
    }
    
    .privacy-policy li {
        margin-bottom: 0.5rem;
    }
    
    .privacy-policy strong {
        color: #2c3e50;
    }
    
    @media (max-width: 768px) {
        .policy-container {
            padding: 1.5rem;
            margin: 0 1rem;
        }
        
        .privacy-policy h1 {
            font-size: 2rem;
        }
        
        .privacy-policy h2 {
            font-size: 1.3rem;
        }
        
        .privacy-policy h3 {
            font-size: 1.1rem;
        }
    }

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

footer {
    background-color: var(--secondary-color);
    color: white;
    padding: 60px 0 30px;
    font-family: 'Open Sans', sans-serif;
}

.footer-heading {
    color: white;
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.footer-content p {
    line-height: 1.6;
    margin-bottom: 20px;
}

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

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

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

.footer-links ul li a:hover {
    color: white;
    padding-left: 5px;
}

.contact-info p {
    margin-bottom: 10px;
}

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

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

.copyright {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    font-size: 0.9rem;
}

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

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

.cookie-text {
    font-size: 0.95rem;
    line-height: 1.5;
}

.cookie-btn {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 8px 20px;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
}

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

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

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

@media (max-width: 768px) {
    .footer-col {
        margin-bottom: 30px;
    }
    
    .cookie-buttons {
        margin-top: 15px;
    }
}

:root {
            --primary: hsl(188, 46%, 45%);
            --secondary: hsl(188, 46%, 30%);
            --accent: hsl(188, 46%, 70%);
        }
        
        body {
            font-family: 'Poppins', sans-serif;
        }
        
        .navbar {
            background-color: white;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }
        
        .navbar-brand {
            display: flex;
            align-items: center;
        }
        
        .navbar-brand span {
            font-weight: 700;
            color: var(--secondary);
            margin-left: 10px;
            font-size: 1.5rem;
        }
        
        .nav-link {
            color: var(--secondary);
            font-weight: 500;
            transition: color 0.3s ease;
            position: relative;
            margin: 0 5px;
        }
        
        .nav-link:hover {
            color: var(--primary);
        }
        
        .nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0;
            left: 50%;
            background-color: var(--primary);
            transition: all 0.3s ease;
        }
        
        .nav-link:hover::after {
            width: 100%;
            left: 0;
        }
        
        .navbar-toggler {
            border: none;
            outline: none;
        }
        
        .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(64, 139, 139, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }

.cookies-policy {
        font-family: 'Arial', sans-serif;
        max-width: 1200px;
        margin: 0 auto;
        padding: 20px;
        color: #333;
        line-height: 1.6;
    }
    .cookies-policy h1 {
        color: #ff6b6b;
        text-align: center;
        margin-bottom: 30px;
        font-size: 2.5em;
    }
    .cookies-policy h2 {
        color: #5f27cd;
        margin-top: 30px;
        margin-bottom: 15px;
        font-size: 1.8em;
        border-bottom: 2px solid #ffeaa7;
        padding-bottom: 8px;
    }
    .cookies-policy p {
        margin-bottom: 15px;
        text-align: justify;
    }
    .cookies-policy ul {
        margin-left: 20px;
        margin-bottom: 20px;
    }
    .cookies-policy li {
        margin-bottom: 10px;
    }
    .cookies-policy .highlight {
        background-color: #fff3cd;
        padding: 15px;
        border-radius: 8px;
        margin: 20px 0;
        border-left: 4px solid #ffc107;
    }
    .cookies-policy .table-container {
        overflow-x: auto;
        margin: 20px 0;
    }
    .cookies-policy table {
        width: 100%;
        border-collapse: collapse;
    }
    .cookies-policy th, .cookies-policy td {
        border: 1px solid #ddd;
        padding: 12px;
        text-align: left;
    }
    .cookies-policy th {
        background-color: #f8f9fa;
        color: #5f27cd;
    }
    .cookies-policy tr:nth-child(even) {
        background-color: #f2f2f2;
    }
    .cookies-policy .last-updated {
        font-style: italic;
        text-align: right;
        margin-top: 40px;
        color: #777;
    }

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

footer {
    background-color: var(--secondary-color);
    color: white;
    padding: 60px 0 30px;
    font-family: 'Open Sans', sans-serif;
}

.footer-heading {
    color: white;
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.footer-content p {
    line-height: 1.6;
    margin-bottom: 20px;
}

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

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

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

.footer-links ul li a:hover {
    color: white;
    padding-left: 5px;
}

.contact-info p {
    margin-bottom: 10px;
}

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

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

.copyright {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    font-size: 0.9rem;
}

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

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

.cookie-text {
    font-size: 0.95rem;
    line-height: 1.5;
}

.cookie-btn {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 8px 20px;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
}

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

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

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

@media (max-width: 768px) {
    .footer-col {
        margin-bottom: 30px;
    }
    
    .cookie-buttons {
        margin-top: 15px;
    }
}

:root {
            --primary: hsl(188, 46%, 45%);
            --secondary: hsl(188, 46%, 30%);
            --accent: hsl(188, 46%, 70%);
        }
        
        body {
            font-family: 'Poppins', sans-serif;
        }
        
        .navbar {
            background-color: white;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }
        
        .navbar-brand {
            display: flex;
            align-items: center;
        }
        
        .navbar-brand span {
            font-weight: 700;
            color: var(--secondary);
            margin-left: 10px;
            font-size: 1.5rem;
        }
        
        .nav-link {
            color: var(--secondary);
            font-weight: 500;
            transition: color 0.3s ease;
            position: relative;
            margin: 0 5px;
        }
        
        .nav-link:hover {
            color: var(--primary);
        }
        
        .nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0;
            left: 50%;
            background-color: var(--primary);
            transition: all 0.3s ease;
        }
        
        .nav-link:hover::after {
            width: 100%;
            left: 0;
        }
        
        .navbar-toggler {
            border: none;
            outline: none;
        }
        
        .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(64, 139, 139, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }

.contact-section {
    padding: 80px 0;
    background-color: #f8f9fa;
  }
  
  .contact-title {
    color: hsl(188, 46%, 30%);
    margin-bottom: 30px;
    font-weight: 700;
  }
  
  .contact-subtitle {
    color: hsl(188, 46%, 45%);
    margin-bottom: 20px;
  }
  
  .contact-form {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  }
  
  .form-control {
    border: 2px solid hsl(188, 46%, 70%);
    padding: 12px;
    margin-bottom: 20px;
    border-radius: 6px;
    transition: all 0.3s ease;
  }
  
  .form-control:focus {
    border-color: hsl(188, 46%, 45%);
    box-shadow: 0 0 0 0.25rem rgba(76, 155, 162, 0.25);
  }
  
  .form-label {
    color: hsl(188, 46%, 30%);
    font-weight: 600;
    margin-bottom: 8px;
  }
  
  .btn-submit {
    background-color: hsl(188, 46%, 45%);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 6px;
    font-weight: 600;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    width: 100%;
    text-transform: uppercase;
  }
  
  .btn-submit:hover {
    background-color: hsl(188, 46%, 30%);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
  }
  
  .contact-info {
    background-color: hsl(188, 46%, 45%);
    color: white;
    padding: 30px;
    border-radius: 10px;
    height: 100%;
  }
  
  .contact-info h3 {
    color: white;
    margin-bottom: 20px;
    font-weight: 700;
  }
  
  .info-item {
    margin-bottom: 20px;
  }
  
  .info-title {
    font-weight: 600;
    margin-bottom: 5px;
    font-size: 18px;
  }
  
  .info-content {
    opacity: 0.9;
    line-height: 1.6;
  }
  
  .contact-process {
    margin-top: 20px;
    padding: 20px;
    background-color: hsl(188, 46%, 70%);
    border-radius: 10px;
    color: hsl(188, 46%, 30%);
  }
  
  @media (max-width: 768px) {
    .contact-info {
      margin-top: 30px;
    }
  }

.about-section {
        padding: 80px 0;
        background-color: #f9f9f9;
        font-family: 'Poppins', sans-serif;
    }

    .about-section h2 {
        color: hsl(188, 46%, 30%);
        font-weight: 700;
        margin-bottom: 30px;
        position: relative;
        font-size: 2.5rem;
    }

    .about-section h2:after {
        content: '';
        position: absolute;
        bottom: -10px;
        left: 0;
        width: 70px;
        height: 3px;
        background-color: hsl(188, 46%, 45%);
    }

    .about-section p {
        color: #666;
        line-height: 1.8;
        margin-bottom: 20px;
        font-size: 1.05rem;
    }

    .about-section .highlight {
        color: hsl(188, 46%, 30%);
        font-weight: 600;
    }

    .about-image {
        border-radius: 10px;
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s ease-in-out;
        margin-bottom: 30px;
        overflow: hidden;
    }

    .about-image img {
        width: 100%;
        height: auto;
        object-fit: cover;
        transition: transform 0.5s ease;
    }

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

    .mission-box {
        background-color: hsl(188, 46%, 70%, 0.2);
        border-left: 4px solid hsl(188, 46%, 45%);
        padding: 20px;
        margin: 25px 0;
        border-radius: 0 8px 8px 0;
    }

    .mission-box h4 {
        color: hsl(188, 46%, 30%);
        margin-bottom: 15px;
    }

    .value-item {
        display: flex;
        align-items: flex-start;
        margin-bottom: 15px;
    }

    .value-icon {
        background-color: hsl(188, 46%, 45%);
        color: white;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-right: 15px;
        flex-shrink: 0;
    }

    .value-text h5 {
        color: hsl(188, 46%, 30%);
        margin-bottom: 5px;
    }

    .value-text p {
        margin-bottom: 0;
        font-size: 0.95rem;
    }

    @media (max-width: 768px) {
        .about-section {
            padding: 50px 0;
        }
        
        .about-section h2 {
            font-size: 2rem;
        }
        
        .order-md-1 {
            order: 2 !important;
        }
        
        .order-md-2 {
            order: 1 !important;
        }
    }

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

footer {
    background-color: var(--secondary-color);
    color: white;
    padding: 60px 0 30px;
    font-family: 'Open Sans', sans-serif;
}

.footer-heading {
    color: white;
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.footer-content p {
    line-height: 1.6;
    margin-bottom: 20px;
}

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

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

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

.footer-links ul li a:hover {
    color: white;
    padding-left: 5px;
}

.contact-info p {
    margin-bottom: 10px;
}

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

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

.copyright {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    font-size: 0.9rem;
}

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

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

.cookie-text {
    font-size: 0.95rem;
    line-height: 1.5;
}

.cookie-btn {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 8px 20px;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
}

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

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

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

@media (max-width: 768px) {
    .footer-col {
        margin-bottom: 30px;
    }
    
    .cookie-buttons {
        margin-top: 15px;
    }
}

:root {
            --primary: hsl(188, 46%, 45%);
            --secondary: hsl(188, 46%, 30%);
            --accent: hsl(188, 46%, 70%);
        }
        
        body {
            font-family: 'Poppins', sans-serif;
        }
        
        .navbar {
            background-color: white;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }
        
        .navbar-brand {
            display: flex;
            align-items: center;
        }
        
        .navbar-brand span {
            font-weight: 700;
            color: var(--secondary);
            margin-left: 10px;
            font-size: 1.5rem;
        }
        
        .nav-link {
            color: var(--secondary);
            font-weight: 500;
            transition: color 0.3s ease;
            position: relative;
            margin: 0 5px;
        }
        
        .nav-link:hover {
            color: var(--primary);
        }
        
        .nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0;
            left: 50%;
            background-color: var(--primary);
            transition: all 0.3s ease;
        }
        
        .nav-link:hover::after {
            width: 100%;
            left: 0;
        }
        
        .navbar-toggler {
            border: none;
            outline: none;
        }
        
        .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(64, 139, 139, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }

.services-section {
        padding: 80px 0;
        background-color: #f9f9f9;
    }
    
    .services-header {
        text-align: center;
        margin-bottom: 60px;
    }
    
    .services-title {
        color: hsl(188, 46%, 30%);
        font-weight: 700;
        margin-bottom: 20px;
    }
    
    .services-subtitle {
        color: #666;
        max-width: 800px;
        margin: 0 auto;
    }
    
    .service-card {
        background: white;
        border-radius: 8px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        padding: 30px;
        margin-bottom: 30px;
        transition: all 0.3s ease;
        height: 100%;
        display: flex;
    }
    
    .service-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        border-left: 5px solid hsl(188, 46%, 45%);
    }
    
    .service-icon {
        background-color: hsl(188, 46%, 70%);
        color: white;
        width: 70px;
        height: 70px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-right: 20px;
        flex-shrink: 0;
    }
    
    .service-icon i {
        font-size: 28px;
    }
    
    .service-content {
        flex-grow: 1;
    }
    
    .service-title {
        color: hsl(188, 46%, 30%);
        margin-bottom: 15px;
        font-weight: 600;
    }
    
    .service-description {
        color: #666;
        margin-bottom: 15px;
        line-height: 1.6;
    }
    
    .service-price {
        font-weight: 700;
        color: hsl(188, 46%, 45%);
        font-size: 18px;
        margin-bottom: 10px;
    }
    
    .service-conditions {
        font-size: 14px;
        color: #888;
        border-top: 1px dashed #eee;
        padding-top: 10px;
        margin-top: 10px;
    }

.newsletter-section {
        background: linear-gradient(135deg, hsl(188, 46%, 45%), hsl(188, 46%, 30%));
        padding: 3.5rem 0;
        color: white;
        border-radius: 0.5rem;
        margin: 2rem 0;
    }
    
    .newsletter-title {
        font-size: 2.5rem;
        margin-bottom: 1rem;
        font-weight: 700;
    }
    
    .newsletter-description {
        font-size: 1.1rem;
        margin-bottom: 2rem;
        opacity: 0.9;
        max-width: 650px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .newsletter-form .form-control {
        height: 3.5rem;
        border-radius: 2rem;
        padding-left: 1.5rem;
        font-size: 1rem;
        border: none;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }
    
    .newsletter-form .form-control:focus {
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
        border: none;
    }
    
    .newsletter-btn {
        height: 3.5rem;
        border-radius: 2rem;
        padding: 0 2rem;
        background-color: hsl(188, 46%, 70%);
        border: none;
        color: hsl(188, 46%, 30%);
        font-weight: 600;
        font-size: 1rem;
        transition: all 0.3s ease;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }
    
    .newsletter-btn:hover {
        background-color: white;
        transform: translateY(-3px);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    }
    
    .benefits-list {
        max-width: 650px;
        margin: 2rem auto 0;
    }
    
    .benefit-item {
        margin-bottom: 0.7rem;
        display: flex;
        align-items: center;
    }
    
    .benefit-icon {
        margin-right: 1rem;
        font-size: 1.2rem;
        color: hsl(188, 46%, 70%);
    }
    
    @media (max-width: 767px) {
        .newsletter-title {
            font-size: 2rem;
        }
        
        .newsletter-form {
            flex-direction: column;
        }
        
        .newsletter-btn {
            margin-top: 1rem;
            width: 100%;
        }
    }

.testimonials-section {
        background-color: #f9f9f9;
        padding: 80px 0;
    }
    
    .testimonials-section h2 {
        color: hsl(188, 46%, 30%);
        text-align: center;
        margin-bottom: 50px;
        font-weight: 700;
        position: relative;
    }
    
    .testimonials-section h2::after {
        content: "";
        position: absolute;
        width: 70px;
        height: 3px;
        background-color: hsl(188, 46%, 45%);
        bottom: -15px;
        left: 50%;
        transform: translateX(-50%);
    }
    
    .testimonial-card {
        background-color: white;
        border-radius: 8px;
        padding: 25px;
        margin-bottom: 30px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        height: 100%;
        position: relative;
    }
    
    .testimonial-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
    }
    
    .testimonial-text {
        font-style: italic;
        color: #555;
        margin-bottom: 20px;
        line-height: 1.6;
    }
    
    .testimonial-text::before {
        content: """;
        font-size: 50px;
        color: hsl(188, 46%, 70%);
        font-family: Georgia, serif;
        position: absolute;
        top: 10px;
        left: 15px;
        opacity: 0.3;
    }
    
    .testimonial-author {
        font-weight: 600;
        color: hsl(188, 46%, 30%);
        margin-bottom: 0;
    }
    
    .testimonial-location {
        color: #888;
        font-size: 0.9rem;
    }

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

footer {
    background-color: var(--secondary-color);
    color: white;
    padding: 60px 0 30px;
    font-family: 'Open Sans', sans-serif;
}

.footer-heading {
    color: white;
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.footer-content p {
    line-height: 1.6;
    margin-bottom: 20px;
}

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

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

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

.footer-links ul li a:hover {
    color: white;
    padding-left: 5px;
}

.contact-info p {
    margin-bottom: 10px;
}

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

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

.copyright {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    font-size: 0.9rem;
}

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

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

.cookie-text {
    font-size: 0.95rem;
    line-height: 1.5;
}

.cookie-btn {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 8px 20px;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
}

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

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

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

@media (max-width: 768px) {
    .footer-col {
        margin-bottom: 30px;
    }
    
    .cookie-buttons {
        margin-top: 15px;
    }
}

:root {
            --primary: hsl(188, 46%, 45%);
            --secondary: hsl(188, 46%, 30%);
            --accent: hsl(188, 46%, 70%);
        }
        
        body {
            font-family: 'Poppins', sans-serif;
        }
        
        .navbar {
            background-color: white;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }
        
        .navbar-brand {
            display: flex;
            align-items: center;
        }
        
        .navbar-brand span {
            font-weight: 700;
            color: var(--secondary);
            margin-left: 10px;
            font-size: 1.5rem;
        }
        
        .nav-link {
            color: var(--secondary);
            font-weight: 500;
            transition: color 0.3s ease;
            position: relative;
            margin: 0 5px;
        }
        
        .nav-link:hover {
            color: var(--primary);
        }
        
        .nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0;
            left: 50%;
            background-color: var(--primary);
            transition: all 0.3s ease;
        }
        
        .nav-link:hover::after {
            width: 100%;
            left: 0;
        }
        
        .navbar-toggler {
            border: none;
            outline: none;
        }
        
        .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(64, 139, 139, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }

.terms-container {
        font-family: 'Arial', sans-serif;
        max-width: 1000px;
        margin: 0 auto;
        padding: 20px;
        color: #333;
        line-height: 1.6;
    }
    
    .terms-container h1 {
        color: #ff6b6b;
        text-align: center;
        border-bottom: 2px solid #ff6b6b;
        padding-bottom: 10px;
        margin-bottom: 30px;
    }
    
    .terms-container h2 {
        color: #ff9e7d;
        margin-top: 25px;
        border-left: 4px solid #ff9e7d;
        padding-left: 10px;
    }
    
    .terms-container p {
        margin-bottom: 15px;
        text-align: justify;
    }
    
    .terms-container ul {
        padding-left: 20px;
        margin-bottom: 20px;
    }
    
    .terms-container li {
        margin-bottom: 8px;
    }
    
    .terms-container .highlight {
        background-color: #fff4e6;
        padding: 15px;
        border-radius: 5px;
        border-left: 3px solid #ffcc80;
        margin: 20px 0;
    }
    
    .terms-container .last-updated {
        text-align: right;
        font-style: italic;
        margin-top: 30px;
        font-size: 0.9em;
        color: #777;
    }

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

footer {
    background-color: var(--secondary-color);
    color: white;
    padding: 60px 0 30px;
    font-family: 'Open Sans', sans-serif;
}

.footer-heading {
    color: white;
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.footer-content p {
    line-height: 1.6;
    margin-bottom: 20px;
}

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

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

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

.footer-links ul li a:hover {
    color: white;
    padding-left: 5px;
}

.contact-info p {
    margin-bottom: 10px;
}

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

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

.copyright {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    font-size: 0.9rem;
}

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

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

.cookie-text {
    font-size: 0.95rem;
    line-height: 1.5;
}

.cookie-btn {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 8px 20px;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
}

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

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

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

@media (max-width: 768px) {
    .footer-col {
        margin-bottom: 30px;
    }
    
    .cookie-buttons {
        margin-top: 15px;
    }
}

:root {
            --primary: hsl(188, 46%, 45%);
            --secondary: hsl(188, 46%, 30%);
            --accent: hsl(188, 46%, 70%);
        }
        
        body {
            font-family: 'Poppins', sans-serif;
        }
        
        .navbar {
            background-color: white;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }
        
        .navbar-brand {
            display: flex;
            align-items: center;
        }
        
        .navbar-brand span {
            font-weight: 700;
            color: var(--secondary);
            margin-left: 10px;
            font-size: 1.5rem;
        }
        
        .nav-link {
            color: var(--secondary);
            font-weight: 500;
            transition: color 0.3s ease;
            position: relative;
            margin: 0 5px;
        }
        
        .nav-link:hover {
            color: var(--primary);
        }
        
        .nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0;
            left: 50%;
            background-color: var(--primary);
            transition: all 0.3s ease;
        }
        
        .nav-link:hover::after {
            width: 100%;
            left: 0;
        }
        
        .navbar-toggler {
            border: none;
            outline: none;
        }
        
        .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(64, 139, 139, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }

.faq-section {
        padding: 80px 0;
        background-color: #f9f9f9;
    }
    
    .faq-section .section-title {
        color: hsl(188, 46%, 30%);
        margin-bottom: 40px;
        font-weight: 700;
    }
    
    .faq-section .nav-tabs {
        border-bottom: 2px solid hsl(188, 46%, 45%);
        margin-bottom: 30px;
        display: flex;
        flex-wrap: wrap;
    }
    
    .faq-section .nav-tabs .nav-link {
        border: none;
        color: #555;
        font-weight: 600;
        padding: 12px 20px;
        margin-right: 5px;
        border-radius: 6px 6px 0 0;
        transition: all 0.3s ease;
    }
    
    .faq-section .nav-tabs .nav-link:hover {
        background-color: hsl(188, 46%, 70%);
        color: #fff;
    }
    
    .faq-section .nav-tabs .nav-link.active {
        background-color: hsl(188, 46%, 45%);
        color: #fff;
    }
    
    .faq-section .accordion-item {
        border: none;
        margin-bottom: 15px;
        border-radius: 8px;
        box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    }
    
    .faq-section .accordion-button {
        background-color: #fff;
        color: hsl(188, 46%, 30%);
        font-weight: 600;
        padding: 20px 25px;
        border-radius: 8px;
        box-shadow: none;
    }
    
    .faq-section .accordion-button:not(.collapsed) {
        background-color: hsl(188, 46%, 70%);
        color: #fff;
    }
    
    .faq-section .accordion-button:focus {
        box-shadow: none;
        border-color: hsl(188, 46%, 45%);
    }
    
    .faq-section .accordion-button::after {
        background-size: 16px;
        transition: all 0.3s ease;
    }
    
    .faq-section .accordion-body {
        padding: 20px 25px;
        line-height: 1.7;
        color: #555;
    }
    
    @media (max-width: 768px) {
        .faq-section .nav-tabs {
            justify-content: center;
        }
        
        .faq-section .nav-tabs .nav-link {
            margin-bottom: 10px;
        }
    }

.about-section {
        padding: 80px 0;
        background-color: #f9f9f9;
        font-family: 'Poppins', sans-serif;
    }

    .about-section h2 {
        color: hsl(188, 46%, 30%);
        font-weight: 700;
        margin-bottom: 30px;
        position: relative;
        font-size: 2.5rem;
    }

    .about-section h2:after {
        content: '';
        position: absolute;
        bottom: -10px;
        left: 0;
        width: 70px;
        height: 3px;
        background-color: hsl(188, 46%, 45%);
    }

    .about-section p {
        color: #666;
        line-height: 1.8;
        margin-bottom: 20px;
        font-size: 1.05rem;
    }

    .about-section .highlight {
        color: hsl(188, 46%, 30%);
        font-weight: 600;
    }

    .about-image {
        border-radius: 10px;
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s ease-in-out;
        margin-bottom: 30px;
        overflow: hidden;
    }

    .about-image img {
        width: 100%;
        height: auto;
        object-fit: cover;
        transition: transform 0.5s ease;
    }

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

    .mission-box {
        background-color: hsl(188, 46%, 70%, 0.2);
        border-left: 4px solid hsl(188, 46%, 45%);
        padding: 20px;
        margin: 25px 0;
        border-radius: 0 8px 8px 0;
    }

    .mission-box h4 {
        color: hsl(188, 46%, 30%);
        margin-bottom: 15px;
    }

    .value-item {
        display: flex;
        align-items: flex-start;
        margin-bottom: 15px;
    }

    .value-icon {
        background-color: hsl(188, 46%, 45%);
        color: white;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-right: 15px;
        flex-shrink: 0;
    }

    .value-text h5 {
        color: hsl(188, 46%, 30%);
        margin-bottom: 5px;
    }

    .value-text p {
        margin-bottom: 0;
        font-size: 0.95rem;
    }

    @media (max-width: 768px) {
        .about-section {
            padding: 50px 0;
        }
        
        .about-section h2 {
            font-size: 2rem;
        }
        
        .order-md-1 {
            order: 2 !important;
        }
        
        .order-md-2 {
            order: 1 !important;
        }
    }

.newsletter-section {
        background: linear-gradient(135deg, hsl(188, 46%, 45%), hsl(188, 46%, 30%));
        padding: 3.5rem 0;
        color: white;
        border-radius: 0.5rem;
        margin: 2rem 0;
    }
    
    .newsletter-title {
        font-size: 2.5rem;
        margin-bottom: 1rem;
        font-weight: 700;
    }
    
    .newsletter-description {
        font-size: 1.1rem;
        margin-bottom: 2rem;
        opacity: 0.9;
        max-width: 650px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .newsletter-form .form-control {
        height: 3.5rem;
        border-radius: 2rem;
        padding-left: 1.5rem;
        font-size: 1rem;
        border: none;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }
    
    .newsletter-form .form-control:focus {
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
        border: none;
    }
    
    .newsletter-btn {
        height: 3.5rem;
        border-radius: 2rem;
        padding: 0 2rem;
        background-color: hsl(188, 46%, 70%);
        border: none;
        color: hsl(188, 46%, 30%);
        font-weight: 600;
        font-size: 1rem;
        transition: all 0.3s ease;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }
    
    .newsletter-btn:hover {
        background-color: white;
        transform: translateY(-3px);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    }
    
    .benefits-list {
        max-width: 650px;
        margin: 2rem auto 0;
    }
    
    .benefit-item {
        margin-bottom: 0.7rem;
        display: flex;
        align-items: center;
    }
    
    .benefit-icon {
        margin-right: 1rem;
        font-size: 1.2rem;
        color: hsl(188, 46%, 70%);
    }
    
    @media (max-width: 767px) {
        .newsletter-title {
            font-size: 2rem;
        }
        
        .newsletter-form {
            flex-direction: column;
        }
        
        .newsletter-btn {
            margin-top: 1rem;
            width: 100%;
        }
    }

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

footer {
    background-color: var(--secondary-color);
    color: white;
    padding: 60px 0 30px;
    font-family: 'Open Sans', sans-serif;
}

.footer-heading {
    color: white;
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.footer-content p {
    line-height: 1.6;
    margin-bottom: 20px;
}

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

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

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

.footer-links ul li a:hover {
    color: white;
    padding-left: 5px;
}

.contact-info p {
    margin-bottom: 10px;
}

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

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

.copyright {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    font-size: 0.9rem;
}

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

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

.cookie-text {
    font-size: 0.95rem;
    line-height: 1.5;
}

.cookie-btn {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 8px 20px;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
}

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

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

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

@media (max-width: 768px) {
    .footer-col {
        margin-bottom: 30px;
    }
    
    .cookie-buttons {
        margin-top: 15px;
    }
}

:root {
            --primary: hsl(188, 46%, 45%);
            --secondary: hsl(188, 46%, 30%);
            --accent: hsl(188, 46%, 70%);
        }
        
        body {
            font-family: 'Poppins', sans-serif;
        }
        
        .navbar {
            background-color: white;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }
        
        .navbar-brand {
            display: flex;
            align-items: center;
        }
        
        .navbar-brand span {
            font-weight: 700;
            color: var(--secondary);
            margin-left: 10px;
            font-size: 1.5rem;
        }
        
        .nav-link {
            color: var(--secondary);
            font-weight: 500;
            transition: color 0.3s ease;
            position: relative;
            margin: 0 5px;
        }
        
        .nav-link:hover {
            color: var(--primary);
        }
        
        .nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0;
            left: 50%;
            background-color: var(--primary);
            transition: all 0.3s ease;
        }
        
        .nav-link:hover::after {
            width: 100%;
            left: 0;
        }
        
        .navbar-toggler {
            border: none;
            outline: none;
        }
        
        .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(64, 139, 139, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }

.hero-section {
    background-color: hsl(188, 46%, 45%, 0.1);
    padding: 3rem 0;
    font-family: 'Montserrat', sans-serif;
    color: #333;
    max-width: 100%;
    overflow-x: hidden;
  }
  
  .hero-container {
    max-width: 760px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
  }
  
  .hero-image {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
    transition: transform 0.3s ease;
  }
  
  .hero-image:hover {
    transform: scale(1.02);
  }
  
  .hero-title {
    color: hsl(188, 46%, 30%);
    margin-bottom: 1rem;
    font-weight: 800;
    font-size: 2.5rem;
    animation: fadeIn 0.8s ease;
  }
  
  .hero-subtitle {
    color: hsl(188, 46%, 45%);
    margin-bottom: 1.5rem;
    font-weight: 500;
    font-size: 1.4rem;
    animation: fadeIn 1s ease;
  }
  
  .hero-description {
    line-height: 1.7;
    margin-bottom: 2rem;
    text-align: left;
    animation: fadeIn 1.2s ease;
  }
  
  .benefits-list {
    text-align: left;
    margin-bottom: 2rem;
    animation: fadeIn 1.4s ease;
  }
  
  .benefit-item {
    margin-bottom: 0.8rem;
    display: flex;
    align-items: baseline;
  }
  
  .benefit-icon {
    color: hsl(188, 46%, 45%);
    margin-right: 0.7rem;
    font-size: 1.2rem;
  }
  
  .cta-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
    animation: fadeIn 1.6s ease;
  }
  
  .btn-primary {
    background-color: hsl(188, 46%, 45%);
    border: none;
    padding: 0.8rem 2rem;
    font-weight: 600;
    border-radius: 30px;
    transition: all 0.3s ease;
    text-decoration: none;
    color: white;
    display: inline-block;
    font-size: 1.1rem;
  }
  
  .btn-primary:hover {
    background-color: hsl(188, 46%, 30%);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  }
  
  .btn-secondary {
    background-color: transparent;
    color: hsl(188, 46%, 45%);
    border: 2px solid hsl(188, 46%, 45%);
    padding: 0.7rem 1.8rem;
    font-weight: 500;
    border-radius: 30px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
  }
  
  .btn-secondary:hover {
    background-color: hsl(188, 46%, 70%);
    color: white;
    border-color: hsl(188, 46%, 70%);
    transform: translateY(-3px);
  }
  
  @keyframes fadeIn {
    from {
      opacity: 0;
      transform: translateY(20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  @media (min-width: 768px) {
    .cta-container {
      flex-direction: row;
      justify-content: center;
    }
  }

.contact-section {
    padding: 80px 0;
    background-color: #f8f9fa;
  }
  
  .contact-title {
    color: hsl(188, 46%, 30%);
    margin-bottom: 30px;
    font-weight: 700;
  }
  
  .contact-subtitle {
    color: hsl(188, 46%, 45%);
    margin-bottom: 20px;
  }
  
  .contact-form {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  }
  
  .form-control {
    border: 2px solid hsl(188, 46%, 70%);
    padding: 12px;
    margin-bottom: 20px;
    border-radius: 6px;
    transition: all 0.3s ease;
  }
  
  .form-control:focus {
    border-color: hsl(188, 46%, 45%);
    box-shadow: 0 0 0 0.25rem rgba(76, 155, 162, 0.25);
  }
  
  .form-label {
    color: hsl(188, 46%, 30%);
    font-weight: 600;
    margin-bottom: 8px;
  }
  
  .btn-submit {
    background-color: hsl(188, 46%, 45%);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 6px;
    font-weight: 600;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    width: 100%;
    text-transform: uppercase;
  }
  
  .btn-submit:hover {
    background-color: hsl(188, 46%, 30%);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
  }
  
  .contact-info {
    background-color: hsl(188, 46%, 45%);
    color: white;
    padding: 30px;
    border-radius: 10px;
    height: 100%;
  }
  
  .contact-info h3 {
    color: white;
    margin-bottom: 20px;
    font-weight: 700;
  }
  
  .info-item {
    margin-bottom: 20px;
  }
  
  .info-title {
    font-weight: 600;
    margin-bottom: 5px;
    font-size: 18px;
  }
  
  .info-content {
    opacity: 0.9;
    line-height: 1.6;
  }
  
  .contact-process {
    margin-top: 20px;
    padding: 20px;
    background-color: hsl(188, 46%, 70%);
    border-radius: 10px;
    color: hsl(188, 46%, 30%);
  }
  
  @media (max-width: 768px) {
    .contact-info {
      margin-top: 30px;
    }
  }

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

.statistics-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: hsl(188, 46%, 45%);
}

.statistics-section h2 {
    color: hsl(188, 46%, 30%);
    font-weight: 700;
    margin-bottom: 2.5rem;
    position: relative;
    display: inline-block;
}

.statistics-section h2::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 70px;
    height: 3px;
    background-color: hsl(188, 46%, 70%);
}

.stat-card {
    padding: 2rem 1.5rem;
    margin-bottom: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
    background-color: white;
}

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

.stat-icon {
    font-size: 2.5rem;
    margin-bottom: 1.2rem;
    color: hsl(188, 46%, 45%);
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, hsl(188, 46%, 45%), hsl(188, 46%, 30%));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 1rem;
}

.stat-description {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}

@media (max-width: 767px) {
    .stat-number {
        font-size: 2.5rem;
    }
    
    .stat-title {
        font-size: 1rem;
    }
}

.services-section {
        padding: 80px 0;
        background-color: #f9f9f9;
    }
    
    .services-header {
        text-align: center;
        margin-bottom: 60px;
    }
    
    .services-title {
        color: hsl(188, 46%, 30%);
        font-weight: 700;
        margin-bottom: 20px;
    }
    
    .services-subtitle {
        color: #666;
        max-width: 800px;
        margin: 0 auto;
    }
    
    .service-card {
        background: white;
        border-radius: 8px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        padding: 30px;
        margin-bottom: 30px;
        transition: all 0.3s ease;
        height: 100%;
        display: flex;
    }
    
    .service-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        border-left: 5px solid hsl(188, 46%, 45%);
    }
    
    .service-icon {
        background-color: hsl(188, 46%, 70%);
        color: white;
        width: 70px;
        height: 70px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-right: 20px;
        flex-shrink: 0;
    }
    
    .service-icon i {
        font-size: 28px;
    }
    
    .service-content {
        flex-grow: 1;
    }
    
    .service-title {
        color: hsl(188, 46%, 30%);
        margin-bottom: 15px;
        font-weight: 600;
    }
    
    .service-description {
        color: #666;
        margin-bottom: 15px;
        line-height: 1.6;
    }
    
    .service-price {
        font-weight: 700;
        color: hsl(188, 46%, 45%);
        font-size: 18px;
        margin-bottom: 10px;
    }
    
    .service-conditions {
        font-size: 14px;
        color: #888;
        border-top: 1px dashed #eee;
        padding-top: 10px;
        margin-top: 10px;
    }

.faq-section {
        padding: 80px 0;
        background-color: #f9f9f9;
    }
    
    .faq-section .section-title {
        color: hsl(188, 46%, 30%);
        margin-bottom: 40px;
        font-weight: 700;
    }
    
    .faq-section .nav-tabs {
        border-bottom: 2px solid hsl(188, 46%, 45%);
        margin-bottom: 30px;
        display: flex;
        flex-wrap: wrap;
    }
    
    .faq-section .nav-tabs .nav-link {
        border: none;
        color: #555;
        font-weight: 600;
        padding: 12px 20px;
        margin-right: 5px;
        border-radius: 6px 6px 0 0;
        transition: all 0.3s ease;
    }
    
    .faq-section .nav-tabs .nav-link:hover {
        background-color: hsl(188, 46%, 70%);
        color: #fff;
    }
    
    .faq-section .nav-tabs .nav-link.active {
        background-color: hsl(188, 46%, 45%);
        color: #fff;
    }
    
    .faq-section .accordion-item {
        border: none;
        margin-bottom: 15px;
        border-radius: 8px;
        box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    }
    
    .faq-section .accordion-button {
        background-color: #fff;
        color: hsl(188, 46%, 30%);
        font-weight: 600;
        padding: 20px 25px;
        border-radius: 8px;
        box-shadow: none;
    }
    
    .faq-section .accordion-button:not(.collapsed) {
        background-color: hsl(188, 46%, 70%);
        color: #fff;
    }
    
    .faq-section .accordion-button:focus {
        box-shadow: none;
        border-color: hsl(188, 46%, 45%);
    }
    
    .faq-section .accordion-button::after {
        background-size: 16px;
        transition: all 0.3s ease;
    }
    
    .faq-section .accordion-body {
        padding: 20px 25px;
        line-height: 1.7;
        color: #555;
    }
    
    @media (max-width: 768px) {
        .faq-section .nav-tabs {
            justify-content: center;
        }
        
        .faq-section .nav-tabs .nav-link {
            margin-bottom: 10px;
        }
    }

.about-section {
        padding: 80px 0;
        background-color: #f9f9f9;
        font-family: 'Poppins', sans-serif;
    }

    .about-section h2 {
        color: hsl(188, 46%, 30%);
        font-weight: 700;
        margin-bottom: 30px;
        position: relative;
        font-size: 2.5rem;
    }

    .about-section h2:after {
        content: '';
        position: absolute;
        bottom: -10px;
        left: 0;
        width: 70px;
        height: 3px;
        background-color: hsl(188, 46%, 45%);
    }

    .about-section p {
        color: #666;
        line-height: 1.8;
        margin-bottom: 20px;
        font-size: 1.05rem;
    }

    .about-section .highlight {
        color: hsl(188, 46%, 30%);
        font-weight: 600;
    }

    .about-image {
        border-radius: 10px;
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s ease-in-out;
        margin-bottom: 30px;
        overflow: hidden;
    }

    .about-image img {
        width: 100%;
        height: auto;
        object-fit: cover;
        transition: transform 0.5s ease;
    }

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

    .mission-box {
        background-color: hsl(188, 46%, 70%, 0.2);
        border-left: 4px solid hsl(188, 46%, 45%);
        padding: 20px;
        margin: 25px 0;
        border-radius: 0 8px 8px 0;
    }

    .mission-box h4 {
        color: hsl(188, 46%, 30%);
        margin-bottom: 15px;
    }

    .value-item {
        display: flex;
        align-items: flex-start;
        margin-bottom: 15px;
    }

    .value-icon {
        background-color: hsl(188, 46%, 45%);
        color: white;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-right: 15px;
        flex-shrink: 0;
    }

    .value-text h5 {
        color: hsl(188, 46%, 30%);
        margin-bottom: 5px;
    }

    .value-text p {
        margin-bottom: 0;
        font-size: 0.95rem;
    }

    @media (max-width: 768px) {
        .about-section {
            padding: 50px 0;
        }
        
        .about-section h2 {
            font-size: 2rem;
        }
        
        .order-md-1 {
            order: 2 !important;
        }
        
        .order-md-2 {
            order: 1 !important;
        }
    }

.testimonials-section {
        background-color: #f9f9f9;
        padding: 80px 0;
    }
    
    .testimonials-section h2 {
        color: hsl(188, 46%, 30%);
        text-align: center;
        margin-bottom: 50px;
        font-weight: 700;
        position: relative;
    }
    
    .testimonials-section h2::after {
        content: "";
        position: absolute;
        width: 70px;
        height: 3px;
        background-color: hsl(188, 46%, 45%);
        bottom: -15px;
        left: 50%;
        transform: translateX(-50%);
    }
    
    .testimonial-card {
        background-color: white;
        border-radius: 8px;
        padding: 25px;
        margin-bottom: 30px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        height: 100%;
        position: relative;
    }
    
    .testimonial-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
    }
    
    .testimonial-text {
        font-style: italic;
        color: #555;
        margin-bottom: 20px;
        line-height: 1.6;
    }
    
    .testimonial-text::before {
        content: """;
        font-size: 50px;
        color: hsl(188, 46%, 70%);
        font-family: Georgia, serif;
        position: absolute;
        top: 10px;
        left: 15px;
        opacity: 0.3;
    }
    
    .testimonial-author {
        font-weight: 600;
        color: hsl(188, 46%, 30%);
        margin-bottom: 0;
    }
    
    .testimonial-location {
        color: #888;
        font-size: 0.9rem;
    }

.newsletter-section {
        background: linear-gradient(135deg, hsl(188, 46%, 45%), hsl(188, 46%, 30%));
        padding: 3.5rem 0;
        color: white;
        border-radius: 0.5rem;
        margin: 2rem 0;
    }
    
    .newsletter-title {
        font-size: 2.5rem;
        margin-bottom: 1rem;
        font-weight: 700;
    }
    
    .newsletter-description {
        font-size: 1.1rem;
        margin-bottom: 2rem;
        opacity: 0.9;
        max-width: 650px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .newsletter-form .form-control {
        height: 3.5rem;
        border-radius: 2rem;
        padding-left: 1.5rem;
        font-size: 1rem;
        border: none;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }
    
    .newsletter-form .form-control:focus {
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
        border: none;
    }
    
    .newsletter-btn {
        height: 3.5rem;
        border-radius: 2rem;
        padding: 0 2rem;
        background-color: hsl(188, 46%, 70%);
        border: none;
        color: hsl(188, 46%, 30%);
        font-weight: 600;
        font-size: 1rem;
        transition: all 0.3s ease;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }
    
    .newsletter-btn:hover {
        background-color: white;
        transform: translateY(-3px);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    }
    
    .benefits-list {
        max-width: 650px;
        margin: 2rem auto 0;
    }
    
    .benefit-item {
        margin-bottom: 0.7rem;
        display: flex;
        align-items: center;
    }
    
    .benefit-icon {
        margin-right: 1rem;
        font-size: 1.2rem;
        color: hsl(188, 46%, 70%);
    }
    
    @media (max-width: 767px) {
        .newsletter-title {
            font-size: 2rem;
        }
        
        .newsletter-form {
            flex-direction: column;
        }
        
        .newsletter-btn {
            margin-top: 1rem;
            width: 100%;
        }
    }

.advantages-section {
        padding: 80px 0;
        background-color: #f8f9fa;
    }
    
    .advantages-title {
        text-align: center;
        margin-bottom: 60px;
        color: hsl(188, 46%, 30%);
    }
    
    .advantages-title h2 {
        font-size: 2.5rem;
        font-weight: 700;
        position: relative;
        display: inline-block;
        margin-bottom: 20px;
    }
    
    .advantages-title h2:after {
        content: '';
        position: absolute;
        bottom: -10px;
        left: 50%;
        transform: translateX(-50%);
        width: 80px;
        height: 3px;
        background-color: hsl(188, 46%, 45%);
    }
    
    .advantage-card {
        border-radius: 10px;
        padding: 30px;
        margin-bottom: 30px;
        height: 100%;
        transition: all 0.3s ease;
        background-color: white;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        border-bottom: 3px solid transparent;
    }
    
    .advantage-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        border-bottom: 3px solid hsl(188, 46%, 45%);
    }
    
    .advantage-icon {
        font-size: 2.5rem;
        color: hsl(188, 46%, 45%);
        margin-bottom: 20px;
        display: inline-block;
        background-color: hsl(188, 46%, 95%);
        width: 80px;
        height: 80px;
        line-height: 80px;
        border-radius: 50%;
        text-align: center;
    }
    
    .advantage-title {
        font-size: 1.4rem;
        font-weight: 700;
        margin-bottom: 15px;
        color: hsl(188, 46%, 30%);
    }
    
    .advantage-description {
        color: #6c757d;
        line-height: 1.6;
    }
    
    @media (max-width: 768px) {
        .advantage-card {
            padding: 20px;
        }
        
        .advantages-title h2 {
            font-size: 2rem;
        }
    }

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

footer {
    background-color: var(--secondary-color);
    color: white;
    padding: 60px 0 30px;
    font-family: 'Open Sans', sans-serif;
}

.footer-heading {
    color: white;
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.footer-content p {
    line-height: 1.6;
    margin-bottom: 20px;
}

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

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

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

.footer-links ul li a:hover {
    color: white;
    padding-left: 5px;
}

.contact-info p {
    margin-bottom: 10px;
}

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

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

.copyright {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    font-size: 0.9rem;
}

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

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

.cookie-text {
    font-size: 0.95rem;
    line-height: 1.5;
}

.cookie-btn {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 8px 20px;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
}

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

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

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

@media (max-width: 768px) {
    .footer-col {
        margin-bottom: 30px;
    }
    
    .cookie-buttons {
        margin-top: 15px;
    }
}