:root {
            --primary: hsl(345, 38%, 45%);
            --secondary: hsl(345, 38%, 30%);
            --accent: hsl(345, 38%, 70%);
        }
        
        body {
            font-family: 'Montserrat', sans-serif;
        }
        
        .navbar {
            background-color: #fff;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }
        
        .navbar-brand {
            display: flex;
            align-items: center;
            font-weight: 700;
            color: var(--primary);
            transition: color 0.3s ease;
        }
        
        .navbar-brand:hover {
            color: var(--secondary);
        }
        
        .navbar-brand img {
            margin-right: 10px;
        }
        
        .navbar-nav .nav-link {
            color: #333;
            font-weight: 500;
            margin: 0 8px;
            position: relative;
            transition: color 0.3s ease;
        }
        
        .navbar-nav .nav-link:after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            background-color: var(--primary);
            left: 0;
            bottom: -3px;
            transition: width 0.3s ease;
        }
        
        .navbar-nav .nav-link:hover {
            color: var(--primary);
        }
        
        .navbar-nav .nav-link:hover:after {
            width: 100%;
        }
        
        .navbar-toggler {
            border: none;
            padding: 0.25rem 0.5rem;
        }
        
        .navbar-toggler:focus {
            box-shadow: none;
        }
        
        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28161, 67, 87, 1%29' 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-heading {
        color: hsl(345, 38%, 45%);
        margin-bottom: 35px;
        font-weight: 700;
        position: relative;
    }
    
    .about-heading:after {
        content: "";
        position: absolute;
        bottom: -10px;
        left: 0;
        width: 70px;
        height: 3px;
        background-color: hsl(345, 38%, 70%);
    }
    
    .about-text {
        color: #333;
        line-height: 1.8;
        margin-bottom: 30px;
    }
    
    .about-image {
        border-radius: 8px;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s ease;
        max-width: 100%;
        height: auto;
    }
    
    .about-image:hover {
        transform: translateY(-10px);
    }
    
    .timeline {
        position: relative;
        max-width: 1200px;
        margin: 50px auto;
    }
    
    .timeline::after {
        content: '';
        position: absolute;
        width: 3px;
        background-color: hsl(345, 38%, 45%);
        top: 0;
        bottom: 0;
        left: 50%;
        margin-left: -1.5px;
    }
    
    .timeline-item {
        padding: 10px 40px;
        position: relative;
        width: 50%;
        box-sizing: border-box;
    }
    
    .timeline-item:nth-child(odd) {
        left: 0;
    }
    
    .timeline-item:nth-child(even) {
        left: 50%;
    }
    
    .timeline-content {
        padding: 20px 30px;
        background-color: white;
        position: relative;
        border-radius: 6px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }
    
    .timeline-item:nth-child(odd) .timeline-content {
        border-right: 4px solid hsl(345, 38%, 70%);
    }
    
    .timeline-item:nth-child(even) .timeline-content {
        border-left: 4px solid hsl(345, 38%, 70%);
    }
    
    .timeline-year {
        position: absolute;
        width: 70px;
        height: 70px;
        right: -35px;
        background-color: hsl(345, 38%, 45%);
        border-radius: 50%;
        top: 15px;
        z-index: 1;
        color: white;
        text-align: center;
        line-height: 70px;
        font-weight: bold;
        font-size: 18px;
    }
    
    .timeline-item:nth-child(even) .timeline-year {
        left: -35px;
    }
    
    .timeline-title {
        color: hsl(345, 38%, 30%);
        margin-bottom: 15px;
    }
    
    .mission-values {
        background-color: white;
        padding: 30px;
        border-radius: 8px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        margin-top: 40px;
        border-left: 5px solid hsl(345, 38%, 45%);
    }
    
    @media screen and (max-width: 768px) {
        .timeline::after {
            left: 31px;
        }
        
        .timeline-item {
            width: 100%;
            padding-left: 70px;
            padding-right: 25px;
        }
        
        .timeline-item:nth-child(even) {
            left: 0%;
        }
        
        .timeline-year {
            left: -5px;
            right: auto;
            width: 60px;
            height: 60px;
            line-height: 60px;
            font-size: 16px;
        }
        
        .timeline-item:nth-child(even) .timeline-year {
            left: -5px;
        }
        
        .timeline-item:nth-child(odd) .timeline-content,
        .timeline-item:nth-child(even) .timeline-content {
            border-left: 4px solid hsl(345, 38%, 70%);
            border-right: none;
        }
    }

.advantages-section {
        padding: 80px 0;
        background-color: #f9f9f9;
    }
    
    .advantages-section h2 {
        color: hsl(345, 38%, 30%);
        text-align: center;
        margin-bottom: 50px;
        font-weight: 700;
        position: relative;
    }
    
    .advantages-section h2:after {
        content: "";
        position: absolute;
        bottom: -15px;
        left: 50%;
        transform: translateX(-50%);
        width: 80px;
        height: 3px;
        background-color: hsl(345, 38%, 45%);
    }
    
    .advantage-card {
        background-color: white;
        border-radius: 10px;
        padding: 30px 20px;
        margin-bottom: 30px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        height: 100%;
        transition: all 0.3s ease;
        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(345, 38%, 45%);
    }
    
    .advantage-card .icon {
        font-size: 2.5rem;
        color: hsl(345, 38%, 45%);
        margin-bottom: 20px;
        display: inline-block;
    }
    
    .advantage-card h3 {
        color: hsl(345, 38%, 30%);
        font-size: 1.3rem;
        margin-bottom: 15px;
        font-weight: 600;
    }
    
    .advantage-card p {
        color: #666;
        font-size: 0.95rem;
        line-height: 1.6;
    }
    
    @media (max-width: 767px) {
        .advantages-section {
            padding: 50px 0;
        }
        
        .advantage-card {
            margin-bottom: 20px;
        }
    }

.statistics-section {
        background-color: hsl(345, 38%, 45%);
        color: white;
        padding: 80px 0;
    }
    
    .statistics-section h2 {
        text-align: center;
        margin-bottom: 50px;
        font-weight: 700;
    }
    
    .statistics-section .counter-item {
        text-align: center;
        margin-bottom: 30px;
    }
    
    .statistics-section .counter {
        font-size: 3rem;
        font-weight: 700;
        color: white;
        margin-bottom: 10px;
    }
    
    .statistics-section .counter-title {
        font-size: 1.2rem;
        font-weight: 500;
    }
    
    .statistics-section .counter-icon {
        font-size: 2.5rem;
        margin-bottom: 15px;
        color: hsl(345, 38%, 70%);
    }
    
    .statistics-section .section-description {
        text-align: center;
        max-width: 800px;
        margin: 0 auto 40px;
    }
    
    @media (max-width: 768px) {
        .statistics-section .counter {
            font-size: 2.5rem;
        }
        
        .statistics-section .counter-icon {
            font-size: 2rem;
        }
    }

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

.footer {
    background-color: var(--secondary-color);
    color: #fff;
    padding: 3rem 0 1rem;
}

.footer h5 {
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 1.5rem;
}

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

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent-color);
    text-decoration: underline;
}

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

.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 -5px 15px rgba(0,0,0,0.1);
    padding: 1rem 0;
    z-index: 9999;
    display: none;
}

.cookie-notice.show {
    display: block;
    animation: slideUp 0.5s ease forwards;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}

.cookie-notice p {
    margin-bottom: 0.75rem;
}

.cookie-btn {
    padding: 0.5rem 1.5rem;
    border-radius: 4px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.accept-btn {
    background-color: var(--primary-color);
    color: white;
    border: none;
}

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

.learn-more-btn {
    background-color: transparent;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
}

.learn-more-btn:hover {
    background-color: var(--accent-color);
    color: var(--secondary-color);
    border-color: var(--accent-color);
}

.contact-link {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: var(--accent-color);
}

:root {
            --primary: hsl(345, 38%, 45%);
            --secondary: hsl(345, 38%, 30%);
            --accent: hsl(345, 38%, 70%);
        }
        
        body {
            font-family: 'Montserrat', sans-serif;
        }
        
        .navbar {
            background-color: #fff;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }
        
        .navbar-brand {
            display: flex;
            align-items: center;
            font-weight: 700;
            color: var(--primary);
            transition: color 0.3s ease;
        }
        
        .navbar-brand:hover {
            color: var(--secondary);
        }
        
        .navbar-brand img {
            margin-right: 10px;
        }
        
        .navbar-nav .nav-link {
            color: #333;
            font-weight: 500;
            margin: 0 8px;
            position: relative;
            transition: color 0.3s ease;
        }
        
        .navbar-nav .nav-link:after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            background-color: var(--primary);
            left: 0;
            bottom: -3px;
            transition: width 0.3s ease;
        }
        
        .navbar-nav .nav-link:hover {
            color: var(--primary);
        }
        
        .navbar-nav .nav-link:hover:after {
            width: 100%;
        }
        
        .navbar-toggler {
            border: none;
            padding: 0.25rem 0.5rem;
        }
        
        .navbar-toggler:focus {
            box-shadow: none;
        }
        
        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28161, 67, 87, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }

.privacy-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 20px;
        font-family: 'Arial', sans-serif;
        color: #333;
        line-height: 1.6;
    }
    
    .privacy-container h1 {
        color: #2c3e50;
        border-bottom: 2px solid #3498db;
        padding-bottom: 10px;
        margin-bottom: 30px;
    }
    
    .privacy-container h2 {
        color: #2980b9;
        margin-top: 30px;
        padding-bottom: 5px;
        border-bottom: 1px solid #eee;
    }
    
    .privacy-container p {
        margin-bottom: 15px;
        text-align: justify;
    }
    
    .privacy-container ul {
        margin-left: 20px;
        margin-bottom: 20px;
    }
    
    .privacy-container li {
        margin-bottom: 8px;
    }
    
    .privacy-container .highlight {
        background-color: #f8f9fa;
        padding: 15px;
        border-left: 4px solid #3498db;
        margin-bottom: 20px;
    }
    
    .privacy-container .last-updated {
        font-style: italic;
        color: #7f8c8d;
        margin-top: 40px;
    }

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

.footer {
    background-color: var(--secondary-color);
    color: #fff;
    padding: 3rem 0 1rem;
}

.footer h5 {
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 1.5rem;
}

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

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent-color);
    text-decoration: underline;
}

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

.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 -5px 15px rgba(0,0,0,0.1);
    padding: 1rem 0;
    z-index: 9999;
    display: none;
}

.cookie-notice.show {
    display: block;
    animation: slideUp 0.5s ease forwards;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}

.cookie-notice p {
    margin-bottom: 0.75rem;
}

.cookie-btn {
    padding: 0.5rem 1.5rem;
    border-radius: 4px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.accept-btn {
    background-color: var(--primary-color);
    color: white;
    border: none;
}

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

.learn-more-btn {
    background-color: transparent;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
}

.learn-more-btn:hover {
    background-color: var(--accent-color);
    color: var(--secondary-color);
    border-color: var(--accent-color);
}

.contact-link {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: var(--accent-color);
}

:root {
            --primary: hsl(345, 38%, 45%);
            --secondary: hsl(345, 38%, 30%);
            --accent: hsl(345, 38%, 70%);
        }
        
        body {
            font-family: 'Montserrat', sans-serif;
        }
        
        .navbar {
            background-color: #fff;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }
        
        .navbar-brand {
            display: flex;
            align-items: center;
            font-weight: 700;
            color: var(--primary);
            transition: color 0.3s ease;
        }
        
        .navbar-brand:hover {
            color: var(--secondary);
        }
        
        .navbar-brand img {
            margin-right: 10px;
        }
        
        .navbar-nav .nav-link {
            color: #333;
            font-weight: 500;
            margin: 0 8px;
            position: relative;
            transition: color 0.3s ease;
        }
        
        .navbar-nav .nav-link:after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            background-color: var(--primary);
            left: 0;
            bottom: -3px;
            transition: width 0.3s ease;
        }
        
        .navbar-nav .nav-link:hover {
            color: var(--primary);
        }
        
        .navbar-nav .nav-link:hover:after {
            width: 100%;
        }
        
        .navbar-toggler {
            border: none;
            padding: 0.25rem 0.5rem;
        }
        
        .navbar-toggler:focus {
            box-shadow: none;
        }
        
        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28161, 67, 87, 1%29' 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: #2c3e50;
        font-size: 2.2em;
        margin-bottom: 25px;
        border-bottom: 2px solid #e74c3c;
        padding-bottom: 10px;
    }
    .cookies-policy h2 {
        color: #3498db;
        font-size: 1.5em;
        margin: 25px 0 15px;
        padding-left: 10px;
        border-left: 4px solid #3498db;
    }
    .cookies-policy p {
        margin-bottom: 15px;
        text-align: justify;
    }
    .cookies-policy ul, .cookies-policy ol {
        padding-left: 30px;
        margin-bottom: 20px;
    }
    .cookies-policy li {
        margin-bottom: 8px;
    }
    .cookies-policy table {
        width: 100%;
        border-collapse: collapse;
        margin: 20px 0;
    }
    .cookies-policy th, .cookies-policy td {
        border: 1px solid #ddd;
        padding: 12px;
        text-align: left;
    }
    .cookies-policy th {
        background-color: #f5f5f5;
    }
    .cookies-policy .highlight {
        background-color: #f9f9f9;
        padding: 15px;
        border-radius: 5px;
        border-left: 4px solid #2ecc71;
        margin: 20px 0;
    }
    .cookies-policy .important {
        font-weight: bold;
        color: #e74c3c;
    }
    .cookies-policy .last-updated {
        font-style: italic;
        color: #7f8c8d;
        text-align: right;
        margin-top: 30px;
    }

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

.footer {
    background-color: var(--secondary-color);
    color: #fff;
    padding: 3rem 0 1rem;
}

.footer h5 {
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 1.5rem;
}

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

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent-color);
    text-decoration: underline;
}

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

.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 -5px 15px rgba(0,0,0,0.1);
    padding: 1rem 0;
    z-index: 9999;
    display: none;
}

.cookie-notice.show {
    display: block;
    animation: slideUp 0.5s ease forwards;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}

.cookie-notice p {
    margin-bottom: 0.75rem;
}

.cookie-btn {
    padding: 0.5rem 1.5rem;
    border-radius: 4px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.accept-btn {
    background-color: var(--primary-color);
    color: white;
    border: none;
}

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

.learn-more-btn {
    background-color: transparent;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
}

.learn-more-btn:hover {
    background-color: var(--accent-color);
    color: var(--secondary-color);
    border-color: var(--accent-color);
}

.contact-link {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: var(--accent-color);
}

:root {
            --primary: hsl(345, 38%, 45%);
            --secondary: hsl(345, 38%, 30%);
            --accent: hsl(345, 38%, 70%);
        }
        
        body {
            font-family: 'Montserrat', sans-serif;
        }
        
        .navbar {
            background-color: #fff;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }
        
        .navbar-brand {
            display: flex;
            align-items: center;
            font-weight: 700;
            color: var(--primary);
            transition: color 0.3s ease;
        }
        
        .navbar-brand:hover {
            color: var(--secondary);
        }
        
        .navbar-brand img {
            margin-right: 10px;
        }
        
        .navbar-nav .nav-link {
            color: #333;
            font-weight: 500;
            margin: 0 8px;
            position: relative;
            transition: color 0.3s ease;
        }
        
        .navbar-nav .nav-link:after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            background-color: var(--primary);
            left: 0;
            bottom: -3px;
            transition: width 0.3s ease;
        }
        
        .navbar-nav .nav-link:hover {
            color: var(--primary);
        }
        
        .navbar-nav .nav-link:hover:after {
            width: 100%;
        }
        
        .navbar-toggler {
            border: none;
            padding: 0.25rem 0.5rem;
        }
        
        .navbar-toggler:focus {
            box-shadow: none;
        }
        
        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28161, 67, 87, 1%29' 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: #f8f8f8;
    }
    
    .contact-title {
        color: hsl(345, 38%, 30%);
        margin-bottom: 40px;
        font-weight: 700;
    }
    
    .contact-subtitle {
        color: hsl(345, 38%, 45%);
        margin-bottom: 30px;
        font-size: 1.4rem;
    }
    
    .contact-info-card {
        background-color: white;
        border-radius: 10px;
        padding: 30px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        height: 100%;
    }
    
    .contact-info-title {
        color: hsl(345, 38%, 45%);
        font-weight: 600;
        margin-bottom: 20px;
    }
    
    .contact-info-item {
        margin-bottom: 15px;
        display: flex;
        align-items: flex-start;
    }
    
    .contact-icon {
        color: hsl(345, 38%, 45%);
        margin-right: 15px;
        font-size: 20px;
        width: 24px;
    }
    
    .contact-form {
        background-color: white;
        border-radius: 10px;
        padding: 30px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    }
    
    .form-label {
        color: hsl(345, 38%, 30%);
        font-weight: 500;
    }
    
    .form-control {
        border: 1px solid #ddd;
        padding: 12px 15px;
        border-radius: 8px;
        margin-bottom: 15px;
    }
    
    .form-control:focus {
        border-color: hsl(345, 38%, 45%);
        box-shadow: 0 0 0 0.25rem hsla(345, 38%, 45%, 0.25);
    }
    
    .btn-contact {
        background-color: hsl(345, 38%, 45%);
        color: white;
        padding: 12px 30px;
        border: none;
        border-radius: 8px;
        font-weight: 600;
        transition: all 0.3s;
        width: 100%;
    }
    
    .btn-contact:hover {
        background-color: hsl(345, 38%, 30%);
        transform: translateY(-2px);
        box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    }
    
    .hours-box {
        background-color: hsl(345, 38%, 70%);
        color: white;
        padding: 15px;
        border-radius: 8px;
        margin-top: 20px;
    }
    
    .hours-title {
        font-weight: 600;
        margin-bottom: 10px;
    }
    
    .contact-process-list {
        list-style: none;
        padding-left: 0;
        margin-top: 25px;
    }
    
    .contact-process-list li {
        position: relative;
        padding-left: 30px;
        margin-bottom: 12px;
    }
    
    .contact-process-list li:before {
        content: "";
        position: absolute;
        left: 0;
        top: 6px;
        width: 15px;
        height: 15px;
        background-color: hsl(345, 38%, 45%);
        border-radius: 50%;
    }

.about-section {
        padding: 80px 0;
        background-color: #f9f9f9;
        font-family: 'Poppins', sans-serif;
    }
    
    .about-heading {
        color: hsl(345, 38%, 45%);
        margin-bottom: 35px;
        font-weight: 700;
        position: relative;
    }
    
    .about-heading:after {
        content: "";
        position: absolute;
        bottom: -10px;
        left: 0;
        width: 70px;
        height: 3px;
        background-color: hsl(345, 38%, 70%);
    }
    
    .about-text {
        color: #333;
        line-height: 1.8;
        margin-bottom: 30px;
    }
    
    .about-image {
        border-radius: 8px;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s ease;
        max-width: 100%;
        height: auto;
    }
    
    .about-image:hover {
        transform: translateY(-10px);
    }
    
    .timeline {
        position: relative;
        max-width: 1200px;
        margin: 50px auto;
    }
    
    .timeline::after {
        content: '';
        position: absolute;
        width: 3px;
        background-color: hsl(345, 38%, 45%);
        top: 0;
        bottom: 0;
        left: 50%;
        margin-left: -1.5px;
    }
    
    .timeline-item {
        padding: 10px 40px;
        position: relative;
        width: 50%;
        box-sizing: border-box;
    }
    
    .timeline-item:nth-child(odd) {
        left: 0;
    }
    
    .timeline-item:nth-child(even) {
        left: 50%;
    }
    
    .timeline-content {
        padding: 20px 30px;
        background-color: white;
        position: relative;
        border-radius: 6px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }
    
    .timeline-item:nth-child(odd) .timeline-content {
        border-right: 4px solid hsl(345, 38%, 70%);
    }
    
    .timeline-item:nth-child(even) .timeline-content {
        border-left: 4px solid hsl(345, 38%, 70%);
    }
    
    .timeline-year {
        position: absolute;
        width: 70px;
        height: 70px;
        right: -35px;
        background-color: hsl(345, 38%, 45%);
        border-radius: 50%;
        top: 15px;
        z-index: 1;
        color: white;
        text-align: center;
        line-height: 70px;
        font-weight: bold;
        font-size: 18px;
    }
    
    .timeline-item:nth-child(even) .timeline-year {
        left: -35px;
    }
    
    .timeline-title {
        color: hsl(345, 38%, 30%);
        margin-bottom: 15px;
    }
    
    .mission-values {
        background-color: white;
        padding: 30px;
        border-radius: 8px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        margin-top: 40px;
        border-left: 5px solid hsl(345, 38%, 45%);
    }
    
    @media screen and (max-width: 768px) {
        .timeline::after {
            left: 31px;
        }
        
        .timeline-item {
            width: 100%;
            padding-left: 70px;
            padding-right: 25px;
        }
        
        .timeline-item:nth-child(even) {
            left: 0%;
        }
        
        .timeline-year {
            left: -5px;
            right: auto;
            width: 60px;
            height: 60px;
            line-height: 60px;
            font-size: 16px;
        }
        
        .timeline-item:nth-child(even) .timeline-year {
            left: -5px;
        }
        
        .timeline-item:nth-child(odd) .timeline-content,
        .timeline-item:nth-child(even) .timeline-content {
            border-left: 4px solid hsl(345, 38%, 70%);
            border-right: none;
        }
    }

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

.footer {
    background-color: var(--secondary-color);
    color: #fff;
    padding: 3rem 0 1rem;
}

.footer h5 {
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 1.5rem;
}

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

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent-color);
    text-decoration: underline;
}

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

.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 -5px 15px rgba(0,0,0,0.1);
    padding: 1rem 0;
    z-index: 9999;
    display: none;
}

.cookie-notice.show {
    display: block;
    animation: slideUp 0.5s ease forwards;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}

.cookie-notice p {
    margin-bottom: 0.75rem;
}

.cookie-btn {
    padding: 0.5rem 1.5rem;
    border-radius: 4px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.accept-btn {
    background-color: var(--primary-color);
    color: white;
    border: none;
}

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

.learn-more-btn {
    background-color: transparent;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
}

.learn-more-btn:hover {
    background-color: var(--accent-color);
    color: var(--secondary-color);
    border-color: var(--accent-color);
}

.contact-link {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: var(--accent-color);
}

:root {
            --primary: hsl(345, 38%, 45%);
            --secondary: hsl(345, 38%, 30%);
            --accent: hsl(345, 38%, 70%);
        }
        
        body {
            font-family: 'Montserrat', sans-serif;
        }
        
        .navbar {
            background-color: #fff;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }
        
        .navbar-brand {
            display: flex;
            align-items: center;
            font-weight: 700;
            color: var(--primary);
            transition: color 0.3s ease;
        }
        
        .navbar-brand:hover {
            color: var(--secondary);
        }
        
        .navbar-brand img {
            margin-right: 10px;
        }
        
        .navbar-nav .nav-link {
            color: #333;
            font-weight: 500;
            margin: 0 8px;
            position: relative;
            transition: color 0.3s ease;
        }
        
        .navbar-nav .nav-link:after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            background-color: var(--primary);
            left: 0;
            bottom: -3px;
            transition: width 0.3s ease;
        }
        
        .navbar-nav .nav-link:hover {
            color: var(--primary);
        }
        
        .navbar-nav .nav-link:hover:after {
            width: 100%;
        }
        
        .navbar-toggler {
            border: none;
            padding: 0.25rem 0.5rem;
        }
        
        .navbar-toggler:focus {
            box-shadow: none;
        }
        
        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28161, 67, 87, 1%29' 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: #f8f8f8;
    }
    
    .services-section h2 {
        color: hsl(345, 38%, 45%);
        font-weight: 700;
        text-align: center;
        margin-bottom: 50px;
        position: relative;
    }
    
    .services-section h2:after {
        content: '';
        position: absolute;
        width: 70px;
        height: 3px;
        background-color: hsl(345, 38%, 70%);
        bottom: -15px;
        left: 50%;
        transform: translateX(-50%);
    }
    
    .service-card {
        display: flex;
        align-items: flex-start;
        background-color: white;
        border-radius: 8px;
        padding: 25px;
        margin-bottom: 30px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        transition: all 0.3s ease;
        border-left: 4px solid transparent;
    }
    
    .service-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        border-left: 4px solid hsl(345, 38%, 45%);
    }
    
    .service-icon {
        flex: 0 0 80px;
        font-size: 2.5rem;
        color: hsl(345, 38%, 45%);
        margin-right: 20px;
        padding-top: 10px;
    }
    
    .service-content {
        flex: 1;
    }
    
    .service-title {
        color: hsl(345, 38%, 30%);
        font-weight: 600;
        margin-bottom: 15px;
        font-size: 1.3rem;
    }
    
    .service-description {
        color: #555;
        line-height: 1.6;
        margin-bottom: 15px;
    }
    
    .service-price {
        font-weight: 700;
        color: hsl(345, 38%, 45%);
        font-size: 1.1rem;
    }
    
    .service-conditions {
        font-size: 0.85rem;
        color: #777;
        font-style: italic;
        margin-top: 8px;
    }
    
    @media (max-width: 768px) {
        .service-card {
            flex-direction: column;
            text-align: center;
        }
        
        .service-icon {
            margin-right: 0;
            margin-bottom: 15px;
        }
    }

.newsletter-section {
        background-color: hsl(345, 38%, 45%);
        padding: 60px 0;
        color: white;
        position: relative;
        overflow: hidden;
    }
    
    .newsletter-section::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: radial-gradient(circle at center, transparent 0%, rgba(0, 0, 0, 0.3) 100%);
        z-index: 1;
    }
    
    .newsletter-container {
        position: relative;
        z-index: 2;
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 15px;
    }
    
    .newsletter-content {
        text-align: center;
        margin-bottom: 40px;
    }
    
    .newsletter-title {
        font-size: 2.5rem;
        margin-bottom: 20px;
        font-weight: 700;
        text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
    }
    
    .newsletter-description {
        font-size: 1.2rem;
        margin-bottom: 30px;
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
        line-height: 1.6;
    }
    
    .newsletter-form {
        max-width: 600px;
        margin: 0 auto;
        padding: 30px;
        background-color: rgba(255, 255, 255, 0.1);
        border-radius: 10px;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
        backdrop-filter: blur(4px);
        border: 1px solid rgba(255, 255, 255, 0.2);
    }
    
    .form-group {
        display: flex;
        flex-direction: column;
        margin-bottom: 20px;
    }
    
    @media (min-width: 768px) {
        .form-group {
            flex-direction: row;
            align-items: center;
        }
    }
    
    .form-control {
        flex: 1;
        height: 50px;
        padding: 10px 20px;
        font-size: 16px;
        border: none;
        border-radius: 5px;
        background-color: rgba(255, 255, 255, 0.9);
        color: #333;
        margin-bottom: 15px;
    }
    
    @media (min-width: 768px) {
        .form-control {
            margin-bottom: 0;
            margin-right: 15px;
            border-top-right-radius: 0;
            border-bottom-right-radius: 0;
        }
    }
    
    .form-control:focus {
        outline: none;
        box-shadow: 0 0 0 3px hsl(345, 38%, 30%);
    }
    
    .btn-subscribe {
        padding: 0 30px;
        height: 50px;
        background-color: hsl(345, 38%, 30%);
        color: white;
        border: none;
        border-radius: 5px;
        font-size: 16px;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s ease;
        text-transform: uppercase;
        letter-spacing: 1px;
    }
    
    @media (min-width: 768px) {
        .btn-subscribe {
            border-top-left-radius: 0;
            border-bottom-left-radius: 0;
        }
    }
    
    .btn-subscribe:hover {
        background-color: hsl(345, 38%, 70%);
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }
    
    .benefits-list {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        margin-top: 30px;
        gap: 20px;
    }
    
    .benefit-item {
        flex: 1 1 250px;
        max-width: 350px;
        text-align: center;
        padding: 20px;
        background-color: rgba(255, 255, 255, 0.1);
        border-radius: 8px;
        transition: transform 0.3s ease;
    }
    
    .benefit-item:hover {
        transform: translateY(-5px);
    }
    
    .benefit-title {
        font-size: 1.2rem;
        margin-bottom: 10px;
        font-weight: 600;
    }
    
    .benefit-text {
        font-size: 0.95rem;
        color: rgba(255, 255, 255, 0.9);
    }
    
    .privacy-note {
        font-size: 14px;
        margin-top: 20px;
        color: rgba(255, 255, 255, 0.8);
    }
    
    .clockface-decoration {
        position: absolute;
        width: 200px;
        height: 200px;
        border-radius: 50%;
        border: 2px solid rgba(255, 255, 255, 0.1);
        opacity: 0.2;
    }
    
    .clockface-1 {
        top: -50px;
        left: 10%;
    }
    
    .clockface-2 {
        bottom: -70px;
        right: 15%;
    }

.testimonials-section {
        padding: 80px 0;
        background-color: #f9f5f6;
    }
    
    .testimonials-section h2 {
        color: hsl(345, 38%, 45%);
        text-align: center;
        margin-bottom: 50px;
        font-weight: 700;
        position: relative;
    }
    
    .testimonials-section h2:after {
        content: "";
        display: block;
        width: 80px;
        height: 3px;
        background-color: hsl(345, 38%, 70%);
        margin: 15px auto 0;
    }
    
    .testimonial-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: transform 0.3s ease, box-shadow 0.3s ease;
        display: flex;
        flex-direction: column;
    }
    
    .testimonial-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    }
    
    .testimonial-content {
        flex-grow: 1;
        margin-bottom: 20px;
        font-style: italic;
        color: #555;
        line-height: 1.6;
        position: relative;
    }
    
    .testimonial-content:before {
        content: """;
        font-size: 60px;
        color: hsl(345, 38%, 70%);
        opacity: 0.3;
        position: absolute;
        top: -20px;
        left: -10px;
        font-family: Georgia, serif;
    }
    
    .testimonial-author {
        font-weight: 600;
        color: hsl(345, 38%, 45%);
        margin-bottom: 0;
    }
    
    .testimonial-location {
        color: #888;
        font-size: 0.9rem;
    }
    
    .stars {
        color: goldenrod;
        margin-bottom: 15px;
    }

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

.footer {
    background-color: var(--secondary-color);
    color: #fff;
    padding: 3rem 0 1rem;
}

.footer h5 {
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 1.5rem;
}

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

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent-color);
    text-decoration: underline;
}

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

.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 -5px 15px rgba(0,0,0,0.1);
    padding: 1rem 0;
    z-index: 9999;
    display: none;
}

.cookie-notice.show {
    display: block;
    animation: slideUp 0.5s ease forwards;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}

.cookie-notice p {
    margin-bottom: 0.75rem;
}

.cookie-btn {
    padding: 0.5rem 1.5rem;
    border-radius: 4px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.accept-btn {
    background-color: var(--primary-color);
    color: white;
    border: none;
}

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

.learn-more-btn {
    background-color: transparent;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
}

.learn-more-btn:hover {
    background-color: var(--accent-color);
    color: var(--secondary-color);
    border-color: var(--accent-color);
}

.contact-link {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: var(--accent-color);
}

:root {
            --primary: hsl(345, 38%, 45%);
            --secondary: hsl(345, 38%, 30%);
            --accent: hsl(345, 38%, 70%);
        }
        
        body {
            font-family: 'Montserrat', sans-serif;
        }
        
        .navbar {
            background-color: #fff;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }
        
        .navbar-brand {
            display: flex;
            align-items: center;
            font-weight: 700;
            color: var(--primary);
            transition: color 0.3s ease;
        }
        
        .navbar-brand:hover {
            color: var(--secondary);
        }
        
        .navbar-brand img {
            margin-right: 10px;
        }
        
        .navbar-nav .nav-link {
            color: #333;
            font-weight: 500;
            margin: 0 8px;
            position: relative;
            transition: color 0.3s ease;
        }
        
        .navbar-nav .nav-link:after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            background-color: var(--primary);
            left: 0;
            bottom: -3px;
            transition: width 0.3s ease;
        }
        
        .navbar-nav .nav-link:hover {
            color: var(--primary);
        }
        
        .navbar-nav .nav-link:hover:after {
            width: 100%;
        }
        
        .navbar-toggler {
            border: none;
            padding: 0.25rem 0.5rem;
        }
        
        .navbar-toggler:focus {
            box-shadow: none;
        }
        
        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28161, 67, 87, 1%29' 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;
        line-height: 1.6;
        color: #333;
        max-width: 1200px;
        margin: 0 auto;
        padding: 20px;
    }
    .terms-header {
        border-bottom: 2px solid #d9d9d9;
        padding-bottom: 15px;
        margin-bottom: 25px;
    }
    .terms-title {
        color: #2c3e50;
        font-size: 28px;
        font-weight: 700;
    }
    .terms-subtitle {
        color: #2c3e50;
        font-size: 20px;
        font-weight: 600;
        margin-top: 25px;
        margin-bottom: 15px;
        border-left: 4px solid #7f8c8d;
        padding-left: 10px;
    }
    .terms-text {
        margin-bottom: 15px;
        text-align: justify;
    }
    .terms-list {
        margin-left: 20px;
        margin-bottom: 15px;
    }
    .terms-list li {
        margin-bottom: 8px;
    }
    .terms-date {
        font-style: italic;
        color: #7f8c8d;
        text-align: right;
        margin-top: 30px;
    }

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

.footer {
    background-color: var(--secondary-color);
    color: #fff;
    padding: 3rem 0 1rem;
}

.footer h5 {
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 1.5rem;
}

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

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent-color);
    text-decoration: underline;
}

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

.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 -5px 15px rgba(0,0,0,0.1);
    padding: 1rem 0;
    z-index: 9999;
    display: none;
}

.cookie-notice.show {
    display: block;
    animation: slideUp 0.5s ease forwards;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}

.cookie-notice p {
    margin-bottom: 0.75rem;
}

.cookie-btn {
    padding: 0.5rem 1.5rem;
    border-radius: 4px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.accept-btn {
    background-color: var(--primary-color);
    color: white;
    border: none;
}

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

.learn-more-btn {
    background-color: transparent;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
}

.learn-more-btn:hover {
    background-color: var(--accent-color);
    color: var(--secondary-color);
    border-color: var(--accent-color);
}

.contact-link {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: var(--accent-color);
}

:root {
            --primary: hsl(345, 38%, 45%);
            --secondary: hsl(345, 38%, 30%);
            --accent: hsl(345, 38%, 70%);
        }
        
        body {
            font-family: 'Montserrat', sans-serif;
        }
        
        .navbar {
            background-color: #fff;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }
        
        .navbar-brand {
            display: flex;
            align-items: center;
            font-weight: 700;
            color: var(--primary);
            transition: color 0.3s ease;
        }
        
        .navbar-brand:hover {
            color: var(--secondary);
        }
        
        .navbar-brand img {
            margin-right: 10px;
        }
        
        .navbar-nav .nav-link {
            color: #333;
            font-weight: 500;
            margin: 0 8px;
            position: relative;
            transition: color 0.3s ease;
        }
        
        .navbar-nav .nav-link:after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            background-color: var(--primary);
            left: 0;
            bottom: -3px;
            transition: width 0.3s ease;
        }
        
        .navbar-nav .nav-link:hover {
            color: var(--primary);
        }
        
        .navbar-nav .nav-link:hover:after {
            width: 100%;
        }
        
        .navbar-toggler {
            border: none;
            padding: 0.25rem 0.5rem;
        }
        
        .navbar-toggler:focus {
            box-shadow: none;
        }
        
        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28161, 67, 87, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }

.faq-section {
  background-color: #fff;
  padding: 80px 0;
}

.faq-title {
  color: hsl(345, 38%, 45%);
  margin-bottom: 40px;
  font-weight: 700;
  position: relative;
}

.faq-title:after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background-color: hsl(345, 38%, 70%);
  margin-top: 15px;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.accordion-item {
  border: none;
  margin-bottom: 15px;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.accordion-header {
  background-color: #f9f9f9;
  border: none;
}

.accordion-button {
  color: hsl(345, 38%, 30%);
  font-weight: 600;
  background-color: #fff;
  box-shadow: none;
  padding: 20px 25px;
}

.accordion-button:not(.collapsed) {
  color: hsl(345, 38%, 45%);
  background-color: rgba(245, 233, 235, 0.5);
  box-shadow: none;
}

.accordion-button:focus {
  border-color: hsl(345, 38%, 70%);
  box-shadow: 0 0 0 0.25rem rgba(186, 114, 128, 0.25);
}

.accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23a94a64'%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 25px;
  color: #555;
  line-height: 1.7;
}

@media (max-width: 767px) {
  .faq-section {
    padding: 50px 0;
  }
  
  .accordion-button {
    padding: 15px 20px;
    font-size: 0.95rem;
  }
  
  .accordion-body {
    padding: 15px 20px;
    font-size: 0.9rem;
  }
}

.about-section {
        padding: 80px 0;
        background-color: #f9f9f9;
        font-family: 'Poppins', sans-serif;
    }
    
    .about-heading {
        color: hsl(345, 38%, 45%);
        margin-bottom: 35px;
        font-weight: 700;
        position: relative;
    }
    
    .about-heading:after {
        content: "";
        position: absolute;
        bottom: -10px;
        left: 0;
        width: 70px;
        height: 3px;
        background-color: hsl(345, 38%, 70%);
    }
    
    .about-text {
        color: #333;
        line-height: 1.8;
        margin-bottom: 30px;
    }
    
    .about-image {
        border-radius: 8px;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s ease;
        max-width: 100%;
        height: auto;
    }
    
    .about-image:hover {
        transform: translateY(-10px);
    }
    
    .timeline {
        position: relative;
        max-width: 1200px;
        margin: 50px auto;
    }
    
    .timeline::after {
        content: '';
        position: absolute;
        width: 3px;
        background-color: hsl(345, 38%, 45%);
        top: 0;
        bottom: 0;
        left: 50%;
        margin-left: -1.5px;
    }
    
    .timeline-item {
        padding: 10px 40px;
        position: relative;
        width: 50%;
        box-sizing: border-box;
    }
    
    .timeline-item:nth-child(odd) {
        left: 0;
    }
    
    .timeline-item:nth-child(even) {
        left: 50%;
    }
    
    .timeline-content {
        padding: 20px 30px;
        background-color: white;
        position: relative;
        border-radius: 6px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }
    
    .timeline-item:nth-child(odd) .timeline-content {
        border-right: 4px solid hsl(345, 38%, 70%);
    }
    
    .timeline-item:nth-child(even) .timeline-content {
        border-left: 4px solid hsl(345, 38%, 70%);
    }
    
    .timeline-year {
        position: absolute;
        width: 70px;
        height: 70px;
        right: -35px;
        background-color: hsl(345, 38%, 45%);
        border-radius: 50%;
        top: 15px;
        z-index: 1;
        color: white;
        text-align: center;
        line-height: 70px;
        font-weight: bold;
        font-size: 18px;
    }
    
    .timeline-item:nth-child(even) .timeline-year {
        left: -35px;
    }
    
    .timeline-title {
        color: hsl(345, 38%, 30%);
        margin-bottom: 15px;
    }
    
    .mission-values {
        background-color: white;
        padding: 30px;
        border-radius: 8px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        margin-top: 40px;
        border-left: 5px solid hsl(345, 38%, 45%);
    }
    
    @media screen and (max-width: 768px) {
        .timeline::after {
            left: 31px;
        }
        
        .timeline-item {
            width: 100%;
            padding-left: 70px;
            padding-right: 25px;
        }
        
        .timeline-item:nth-child(even) {
            left: 0%;
        }
        
        .timeline-year {
            left: -5px;
            right: auto;
            width: 60px;
            height: 60px;
            line-height: 60px;
            font-size: 16px;
        }
        
        .timeline-item:nth-child(even) .timeline-year {
            left: -5px;
        }
        
        .timeline-item:nth-child(odd) .timeline-content,
        .timeline-item:nth-child(even) .timeline-content {
            border-left: 4px solid hsl(345, 38%, 70%);
            border-right: none;
        }
    }

.newsletter-section {
        background-color: hsl(345, 38%, 45%);
        padding: 60px 0;
        color: white;
        position: relative;
        overflow: hidden;
    }
    
    .newsletter-section::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: radial-gradient(circle at center, transparent 0%, rgba(0, 0, 0, 0.3) 100%);
        z-index: 1;
    }
    
    .newsletter-container {
        position: relative;
        z-index: 2;
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 15px;
    }
    
    .newsletter-content {
        text-align: center;
        margin-bottom: 40px;
    }
    
    .newsletter-title {
        font-size: 2.5rem;
        margin-bottom: 20px;
        font-weight: 700;
        text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
    }
    
    .newsletter-description {
        font-size: 1.2rem;
        margin-bottom: 30px;
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
        line-height: 1.6;
    }
    
    .newsletter-form {
        max-width: 600px;
        margin: 0 auto;
        padding: 30px;
        background-color: rgba(255, 255, 255, 0.1);
        border-radius: 10px;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
        backdrop-filter: blur(4px);
        border: 1px solid rgba(255, 255, 255, 0.2);
    }
    
    .form-group {
        display: flex;
        flex-direction: column;
        margin-bottom: 20px;
    }
    
    @media (min-width: 768px) {
        .form-group {
            flex-direction: row;
            align-items: center;
        }
    }
    
    .form-control {
        flex: 1;
        height: 50px;
        padding: 10px 20px;
        font-size: 16px;
        border: none;
        border-radius: 5px;
        background-color: rgba(255, 255, 255, 0.9);
        color: #333;
        margin-bottom: 15px;
    }
    
    @media (min-width: 768px) {
        .form-control {
            margin-bottom: 0;
            margin-right: 15px;
            border-top-right-radius: 0;
            border-bottom-right-radius: 0;
        }
    }
    
    .form-control:focus {
        outline: none;
        box-shadow: 0 0 0 3px hsl(345, 38%, 30%);
    }
    
    .btn-subscribe {
        padding: 0 30px;
        height: 50px;
        background-color: hsl(345, 38%, 30%);
        color: white;
        border: none;
        border-radius: 5px;
        font-size: 16px;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s ease;
        text-transform: uppercase;
        letter-spacing: 1px;
    }
    
    @media (min-width: 768px) {
        .btn-subscribe {
            border-top-left-radius: 0;
            border-bottom-left-radius: 0;
        }
    }
    
    .btn-subscribe:hover {
        background-color: hsl(345, 38%, 70%);
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }
    
    .benefits-list {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        margin-top: 30px;
        gap: 20px;
    }
    
    .benefit-item {
        flex: 1 1 250px;
        max-width: 350px;
        text-align: center;
        padding: 20px;
        background-color: rgba(255, 255, 255, 0.1);
        border-radius: 8px;
        transition: transform 0.3s ease;
    }
    
    .benefit-item:hover {
        transform: translateY(-5px);
    }
    
    .benefit-title {
        font-size: 1.2rem;
        margin-bottom: 10px;
        font-weight: 600;
    }
    
    .benefit-text {
        font-size: 0.95rem;
        color: rgba(255, 255, 255, 0.9);
    }
    
    .privacy-note {
        font-size: 14px;
        margin-top: 20px;
        color: rgba(255, 255, 255, 0.8);
    }
    
    .clockface-decoration {
        position: absolute;
        width: 200px;
        height: 200px;
        border-radius: 50%;
        border: 2px solid rgba(255, 255, 255, 0.1);
        opacity: 0.2;
    }
    
    .clockface-1 {
        top: -50px;
        left: 10%;
    }
    
    .clockface-2 {
        bottom: -70px;
        right: 15%;
    }

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

.footer {
    background-color: var(--secondary-color);
    color: #fff;
    padding: 3rem 0 1rem;
}

.footer h5 {
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 1.5rem;
}

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

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent-color);
    text-decoration: underline;
}

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

.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 -5px 15px rgba(0,0,0,0.1);
    padding: 1rem 0;
    z-index: 9999;
    display: none;
}

.cookie-notice.show {
    display: block;
    animation: slideUp 0.5s ease forwards;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}

.cookie-notice p {
    margin-bottom: 0.75rem;
}

.cookie-btn {
    padding: 0.5rem 1.5rem;
    border-radius: 4px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.accept-btn {
    background-color: var(--primary-color);
    color: white;
    border: none;
}

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

.learn-more-btn {
    background-color: transparent;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
}

.learn-more-btn:hover {
    background-color: var(--accent-color);
    color: var(--secondary-color);
    border-color: var(--accent-color);
}

.contact-link {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: var(--accent-color);
}

:root {
            --primary: hsl(345, 38%, 45%);
            --secondary: hsl(345, 38%, 30%);
            --accent: hsl(345, 38%, 70%);
        }
        
        body {
            font-family: 'Montserrat', sans-serif;
        }
        
        .navbar {
            background-color: #fff;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }
        
        .navbar-brand {
            display: flex;
            align-items: center;
            font-weight: 700;
            color: var(--primary);
            transition: color 0.3s ease;
        }
        
        .navbar-brand:hover {
            color: var(--secondary);
        }
        
        .navbar-brand img {
            margin-right: 10px;
        }
        
        .navbar-nav .nav-link {
            color: #333;
            font-weight: 500;
            margin: 0 8px;
            position: relative;
            transition: color 0.3s ease;
        }
        
        .navbar-nav .nav-link:after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            background-color: var(--primary);
            left: 0;
            bottom: -3px;
            transition: width 0.3s ease;
        }
        
        .navbar-nav .nav-link:hover {
            color: var(--primary);
        }
        
        .navbar-nav .nav-link:hover:after {
            width: 100%;
        }
        
        .navbar-toggler {
            border: none;
            padding: 0.25rem 0.5rem;
        }
        
        .navbar-toggler:focus {
            box-shadow: none;
        }
        
        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28161, 67, 87, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }

.hero-section {
    background-color: #faf8f9;
    padding: 80px 0;
    overflow: hidden;
  }
  
  .hero-content h1 {
    color: hsl(345, 38%, 45%);
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
  }
  
  .hero-content h2 {
    color: hsl(345, 38%, 30%);
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
  }
  
  .hero-description {
    color: #444;
    margin-bottom: 1.5rem;
    line-height: 1.6;
  }
  
  .hero-benefits {
    margin-bottom: 2rem;
  }
  
  .hero-benefits li {
    margin-bottom: 0.75rem;
    display: flex;
    align-items: baseline;
  }
  
  .hero-benefits i {
    color: hsl(345, 38%, 45%);
    margin-right: 10px;
    font-size: 1.1rem;
  }
  
  .btn-primary {
    background-color: hsl(345, 38%, 45%);
    border-color: hsl(345, 38%, 45%);
    padding: 10px 25px;
    font-weight: 600;
    transition: all 0.3s ease;
  }
  
  .btn-primary:hover {
    background-color: hsl(345, 38%, 30%);
    border-color: hsl(345, 38%, 30%);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  }
  
  .btn-outline-secondary {
    color: hsl(345, 38%, 45%);
    border-color: hsl(345, 38%, 45%);
    padding: 10px 25px;
    font-weight: 600;
    margin-left: 10px;
    transition: all 0.3s ease;
  }
  
  .btn-outline-secondary:hover {
    background-color: hsl(345, 38%, 70%);
    border-color: hsl(345, 38%, 70%);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  }
  
  .hero-image img {
    border-radius: 10px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
    max-width: 100%;
    height: auto;
  }
  
  .hero-image img:hover {
    transform: scale(1.02);
  }
  
  @media (max-width: 991.98px) {
    .hero-section {
      padding: 50px 0;
    }
    
    .hero-content h1 {
      font-size: 2.3rem;
    }
    
    .hero-image {
      margin-top: 2rem;
    }
  }

.statistics-section {
        background-color: hsl(345, 38%, 45%);
        color: white;
        padding: 80px 0;
    }
    
    .statistics-section h2 {
        text-align: center;
        margin-bottom: 50px;
        font-weight: 700;
    }
    
    .statistics-section .counter-item {
        text-align: center;
        margin-bottom: 30px;
    }
    
    .statistics-section .counter {
        font-size: 3rem;
        font-weight: 700;
        color: white;
        margin-bottom: 10px;
    }
    
    .statistics-section .counter-title {
        font-size: 1.2rem;
        font-weight: 500;
    }
    
    .statistics-section .counter-icon {
        font-size: 2.5rem;
        margin-bottom: 15px;
        color: hsl(345, 38%, 70%);
    }
    
    .statistics-section .section-description {
        text-align: center;
        max-width: 800px;
        margin: 0 auto 40px;
    }
    
    @media (max-width: 768px) {
        .statistics-section .counter {
            font-size: 2.5rem;
        }
        
        .statistics-section .counter-icon {
            font-size: 2rem;
        }
    }

.services-section {
        padding: 80px 0;
        background-color: #f8f8f8;
    }
    
    .services-section h2 {
        color: hsl(345, 38%, 45%);
        font-weight: 700;
        text-align: center;
        margin-bottom: 50px;
        position: relative;
    }
    
    .services-section h2:after {
        content: '';
        position: absolute;
        width: 70px;
        height: 3px;
        background-color: hsl(345, 38%, 70%);
        bottom: -15px;
        left: 50%;
        transform: translateX(-50%);
    }
    
    .service-card {
        display: flex;
        align-items: flex-start;
        background-color: white;
        border-radius: 8px;
        padding: 25px;
        margin-bottom: 30px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        transition: all 0.3s ease;
        border-left: 4px solid transparent;
    }
    
    .service-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        border-left: 4px solid hsl(345, 38%, 45%);
    }
    
    .service-icon {
        flex: 0 0 80px;
        font-size: 2.5rem;
        color: hsl(345, 38%, 45%);
        margin-right: 20px;
        padding-top: 10px;
    }
    
    .service-content {
        flex: 1;
    }
    
    .service-title {
        color: hsl(345, 38%, 30%);
        font-weight: 600;
        margin-bottom: 15px;
        font-size: 1.3rem;
    }
    
    .service-description {
        color: #555;
        line-height: 1.6;
        margin-bottom: 15px;
    }
    
    .service-price {
        font-weight: 700;
        color: hsl(345, 38%, 45%);
        font-size: 1.1rem;
    }
    
    .service-conditions {
        font-size: 0.85rem;
        color: #777;
        font-style: italic;
        margin-top: 8px;
    }
    
    @media (max-width: 768px) {
        .service-card {
            flex-direction: column;
            text-align: center;
        }
        
        .service-icon {
            margin-right: 0;
            margin-bottom: 15px;
        }
    }

.advantages-section {
        padding: 80px 0;
        background-color: #f9f9f9;
    }
    
    .advantages-section h2 {
        color: hsl(345, 38%, 30%);
        text-align: center;
        margin-bottom: 50px;
        font-weight: 700;
        position: relative;
    }
    
    .advantages-section h2:after {
        content: "";
        position: absolute;
        bottom: -15px;
        left: 50%;
        transform: translateX(-50%);
        width: 80px;
        height: 3px;
        background-color: hsl(345, 38%, 45%);
    }
    
    .advantage-card {
        background-color: white;
        border-radius: 10px;
        padding: 30px 20px;
        margin-bottom: 30px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        height: 100%;
        transition: all 0.3s ease;
        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(345, 38%, 45%);
    }
    
    .advantage-card .icon {
        font-size: 2.5rem;
        color: hsl(345, 38%, 45%);
        margin-bottom: 20px;
        display: inline-block;
    }
    
    .advantage-card h3 {
        color: hsl(345, 38%, 30%);
        font-size: 1.3rem;
        margin-bottom: 15px;
        font-weight: 600;
    }
    
    .advantage-card p {
        color: #666;
        font-size: 0.95rem;
        line-height: 1.6;
    }
    
    @media (max-width: 767px) {
        .advantages-section {
            padding: 50px 0;
        }
        
        .advantage-card {
            margin-bottom: 20px;
        }
    }

.newsletter-section {
        background-color: hsl(345, 38%, 45%);
        padding: 60px 0;
        color: white;
        position: relative;
        overflow: hidden;
    }
    
    .newsletter-section::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: radial-gradient(circle at center, transparent 0%, rgba(0, 0, 0, 0.3) 100%);
        z-index: 1;
    }
    
    .newsletter-container {
        position: relative;
        z-index: 2;
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 15px;
    }
    
    .newsletter-content {
        text-align: center;
        margin-bottom: 40px;
    }
    
    .newsletter-title {
        font-size: 2.5rem;
        margin-bottom: 20px;
        font-weight: 700;
        text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
    }
    
    .newsletter-description {
        font-size: 1.2rem;
        margin-bottom: 30px;
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
        line-height: 1.6;
    }
    
    .newsletter-form {
        max-width: 600px;
        margin: 0 auto;
        padding: 30px;
        background-color: rgba(255, 255, 255, 0.1);
        border-radius: 10px;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
        backdrop-filter: blur(4px);
        border: 1px solid rgba(255, 255, 255, 0.2);
    }
    
    .form-group {
        display: flex;
        flex-direction: column;
        margin-bottom: 20px;
    }
    
    @media (min-width: 768px) {
        .form-group {
            flex-direction: row;
            align-items: center;
        }
    }
    
    .form-control {
        flex: 1;
        height: 50px;
        padding: 10px 20px;
        font-size: 16px;
        border: none;
        border-radius: 5px;
        background-color: rgba(255, 255, 255, 0.9);
        color: #333;
        margin-bottom: 15px;
    }
    
    @media (min-width: 768px) {
        .form-control {
            margin-bottom: 0;
            margin-right: 15px;
            border-top-right-radius: 0;
            border-bottom-right-radius: 0;
        }
    }
    
    .form-control:focus {
        outline: none;
        box-shadow: 0 0 0 3px hsl(345, 38%, 30%);
    }
    
    .btn-subscribe {
        padding: 0 30px;
        height: 50px;
        background-color: hsl(345, 38%, 30%);
        color: white;
        border: none;
        border-radius: 5px;
        font-size: 16px;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s ease;
        text-transform: uppercase;
        letter-spacing: 1px;
    }
    
    @media (min-width: 768px) {
        .btn-subscribe {
            border-top-left-radius: 0;
            border-bottom-left-radius: 0;
        }
    }
    
    .btn-subscribe:hover {
        background-color: hsl(345, 38%, 70%);
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }
    
    .benefits-list {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        margin-top: 30px;
        gap: 20px;
    }
    
    .benefit-item {
        flex: 1 1 250px;
        max-width: 350px;
        text-align: center;
        padding: 20px;
        background-color: rgba(255, 255, 255, 0.1);
        border-radius: 8px;
        transition: transform 0.3s ease;
    }
    
    .benefit-item:hover {
        transform: translateY(-5px);
    }
    
    .benefit-title {
        font-size: 1.2rem;
        margin-bottom: 10px;
        font-weight: 600;
    }
    
    .benefit-text {
        font-size: 0.95rem;
        color: rgba(255, 255, 255, 0.9);
    }
    
    .privacy-note {
        font-size: 14px;
        margin-top: 20px;
        color: rgba(255, 255, 255, 0.8);
    }
    
    .clockface-decoration {
        position: absolute;
        width: 200px;
        height: 200px;
        border-radius: 50%;
        border: 2px solid rgba(255, 255, 255, 0.1);
        opacity: 0.2;
    }
    
    .clockface-1 {
        top: -50px;
        left: 10%;
    }
    
    .clockface-2 {
        bottom: -70px;
        right: 15%;
    }

.about-section {
        padding: 80px 0;
        background-color: #f9f9f9;
        font-family: 'Poppins', sans-serif;
    }
    
    .about-heading {
        color: hsl(345, 38%, 45%);
        margin-bottom: 35px;
        font-weight: 700;
        position: relative;
    }
    
    .about-heading:after {
        content: "";
        position: absolute;
        bottom: -10px;
        left: 0;
        width: 70px;
        height: 3px;
        background-color: hsl(345, 38%, 70%);
    }
    
    .about-text {
        color: #333;
        line-height: 1.8;
        margin-bottom: 30px;
    }
    
    .about-image {
        border-radius: 8px;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s ease;
        max-width: 100%;
        height: auto;
    }
    
    .about-image:hover {
        transform: translateY(-10px);
    }
    
    .timeline {
        position: relative;
        max-width: 1200px;
        margin: 50px auto;
    }
    
    .timeline::after {
        content: '';
        position: absolute;
        width: 3px;
        background-color: hsl(345, 38%, 45%);
        top: 0;
        bottom: 0;
        left: 50%;
        margin-left: -1.5px;
    }
    
    .timeline-item {
        padding: 10px 40px;
        position: relative;
        width: 50%;
        box-sizing: border-box;
    }
    
    .timeline-item:nth-child(odd) {
        left: 0;
    }
    
    .timeline-item:nth-child(even) {
        left: 50%;
    }
    
    .timeline-content {
        padding: 20px 30px;
        background-color: white;
        position: relative;
        border-radius: 6px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }
    
    .timeline-item:nth-child(odd) .timeline-content {
        border-right: 4px solid hsl(345, 38%, 70%);
    }
    
    .timeline-item:nth-child(even) .timeline-content {
        border-left: 4px solid hsl(345, 38%, 70%);
    }
    
    .timeline-year {
        position: absolute;
        width: 70px;
        height: 70px;
        right: -35px;
        background-color: hsl(345, 38%, 45%);
        border-radius: 50%;
        top: 15px;
        z-index: 1;
        color: white;
        text-align: center;
        line-height: 70px;
        font-weight: bold;
        font-size: 18px;
    }
    
    .timeline-item:nth-child(even) .timeline-year {
        left: -35px;
    }
    
    .timeline-title {
        color: hsl(345, 38%, 30%);
        margin-bottom: 15px;
    }
    
    .mission-values {
        background-color: white;
        padding: 30px;
        border-radius: 8px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        margin-top: 40px;
        border-left: 5px solid hsl(345, 38%, 45%);
    }
    
    @media screen and (max-width: 768px) {
        .timeline::after {
            left: 31px;
        }
        
        .timeline-item {
            width: 100%;
            padding-left: 70px;
            padding-right: 25px;
        }
        
        .timeline-item:nth-child(even) {
            left: 0%;
        }
        
        .timeline-year {
            left: -5px;
            right: auto;
            width: 60px;
            height: 60px;
            line-height: 60px;
            font-size: 16px;
        }
        
        .timeline-item:nth-child(even) .timeline-year {
            left: -5px;
        }
        
        .timeline-item:nth-child(odd) .timeline-content,
        .timeline-item:nth-child(even) .timeline-content {
            border-left: 4px solid hsl(345, 38%, 70%);
            border-right: none;
        }
    }

.faq-section {
  background-color: #fff;
  padding: 80px 0;
}

.faq-title {
  color: hsl(345, 38%, 45%);
  margin-bottom: 40px;
  font-weight: 700;
  position: relative;
}

.faq-title:after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background-color: hsl(345, 38%, 70%);
  margin-top: 15px;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.accordion-item {
  border: none;
  margin-bottom: 15px;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.accordion-header {
  background-color: #f9f9f9;
  border: none;
}

.accordion-button {
  color: hsl(345, 38%, 30%);
  font-weight: 600;
  background-color: #fff;
  box-shadow: none;
  padding: 20px 25px;
}

.accordion-button:not(.collapsed) {
  color: hsl(345, 38%, 45%);
  background-color: rgba(245, 233, 235, 0.5);
  box-shadow: none;
}

.accordion-button:focus {
  border-color: hsl(345, 38%, 70%);
  box-shadow: 0 0 0 0.25rem rgba(186, 114, 128, 0.25);
}

.accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23a94a64'%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 25px;
  color: #555;
  line-height: 1.7;
}

@media (max-width: 767px) {
  .faq-section {
    padding: 50px 0;
  }
  
  .accordion-button {
    padding: 15px 20px;
    font-size: 0.95rem;
  }
  
  .accordion-body {
    padding: 15px 20px;
    font-size: 0.9rem;
  }
}

.contact-section {
        padding: 80px 0;
        background-color: #f8f8f8;
    }
    
    .contact-title {
        color: hsl(345, 38%, 30%);
        margin-bottom: 40px;
        font-weight: 700;
    }
    
    .contact-subtitle {
        color: hsl(345, 38%, 45%);
        margin-bottom: 30px;
        font-size: 1.4rem;
    }
    
    .contact-info-card {
        background-color: white;
        border-radius: 10px;
        padding: 30px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        height: 100%;
    }
    
    .contact-info-title {
        color: hsl(345, 38%, 45%);
        font-weight: 600;
        margin-bottom: 20px;
    }
    
    .contact-info-item {
        margin-bottom: 15px;
        display: flex;
        align-items: flex-start;
    }
    
    .contact-icon {
        color: hsl(345, 38%, 45%);
        margin-right: 15px;
        font-size: 20px;
        width: 24px;
    }
    
    .contact-form {
        background-color: white;
        border-radius: 10px;
        padding: 30px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    }
    
    .form-label {
        color: hsl(345, 38%, 30%);
        font-weight: 500;
    }
    
    .form-control {
        border: 1px solid #ddd;
        padding: 12px 15px;
        border-radius: 8px;
        margin-bottom: 15px;
    }
    
    .form-control:focus {
        border-color: hsl(345, 38%, 45%);
        box-shadow: 0 0 0 0.25rem hsla(345, 38%, 45%, 0.25);
    }
    
    .btn-contact {
        background-color: hsl(345, 38%, 45%);
        color: white;
        padding: 12px 30px;
        border: none;
        border-radius: 8px;
        font-weight: 600;
        transition: all 0.3s;
        width: 100%;
    }
    
    .btn-contact:hover {
        background-color: hsl(345, 38%, 30%);
        transform: translateY(-2px);
        box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    }
    
    .hours-box {
        background-color: hsl(345, 38%, 70%);
        color: white;
        padding: 15px;
        border-radius: 8px;
        margin-top: 20px;
    }
    
    .hours-title {
        font-weight: 600;
        margin-bottom: 10px;
    }
    
    .contact-process-list {
        list-style: none;
        padding-left: 0;
        margin-top: 25px;
    }
    
    .contact-process-list li {
        position: relative;
        padding-left: 30px;
        margin-bottom: 12px;
    }
    
    .contact-process-list li:before {
        content: "";
        position: absolute;
        left: 0;
        top: 6px;
        width: 15px;
        height: 15px;
        background-color: hsl(345, 38%, 45%);
        border-radius: 50%;
    }

.testimonials-section {
        padding: 80px 0;
        background-color: #f9f5f6;
    }
    
    .testimonials-section h2 {
        color: hsl(345, 38%, 45%);
        text-align: center;
        margin-bottom: 50px;
        font-weight: 700;
        position: relative;
    }
    
    .testimonials-section h2:after {
        content: "";
        display: block;
        width: 80px;
        height: 3px;
        background-color: hsl(345, 38%, 70%);
        margin: 15px auto 0;
    }
    
    .testimonial-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: transform 0.3s ease, box-shadow 0.3s ease;
        display: flex;
        flex-direction: column;
    }
    
    .testimonial-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    }
    
    .testimonial-content {
        flex-grow: 1;
        margin-bottom: 20px;
        font-style: italic;
        color: #555;
        line-height: 1.6;
        position: relative;
    }
    
    .testimonial-content:before {
        content: """;
        font-size: 60px;
        color: hsl(345, 38%, 70%);
        opacity: 0.3;
        position: absolute;
        top: -20px;
        left: -10px;
        font-family: Georgia, serif;
    }
    
    .testimonial-author {
        font-weight: 600;
        color: hsl(345, 38%, 45%);
        margin-bottom: 0;
    }
    
    .testimonial-location {
        color: #888;
        font-size: 0.9rem;
    }
    
    .stars {
        color: goldenrod;
        margin-bottom: 15px;
    }

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

.footer {
    background-color: var(--secondary-color);
    color: #fff;
    padding: 3rem 0 1rem;
}

.footer h5 {
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 1.5rem;
}

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

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent-color);
    text-decoration: underline;
}

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

.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 -5px 15px rgba(0,0,0,0.1);
    padding: 1rem 0;
    z-index: 9999;
    display: none;
}

.cookie-notice.show {
    display: block;
    animation: slideUp 0.5s ease forwards;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}

.cookie-notice p {
    margin-bottom: 0.75rem;
}

.cookie-btn {
    padding: 0.5rem 1.5rem;
    border-radius: 4px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.accept-btn {
    background-color: var(--primary-color);
    color: white;
    border: none;
}

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

.learn-more-btn {
    background-color: transparent;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
}

.learn-more-btn:hover {
    background-color: var(--accent-color);
    color: var(--secondary-color);
    border-color: var(--accent-color);
}

.contact-link {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: var(--accent-color);
}