:root {
            --primary-color: hsl(38, 58%, 35%);
            --secondary-color: hsl(38, 58%, 20%);
            --accent-color: hsl(38, 58%, 60%);
        }
        
        body {
            font-family: 'Poppins', sans-serif;
            color: #333;
        }
        
        .navbar {
            background-color: rgba(255, 255, 255, 0.95);
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }
        
        .navbar-brand {
            display: flex;
            align-items: center;
            font-weight: 600;
            color: var(--primary-color);
            transition: all 0.3s ease;
        }
        
        .navbar-brand:hover {
            color: var(--accent-color);
        }
        
        .navbar-brand img {
            margin-right: 10px;
        }
        
        .nav-link {
            color: var(--secondary-color);
            font-weight: 500;
            position: relative;
            padding: 0.5rem 1rem;
            margin: 0 0.2rem;
            transition: all 0.3s ease;
        }
        
        .nav-link:hover {
            color: var(--accent-color);
        }
        
        .nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0;
            left: 0;
            background-color: var(--accent-color);
            transition: width 0.3s ease;
        }
        
        .nav-link:hover::after {
            width: 100%;
        }
        
        .navbar-toggler {
            border: none;
            padding: 0.25rem 0.5rem;
        }
        
        .navbar-toggler:focus {
            box-shadow: none;
            outline: 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(125, 91, 38, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        @media (max-width: 991.98px) {
            .navbar-collapse {
                background-color: rgba(255, 255, 255, 0.98);
                padding: 1rem;
                border-radius: 0.5rem;
                box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            }
            
            .nav-link::after {
                display: none;
            }
            
            .nav-link:hover {
                background-color: var(--accent-color);
                color: white;
                border-radius: 4px;
            }
        }

.about-section {
        padding: 5rem 0;
        background-color: #fff;
        font-family: 'Poppins', sans-serif;
    }
    
    .about-section h2 {
        color: hsl(38, 58%, 35%);
        font-weight: 700;
        margin-bottom: 2rem;
        position: relative;
        font-size: 2.5rem;
    }
    
    .about-section h2:after {
        content: '';
        position: absolute;
        left: 0;
        bottom: -10px;
        height: 3px;
        width: 60px;
        background-color: hsl(38, 58%, 60%);
    }
    
    .about-section p {
        color: #555;
        line-height: 1.8;
        margin-bottom: 1.5rem;
    }
    
    .about-image {
        border-radius: 10px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        transition: transform 0.3s ease;
        max-width: 100%;
        height: auto;
    }
    
    .about-image:hover {
        transform: translateY(-5px);
    }
    
    .timeline {
        position: relative;
        padding-left: 30px;
        margin-top: 3rem;
    }
    
    .timeline:before {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        height: 100%;
        width: 2px;
        background-color: hsl(38, 58%, 60%);
    }
    
    .timeline-item {
        position: relative;
        padding-bottom: 2rem;
    }
    
    .timeline-item:last-child {
        padding-bottom: 0;
    }
    
    .timeline-item:before {
        content: '';
        position: absolute;
        left: -34px;
        top: 6px;
        height: 12px;
        width: 12px;
        border-radius: 50%;
        background-color: hsl(38, 58%, 35%);
        border: 2px solid #fff;
    }
    
    .timeline-date {
        font-weight: 600;
        color: hsl(38, 58%, 35%);
        margin-bottom: 0.5rem;
    }
    
    .timeline-content {
        margin-bottom: 0.5rem;
    }
    
    .mission-card {
        background-color: #f9f5ef;
        border-left: 4px solid hsl(38, 58%, 35%);
        padding: 2rem;
        border-radius: 0 10px 10px 0;
        margin-bottom: 2rem;
    }
    
    .mission-card h3 {
        color: hsl(38, 58%, 20%);
        margin-bottom: 1rem;
        font-size: 1.5rem;
    }
    
    @media (max-width: 768px) {
        .about-section h2 {
            font-size: 2rem;
        }
        
        .image-container {
            margin-bottom: 2rem;
        }
    }

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

.advantages-section h2 {
    color: hsl(38, 58%, 35%);
    text-align: center;
    margin-bottom: 50px;
    font-weight: 700;
    position: relative;
}

.advantages-section h2:after {
    content: "";
    position: absolute;
    width: 80px;
    height: 3px;
    background-color: hsl(38, 58%, 60%);
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
}

.advantage-card {
    padding: 30px 20px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid rgba(0,0,0,0.05);
    background-color: #fff;
}

.advantage-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    border-bottom: 3px solid hsl(38, 58%, 60%);
}

.advantage-icon {
    font-size: 2.5rem;
    color: hsl(38, 58%, 35%);
    margin-bottom: 20px;
    display: inline-block;
}

.advantage-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: hsl(38, 58%, 20%);
}

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

@media (max-width: 768px) {
    .advantages-section {
        padding: 50px 0;
    }
    
    .advantage-card {
        margin-bottom: 30px;
    }
}

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

.statistics-section h2 {
    color: hsl(38, 58%, 35%);
    margin-bottom: 50px;
    font-weight: 700;
    text-align: center;
    position: relative;
}

.statistics-section h2:after {
    content: "";
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: hsl(38, 58%, 60%);
}

.stat-circle {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: 10px solid hsl(38, 58%, 35%);
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.3s ease;
}

.stat-circle:hover {
    transform: scale(1.05);
    border-color: hsl(38, 58%, 60%);
}

.stat-circle .number {
    font-size: 2.5rem;
    font-weight: 700;
    color: hsl(38, 58%, 20%);
}

.stat-content {
    text-align: center;
    margin-bottom: 40px;
}

.stat-content h3 {
    color: hsl(38, 58%, 35%);
    font-size: 1.2rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.stat-content p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.5;
}

.stat-icon {
    display: block;
    font-size: 2rem;
    color: hsl(38, 58%, 60%);
    margin-bottom: 15px;
}

@media (max-width: 768px) {
    .stat-circle {
        width: 120px;
        height: 120px;
    }
    
    .stat-circle .number {
        font-size: 2rem;
    }
}

:root {
        --primary-color: hsl(38, 58%, 35%);
        --secondary-color: hsl(38, 58%, 20%);
        --accent-color: hsl(38, 58%, 60%);
    }
    
    footer {
        background-color: var(--secondary-color);
        color: #fff;
        padding: 3rem 0;
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    }
    
    footer h5 {
        color: var(--accent-color);
        font-weight: 600;
        margin-bottom: 1.2rem;
    }
    
    footer p {
        font-size: 0.95rem;
        line-height: 1.6;
    }
    
    footer a {
        color: #fff;
        text-decoration: none;
        transition: color 0.3s ease;
    }
    
    footer a:hover {
        color: var(--accent-color);
    }
    
    footer .nav-link {
        padding: 0.3rem 0;
    }
    
    footer .copyright {
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        padding-top: 1.5rem;
        margin-top: 2rem;
    }
    
    .cookie-notice {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        background-color: var(--secondary-color);
        color: #fff;
        padding: 1rem 0;
        z-index: 1000;
        box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.1);
        transform: translateY(100%);
        transition: transform 0.4s ease-in-out;
    }
    
    .cookie-notice.show {
        transform: translateY(0);
    }
    
    .cookie-btn {
        padding: 0.5rem 1.2rem;
        border-radius: 4px;
        font-weight: 500;
        transition: all 0.3s ease;
    }
    
    .accept-btn {
        background-color: var(--accent-color);
        color: var(--secondary-color);
        border: none;
    }
    
    .accept-btn:hover {
        background-color: #fff;
        color: var(--primary-color);
    }
    
    .learn-more-btn {
        background-color: transparent;
        color: #fff;
        border: 1px solid #fff;
    }
    
    .learn-more-btn:hover {
        background-color: rgba(255, 255, 255, 0.1);
    }

:root {
            --primary-color: hsl(38, 58%, 35%);
            --secondary-color: hsl(38, 58%, 20%);
            --accent-color: hsl(38, 58%, 60%);
        }
        
        body {
            font-family: 'Poppins', sans-serif;
            color: #333;
        }
        
        .navbar {
            background-color: rgba(255, 255, 255, 0.95);
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }
        
        .navbar-brand {
            display: flex;
            align-items: center;
            font-weight: 600;
            color: var(--primary-color);
            transition: all 0.3s ease;
        }
        
        .navbar-brand:hover {
            color: var(--accent-color);
        }
        
        .navbar-brand img {
            margin-right: 10px;
        }
        
        .nav-link {
            color: var(--secondary-color);
            font-weight: 500;
            position: relative;
            padding: 0.5rem 1rem;
            margin: 0 0.2rem;
            transition: all 0.3s ease;
        }
        
        .nav-link:hover {
            color: var(--accent-color);
        }
        
        .nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0;
            left: 0;
            background-color: var(--accent-color);
            transition: width 0.3s ease;
        }
        
        .nav-link:hover::after {
            width: 100%;
        }
        
        .navbar-toggler {
            border: none;
            padding: 0.25rem 0.5rem;
        }
        
        .navbar-toggler:focus {
            box-shadow: none;
            outline: 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(125, 91, 38, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        @media (max-width: 991.98px) {
            .navbar-collapse {
                background-color: rgba(255, 255, 255, 0.98);
                padding: 1rem;
                border-radius: 0.5rem;
                box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            }
            
            .nav-link::after {
                display: none;
            }
            
            .nav-link:hover {
                background-color: var(--accent-color);
                color: white;
                border-radius: 4px;
            }
        }

.privacy-container {
        max-width: 1200px;
        margin: 0 auto;
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        line-height: 1.6;
        color: #333;
    }
    
    .privacy-header {
        text-align: center;
        padding: 20px 0;
        border-bottom: 1px solid #eaeaea;
        margin-bottom: 30px;
    }
    
    .privacy-header h1 {
        color: #4a7c59;
        font-size: 2.5em;
        margin-bottom: 10px;
    }
    
    .privacy-header p {
        color: #777;
        font-size: 1.1em;
    }
    
    .privacy-section {
        margin-bottom: 30px;
        padding: 0 20px;
    }
    
    .privacy-section h2 {
        color: #4a7c59;
        font-size: 1.8em;
        border-left: 4px solid #4a7c59;
        padding-left: 15px;
        margin-bottom: 20px;
    }
    
    .privacy-section h3 {
        color: #5d5d5d;
        font-size: 1.4em;
        margin: 20px 0 15px;
    }
    
    .privacy-section p, .privacy-section ul {
        margin-bottom: 15px;
    }
    
    .privacy-section ul {
        padding-left: 30px;
    }
    
    .privacy-section ul li {
        margin-bottom: 10px;
    }
    
    .last-updated {
        text-align: center;
        font-style: italic;
        color: #777;
        margin-top: 40px;
        padding-top: 20px;
        border-top: 1px solid #eaeaea;
    }

:root {
        --primary-color: hsl(38, 58%, 35%);
        --secondary-color: hsl(38, 58%, 20%);
        --accent-color: hsl(38, 58%, 60%);
    }
    
    footer {
        background-color: var(--secondary-color);
        color: #fff;
        padding: 3rem 0;
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    }
    
    footer h5 {
        color: var(--accent-color);
        font-weight: 600;
        margin-bottom: 1.2rem;
    }
    
    footer p {
        font-size: 0.95rem;
        line-height: 1.6;
    }
    
    footer a {
        color: #fff;
        text-decoration: none;
        transition: color 0.3s ease;
    }
    
    footer a:hover {
        color: var(--accent-color);
    }
    
    footer .nav-link {
        padding: 0.3rem 0;
    }
    
    footer .copyright {
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        padding-top: 1.5rem;
        margin-top: 2rem;
    }
    
    .cookie-notice {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        background-color: var(--secondary-color);
        color: #fff;
        padding: 1rem 0;
        z-index: 1000;
        box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.1);
        transform: translateY(100%);
        transition: transform 0.4s ease-in-out;
    }
    
    .cookie-notice.show {
        transform: translateY(0);
    }
    
    .cookie-btn {
        padding: 0.5rem 1.2rem;
        border-radius: 4px;
        font-weight: 500;
        transition: all 0.3s ease;
    }
    
    .accept-btn {
        background-color: var(--accent-color);
        color: var(--secondary-color);
        border: none;
    }
    
    .accept-btn:hover {
        background-color: #fff;
        color: var(--primary-color);
    }
    
    .learn-more-btn {
        background-color: transparent;
        color: #fff;
        border: 1px solid #fff;
    }
    
    .learn-more-btn:hover {
        background-color: rgba(255, 255, 255, 0.1);
    }

:root {
            --primary-color: hsl(38, 58%, 35%);
            --secondary-color: hsl(38, 58%, 20%);
            --accent-color: hsl(38, 58%, 60%);
        }
        
        body {
            font-family: 'Poppins', sans-serif;
            color: #333;
        }
        
        .navbar {
            background-color: rgba(255, 255, 255, 0.95);
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }
        
        .navbar-brand {
            display: flex;
            align-items: center;
            font-weight: 600;
            color: var(--primary-color);
            transition: all 0.3s ease;
        }
        
        .navbar-brand:hover {
            color: var(--accent-color);
        }
        
        .navbar-brand img {
            margin-right: 10px;
        }
        
        .nav-link {
            color: var(--secondary-color);
            font-weight: 500;
            position: relative;
            padding: 0.5rem 1rem;
            margin: 0 0.2rem;
            transition: all 0.3s ease;
        }
        
        .nav-link:hover {
            color: var(--accent-color);
        }
        
        .nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0;
            left: 0;
            background-color: var(--accent-color);
            transition: width 0.3s ease;
        }
        
        .nav-link:hover::after {
            width: 100%;
        }
        
        .navbar-toggler {
            border: none;
            padding: 0.25rem 0.5rem;
        }
        
        .navbar-toggler:focus {
            box-shadow: none;
            outline: 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(125, 91, 38, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        @media (max-width: 991.98px) {
            .navbar-collapse {
                background-color: rgba(255, 255, 255, 0.98);
                padding: 1rem;
                border-radius: 0.5rem;
                box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            }
            
            .nav-link::after {
                display: none;
            }
            
            .nav-link:hover {
                background-color: var(--accent-color);
                color: white;
                border-radius: 4px;
            }
        }

.cookies-policy {
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        max-width: 1000px;
        margin: 0 auto;
        padding: 20px;
        color: #333;
        line-height: 1.6;
    }
    .cookies-policy h1 {
        color: #5a7d7c;
        font-size: 2.2em;
        margin-bottom: 20px;
        text-align: center;
        border-bottom: 2px solid #5a7d7c;
        padding-bottom: 10px;
    }
    .cookies-policy h2 {
        color: #5a7d7c;
        font-size: 1.5em;
        margin-top: 30px;
        margin-bottom: 15px;
        border-left: 4px solid #5a7d7c;
        padding-left: 10px;
    }
    .cookies-policy p {
        margin-bottom: 15px;
        text-align: justify;
    }
    .cookies-policy ul {
        padding-left: 20px;
        margin-bottom: 15px;
    }
    .cookies-policy li {
        margin-bottom: 8px;
    }
    .cookies-policy .highlight {
        background-color: #f0f7f7;
        padding: 15px;
        border-radius: 5px;
        border-left: 4px solid #5a7d7c;
        margin: 20px 0;
    }
    .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: 10px;
        text-align: left;
    }
    .cookies-policy th {
        background-color: #5a7d7c;
        color: white;
    }
    .cookies-policy tr:nth-child(even) {
        background-color: #f2f2f2;
    }

:root {
        --primary-color: hsl(38, 58%, 35%);
        --secondary-color: hsl(38, 58%, 20%);
        --accent-color: hsl(38, 58%, 60%);
    }
    
    footer {
        background-color: var(--secondary-color);
        color: #fff;
        padding: 3rem 0;
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    }
    
    footer h5 {
        color: var(--accent-color);
        font-weight: 600;
        margin-bottom: 1.2rem;
    }
    
    footer p {
        font-size: 0.95rem;
        line-height: 1.6;
    }
    
    footer a {
        color: #fff;
        text-decoration: none;
        transition: color 0.3s ease;
    }
    
    footer a:hover {
        color: var(--accent-color);
    }
    
    footer .nav-link {
        padding: 0.3rem 0;
    }
    
    footer .copyright {
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        padding-top: 1.5rem;
        margin-top: 2rem;
    }
    
    .cookie-notice {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        background-color: var(--secondary-color);
        color: #fff;
        padding: 1rem 0;
        z-index: 1000;
        box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.1);
        transform: translateY(100%);
        transition: transform 0.4s ease-in-out;
    }
    
    .cookie-notice.show {
        transform: translateY(0);
    }
    
    .cookie-btn {
        padding: 0.5rem 1.2rem;
        border-radius: 4px;
        font-weight: 500;
        transition: all 0.3s ease;
    }
    
    .accept-btn {
        background-color: var(--accent-color);
        color: var(--secondary-color);
        border: none;
    }
    
    .accept-btn:hover {
        background-color: #fff;
        color: var(--primary-color);
    }
    
    .learn-more-btn {
        background-color: transparent;
        color: #fff;
        border: 1px solid #fff;
    }
    
    .learn-more-btn:hover {
        background-color: rgba(255, 255, 255, 0.1);
    }

:root {
            --primary-color: hsl(38, 58%, 35%);
            --secondary-color: hsl(38, 58%, 20%);
            --accent-color: hsl(38, 58%, 60%);
        }
        
        body {
            font-family: 'Poppins', sans-serif;
            color: #333;
        }
        
        .navbar {
            background-color: rgba(255, 255, 255, 0.95);
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }
        
        .navbar-brand {
            display: flex;
            align-items: center;
            font-weight: 600;
            color: var(--primary-color);
            transition: all 0.3s ease;
        }
        
        .navbar-brand:hover {
            color: var(--accent-color);
        }
        
        .navbar-brand img {
            margin-right: 10px;
        }
        
        .nav-link {
            color: var(--secondary-color);
            font-weight: 500;
            position: relative;
            padding: 0.5rem 1rem;
            margin: 0 0.2rem;
            transition: all 0.3s ease;
        }
        
        .nav-link:hover {
            color: var(--accent-color);
        }
        
        .nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0;
            left: 0;
            background-color: var(--accent-color);
            transition: width 0.3s ease;
        }
        
        .nav-link:hover::after {
            width: 100%;
        }
        
        .navbar-toggler {
            border: none;
            padding: 0.25rem 0.5rem;
        }
        
        .navbar-toggler:focus {
            box-shadow: none;
            outline: 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(125, 91, 38, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        @media (max-width: 991.98px) {
            .navbar-collapse {
                background-color: rgba(255, 255, 255, 0.98);
                padding: 1rem;
                border-radius: 0.5rem;
                box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            }
            
            .nav-link::after {
                display: none;
            }
            
            .nav-link:hover {
                background-color: var(--accent-color);
                color: white;
                border-radius: 4px;
            }
        }

.contact-section {
        padding: 6rem 0;
        background-color: #fff;
        color: hsl(38, 58%, 20%);
    }
    
    .contact-section h2 {
        color: hsl(38, 58%, 35%);
        font-weight: 700;
        margin-bottom: 2rem;
        position: relative;
        display: inline-block;
    }
    
    .contact-section h2:after {
        content: "";
        position: absolute;
        width: 50%;
        height: 3px;
        background-color: hsl(38, 58%, 60%);
        bottom: -10px;
        left: 0;
    }
    
    .contact-info {
        margin-bottom: 2rem;
    }
    
    .contact-info h4 {
        color: hsl(38, 58%, 35%);
        margin-bottom: 1rem;
        font-weight: 600;
    }
    
    .contact-info p {
        margin-bottom: 1.5rem;
        line-height: 1.8;
    }
    
    .working-hours {
        margin-top: 2rem;
        padding: 1.5rem;
        background-color: hsla(38, 58%, 95%, 0.5);
        border-left: 4px solid hsl(38, 58%, 60%);
        border-radius: 5px;
    }
    
    .working-hours h5 {
        color: hsl(38, 58%, 35%);
        margin-bottom: 1rem;
        font-weight: 600;
    }
    
    .working-hours ul {
        list-style-type: none;
        padding-left: 0;
    }
    
    .working-hours ul li {
        margin-bottom: 0.5rem;
        display: flex;
        justify-content: space-between;
    }
    
    .contact-form {
        background-color: hsla(38, 58%, 95%, 0.8);
        padding: 2.5rem;
        border-radius: 8px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    }
    
    .form-group {
        margin-bottom: 1.5rem;
    }
    
    .form-group label {
        display: block;
        margin-bottom: 0.5rem;
        color: hsl(38, 58%, 35%);
        font-weight: 500;
    }
    
    .form-control {
        border: 1px solid hsla(38, 58%, 60%, 0.3);
        padding: 0.8rem;
        border-radius: 4px;
        width: 100%;
        transition: border-color 0.3s;
    }
    
    .form-control:focus {
        outline: none;
        border-color: hsl(38, 58%, 35%);
        box-shadow: 0 0 0 0.2rem hsla(38, 58%, 60%, 0.2);
    }
    
    textarea.form-control {
        min-height: 120px;
        resize: vertical;
    }
    
    .submit-btn {
        background-color: hsl(38, 58%, 35%);
        color: white;
        border: none;
        padding: 12px 30px;
        border-radius: 4px;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s ease;
        width: 100%;
        font-size: 1rem;
        text-transform: uppercase;
        letter-spacing: 1px;
    }
    
    .submit-btn:hover {
        background-color: hsl(38, 58%, 30%);
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }
    
    .submit-btn:active {
        transform: translateY(0);
    }
    
    .consultation-process {
        margin-top: 2rem;
        padding: 1.5rem;
        background-color: hsla(38, 58%, 95%, 0.5);
        border-radius: 5px;
    }
    
    .consultation-process h4 {
        color: hsl(38, 58%, 35%);
        margin-bottom: 1rem;
    }
    
    .consultation-step {
        display: flex;
        margin-bottom: 1rem;
        align-items: flex-start;
    }
    
    .step-number {
        background-color: hsl(38, 58%, 60%);
        color: white;
        width: 30px;
        height: 30px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: bold;
        margin-right: 1rem;
        flex-shrink: 0;
    }
    
    .step-content {
        flex-grow: 1;
    }
    
    .step-content h5 {
        margin-bottom: 0.5rem;
        color: hsl(38, 58%, 20%);
    }
    
    @media (max-width: 767px) {
        .contact-section {
            padding: 4rem 0;
        }
        
        .contact-form {
            margin-top: 2rem;
            padding: 1.5rem;
        }
    }

.about-section {
        padding: 5rem 0;
        background-color: #fff;
        font-family: 'Poppins', sans-serif;
    }
    
    .about-section h2 {
        color: hsl(38, 58%, 35%);
        font-weight: 700;
        margin-bottom: 2rem;
        position: relative;
        font-size: 2.5rem;
    }
    
    .about-section h2:after {
        content: '';
        position: absolute;
        left: 0;
        bottom: -10px;
        height: 3px;
        width: 60px;
        background-color: hsl(38, 58%, 60%);
    }
    
    .about-section p {
        color: #555;
        line-height: 1.8;
        margin-bottom: 1.5rem;
    }
    
    .about-image {
        border-radius: 10px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        transition: transform 0.3s ease;
        max-width: 100%;
        height: auto;
    }
    
    .about-image:hover {
        transform: translateY(-5px);
    }
    
    .timeline {
        position: relative;
        padding-left: 30px;
        margin-top: 3rem;
    }
    
    .timeline:before {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        height: 100%;
        width: 2px;
        background-color: hsl(38, 58%, 60%);
    }
    
    .timeline-item {
        position: relative;
        padding-bottom: 2rem;
    }
    
    .timeline-item:last-child {
        padding-bottom: 0;
    }
    
    .timeline-item:before {
        content: '';
        position: absolute;
        left: -34px;
        top: 6px;
        height: 12px;
        width: 12px;
        border-radius: 50%;
        background-color: hsl(38, 58%, 35%);
        border: 2px solid #fff;
    }
    
    .timeline-date {
        font-weight: 600;
        color: hsl(38, 58%, 35%);
        margin-bottom: 0.5rem;
    }
    
    .timeline-content {
        margin-bottom: 0.5rem;
    }
    
    .mission-card {
        background-color: #f9f5ef;
        border-left: 4px solid hsl(38, 58%, 35%);
        padding: 2rem;
        border-radius: 0 10px 10px 0;
        margin-bottom: 2rem;
    }
    
    .mission-card h3 {
        color: hsl(38, 58%, 20%);
        margin-bottom: 1rem;
        font-size: 1.5rem;
    }
    
    @media (max-width: 768px) {
        .about-section h2 {
            font-size: 2rem;
        }
        
        .image-container {
            margin-bottom: 2rem;
        }
    }

:root {
        --primary-color: hsl(38, 58%, 35%);
        --secondary-color: hsl(38, 58%, 20%);
        --accent-color: hsl(38, 58%, 60%);
    }
    
    footer {
        background-color: var(--secondary-color);
        color: #fff;
        padding: 3rem 0;
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    }
    
    footer h5 {
        color: var(--accent-color);
        font-weight: 600;
        margin-bottom: 1.2rem;
    }
    
    footer p {
        font-size: 0.95rem;
        line-height: 1.6;
    }
    
    footer a {
        color: #fff;
        text-decoration: none;
        transition: color 0.3s ease;
    }
    
    footer a:hover {
        color: var(--accent-color);
    }
    
    footer .nav-link {
        padding: 0.3rem 0;
    }
    
    footer .copyright {
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        padding-top: 1.5rem;
        margin-top: 2rem;
    }
    
    .cookie-notice {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        background-color: var(--secondary-color);
        color: #fff;
        padding: 1rem 0;
        z-index: 1000;
        box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.1);
        transform: translateY(100%);
        transition: transform 0.4s ease-in-out;
    }
    
    .cookie-notice.show {
        transform: translateY(0);
    }
    
    .cookie-btn {
        padding: 0.5rem 1.2rem;
        border-radius: 4px;
        font-weight: 500;
        transition: all 0.3s ease;
    }
    
    .accept-btn {
        background-color: var(--accent-color);
        color: var(--secondary-color);
        border: none;
    }
    
    .accept-btn:hover {
        background-color: #fff;
        color: var(--primary-color);
    }
    
    .learn-more-btn {
        background-color: transparent;
        color: #fff;
        border: 1px solid #fff;
    }
    
    .learn-more-btn:hover {
        background-color: rgba(255, 255, 255, 0.1);
    }

:root {
            --primary-color: hsl(38, 58%, 35%);
            --secondary-color: hsl(38, 58%, 20%);
            --accent-color: hsl(38, 58%, 60%);
        }
        
        body {
            font-family: 'Poppins', sans-serif;
            color: #333;
        }
        
        .navbar {
            background-color: rgba(255, 255, 255, 0.95);
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }
        
        .navbar-brand {
            display: flex;
            align-items: center;
            font-weight: 600;
            color: var(--primary-color);
            transition: all 0.3s ease;
        }
        
        .navbar-brand:hover {
            color: var(--accent-color);
        }
        
        .navbar-brand img {
            margin-right: 10px;
        }
        
        .nav-link {
            color: var(--secondary-color);
            font-weight: 500;
            position: relative;
            padding: 0.5rem 1rem;
            margin: 0 0.2rem;
            transition: all 0.3s ease;
        }
        
        .nav-link:hover {
            color: var(--accent-color);
        }
        
        .nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0;
            left: 0;
            background-color: var(--accent-color);
            transition: width 0.3s ease;
        }
        
        .nav-link:hover::after {
            width: 100%;
        }
        
        .navbar-toggler {
            border: none;
            padding: 0.25rem 0.5rem;
        }
        
        .navbar-toggler:focus {
            box-shadow: none;
            outline: 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(125, 91, 38, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        @media (max-width: 991.98px) {
            .navbar-collapse {
                background-color: rgba(255, 255, 255, 0.98);
                padding: 1rem;
                border-radius: 0.5rem;
                box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            }
            
            .nav-link::after {
                display: none;
            }
            
            .nav-link:hover {
                background-color: var(--accent-color);
                color: white;
                border-radius: 4px;
            }
        }

.services-section {
        padding: 80px 0;
        background-color: #fff;
    }
    
    .services-heading {
        margin-bottom: 50px;
        text-align: center;
    }
    
    .services-heading h2 {
        color: hsl(38, 58%, 35%);
        font-weight: 700;
        margin-bottom: 15px;
    }
    
    .services-heading p {
        color: hsl(38, 58%, 20%);
        max-width: 700px;
        margin: 0 auto;
    }
    
    .services-tabs .nav-tabs {
        border-bottom: 2px solid hsl(38, 58%, 60%);
        justify-content: center;
        margin-bottom: 30px;
    }
    
    .services-tabs .nav-link {
        color: hsl(38, 58%, 20%);
        border: none;
        font-weight: 600;
        padding: 12px 25px;
        border-radius: 0;
        margin: 0 5px;
        position: relative;
        transition: all 0.3s ease;
    }
    
    .services-tabs .nav-link.active {
        color: hsl(38, 58%, 35%);
        background-color: transparent;
        border-bottom: 3px solid hsl(38, 58%, 35%);
    }
    
    .services-tabs .nav-link:hover {
        color: hsl(38, 58%, 60%);
    }
    
    .service-card {
        padding: 25px;
        border-radius: 8px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        height: 100%;
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
        border: 1px solid #eee;
    }
    
    .service-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 12px 25px rgba(0,0,0,0.1);
        border-color: hsl(38, 58%, 60%);
    }
    
    .service-card:before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 5px;
        height: 0;
        background-color: hsl(38, 58%, 35%);
        transition: all 0.3s ease;
    }
    
    .service-card:hover:before {
        height: 100%;
    }
    
    .service-icon {
        font-size: 2.5rem;
        margin-bottom: 20px;
        color: hsl(38, 58%, 35%);
        transition: all 0.3s ease;
    }
    
    .service-card:hover .service-icon {
        color: hsl(38, 58%, 60%);
        transform: scale(1.1);
    }
    
    .service-title {
        font-weight: 700;
        margin-bottom: 15px;
        color: hsl(38, 58%, 20%);
    }
    
    .service-price {
        font-weight: 700;
        color: hsl(38, 58%, 35%);
        font-size: 1.2rem;
        margin: 15px 0;
    }
    
    .service-desc {
        color: #666;
        margin-bottom: 15px;
    }
    
    .terms-section {
        margin-top: 50px;
        padding: 30px;
        background-color: #f9f5f0;
        border-radius: 8px;
    }
    
    .terms-title {
        color: hsl(38, 58%, 35%);
        margin-bottom: 20px;
    }
    
    .terms-list li {
        margin-bottom: 10px;
        position: relative;
        padding-left: 25px;
    }
    
    .terms-list li:before {
        content: "✓";
        position: absolute;
        left: 0;
        color: hsl(38, 58%, 35%);
        font-weight: bold;
    }

.newsletter-section {
        background: linear-gradient(135deg, hsl(38, 58%, 35%), hsl(38, 58%, 25%));
        padding: 80px 0;
        color: #fff;
        position: relative;
        overflow: hidden;
    }
    
    .newsletter-section::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='rgba(255,255,255,.07)' fill-rule='evenodd'/%3E%3C/svg%3E");
        opacity: 0.3;
    }
    
    .newsletter-container {
        position: relative;
        z-index: 2;
    }
    
    .newsletter-title {
        font-size: 2.5rem;
        font-weight: 700;
        margin-bottom: 1.5rem;
        position: relative;
        display: inline-block;
    }
    
    .newsletter-title::after {
        content: "";
        position: absolute;
        bottom: -10px;
        left: 0;
        width: 60px;
        height: 3px;
        background-color: hsl(38, 58%, 60%);
    }
    
    .newsletter-subtitle {
        font-size: 1.2rem;
        margin-bottom: 2rem;
        max-width: 600px;
        line-height: 1.6;
    }
    
    .benefits-list {
        margin-bottom: 2rem;
    }
    
    .benefits-list li {
        margin-bottom: 0.8rem;
        position: relative;
        padding-left: 30px;
    }
    
    .benefits-list li::before {
        content: "✦";
        position: absolute;
        left: 0;
        color: hsl(38, 58%, 60%);
        font-size: 1.2rem;
    }
    
    .newsletter-form {
        background-color: rgba(255, 255, 255, 0.1);
        padding: 30px;
        border-radius: 10px;
        backdrop-filter: blur(5px);
        border: 1px solid rgba(255, 255, 255, 0.1);
        max-width: 600px;
    }
    
    .form-control:focus {
        border-color: hsl(38, 58%, 60%);
        box-shadow: 0 0 0 0.25rem rgba(187, 153, 85, 0.25);
    }
    
    .newsletter-btn {
        background-color: hsl(38, 58%, 60%);
        border: none;
        color: hsl(38, 58%, 20%);
        font-weight: 600;
        padding: 10px 20px;
        border-radius: 5px;
        transition: all 0.3s ease;
    }
    
    .newsletter-btn:hover {
        background-color: hsl(38, 58%, 65%);
        transform: translateY(-2px);
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    }
    
    .privacy-text {
        font-size: 0.85rem;
        margin-top: 1rem;
        opacity: 0.8;
    }
    
    @media (max-width: 767px) {
        .newsletter-section {
            padding: 60px 0;
        }
        
        .newsletter-title {
            font-size: 2rem;
        }
        
        .newsletter-subtitle {
            font-size: 1rem;
        }
    }

.testimonials-section {
        background-color: hsl(38, 58%, 95%);
        padding: 80px 0;
    }
    
    .testimonials-section h2 {
        color: hsl(38, 58%, 35%);
        text-align: center;
        margin-bottom: 50px;
        font-weight: 700;
        position: relative;
    }
    
    .testimonials-section h2:after {
        content: "";
        width: 70px;
        height: 3px;
        background-color: hsl(38, 58%, 60%);
        position: absolute;
        bottom: -15px;
        left: 50%;
        transform: translateX(-50%);
    }
    
    .testimonial-card {
        background-color: white;
        padding: 30px;
        border-radius: 10px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        margin-bottom: 30px;
        transition: transform 0.3s ease;
        height: 100%;
        display: flex;
        flex-direction: column;
    }
    
    .testimonial-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    }
    
    .testimonial-text {
        font-style: italic;
        color: #555;
        margin-bottom: 20px;
        flex-grow: 1;
        line-height: 1.6;
    }
    
    .testimonial-author {
        font-weight: 600;
        color: hsl(38, 58%, 35%);
        margin-bottom: 5px;
    }
    
    .testimonial-location {
        color: hsl(38, 58%, 60%);
        font-size: 0.9rem;
    }
    
    .testimonial-quote {
        font-size: 3rem;
        color: hsl(38, 58%, 90%);
        line-height: 1;
        margin-bottom: 10px;
    }

:root {
        --primary-color: hsl(38, 58%, 35%);
        --secondary-color: hsl(38, 58%, 20%);
        --accent-color: hsl(38, 58%, 60%);
    }
    
    footer {
        background-color: var(--secondary-color);
        color: #fff;
        padding: 3rem 0;
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    }
    
    footer h5 {
        color: var(--accent-color);
        font-weight: 600;
        margin-bottom: 1.2rem;
    }
    
    footer p {
        font-size: 0.95rem;
        line-height: 1.6;
    }
    
    footer a {
        color: #fff;
        text-decoration: none;
        transition: color 0.3s ease;
    }
    
    footer a:hover {
        color: var(--accent-color);
    }
    
    footer .nav-link {
        padding: 0.3rem 0;
    }
    
    footer .copyright {
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        padding-top: 1.5rem;
        margin-top: 2rem;
    }
    
    .cookie-notice {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        background-color: var(--secondary-color);
        color: #fff;
        padding: 1rem 0;
        z-index: 1000;
        box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.1);
        transform: translateY(100%);
        transition: transform 0.4s ease-in-out;
    }
    
    .cookie-notice.show {
        transform: translateY(0);
    }
    
    .cookie-btn {
        padding: 0.5rem 1.2rem;
        border-radius: 4px;
        font-weight: 500;
        transition: all 0.3s ease;
    }
    
    .accept-btn {
        background-color: var(--accent-color);
        color: var(--secondary-color);
        border: none;
    }
    
    .accept-btn:hover {
        background-color: #fff;
        color: var(--primary-color);
    }
    
    .learn-more-btn {
        background-color: transparent;
        color: #fff;
        border: 1px solid #fff;
    }
    
    .learn-more-btn:hover {
        background-color: rgba(255, 255, 255, 0.1);
    }

:root {
            --primary-color: hsl(38, 58%, 35%);
            --secondary-color: hsl(38, 58%, 20%);
            --accent-color: hsl(38, 58%, 60%);
        }
        
        body {
            font-family: 'Poppins', sans-serif;
            color: #333;
        }
        
        .navbar {
            background-color: rgba(255, 255, 255, 0.95);
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }
        
        .navbar-brand {
            display: flex;
            align-items: center;
            font-weight: 600;
            color: var(--primary-color);
            transition: all 0.3s ease;
        }
        
        .navbar-brand:hover {
            color: var(--accent-color);
        }
        
        .navbar-brand img {
            margin-right: 10px;
        }
        
        .nav-link {
            color: var(--secondary-color);
            font-weight: 500;
            position: relative;
            padding: 0.5rem 1rem;
            margin: 0 0.2rem;
            transition: all 0.3s ease;
        }
        
        .nav-link:hover {
            color: var(--accent-color);
        }
        
        .nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0;
            left: 0;
            background-color: var(--accent-color);
            transition: width 0.3s ease;
        }
        
        .nav-link:hover::after {
            width: 100%;
        }
        
        .navbar-toggler {
            border: none;
            padding: 0.25rem 0.5rem;
        }
        
        .navbar-toggler:focus {
            box-shadow: none;
            outline: 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(125, 91, 38, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        @media (max-width: 991.98px) {
            .navbar-collapse {
                background-color: rgba(255, 255, 255, 0.98);
                padding: 1rem;
                border-radius: 0.5rem;
                box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            }
            
            .nav-link::after {
                display: none;
            }
            
            .nav-link:hover {
                background-color: var(--accent-color);
                color: white;
                border-radius: 4px;
            }
        }

.terms-container {
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        max-width: 1000px;
        margin: 0 auto;
        padding: 20px;
        color: #333;
        line-height: 1.6;
    }
    .terms-container h1 {
        color: #2a6c4e;
        border-bottom: 2px solid #2a6c4e;
        padding-bottom: 10px;
        margin-bottom: 30px;
    }
    .terms-container h2 {
        color: #2a6c4e;
        margin-top: 30px;
        margin-bottom: 15px;
        font-size: 1.4em;
    }
    .terms-container p {
        margin-bottom: 15px;
        text-align: justify;
    }
    .terms-container ul {
        margin-bottom: 20px;
        padding-left: 20px;
    }
    .terms-container li {
        margin-bottom: 8px;
    }
    .terms-container .last-updated {
        font-style: italic;
        color: #666;
        margin-top: 40px;
        font-size: 0.9em;
        text-align: right;
    }

:root {
        --primary-color: hsl(38, 58%, 35%);
        --secondary-color: hsl(38, 58%, 20%);
        --accent-color: hsl(38, 58%, 60%);
    }
    
    footer {
        background-color: var(--secondary-color);
        color: #fff;
        padding: 3rem 0;
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    }
    
    footer h5 {
        color: var(--accent-color);
        font-weight: 600;
        margin-bottom: 1.2rem;
    }
    
    footer p {
        font-size: 0.95rem;
        line-height: 1.6;
    }
    
    footer a {
        color: #fff;
        text-decoration: none;
        transition: color 0.3s ease;
    }
    
    footer a:hover {
        color: var(--accent-color);
    }
    
    footer .nav-link {
        padding: 0.3rem 0;
    }
    
    footer .copyright {
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        padding-top: 1.5rem;
        margin-top: 2rem;
    }
    
    .cookie-notice {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        background-color: var(--secondary-color);
        color: #fff;
        padding: 1rem 0;
        z-index: 1000;
        box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.1);
        transform: translateY(100%);
        transition: transform 0.4s ease-in-out;
    }
    
    .cookie-notice.show {
        transform: translateY(0);
    }
    
    .cookie-btn {
        padding: 0.5rem 1.2rem;
        border-radius: 4px;
        font-weight: 500;
        transition: all 0.3s ease;
    }
    
    .accept-btn {
        background-color: var(--accent-color);
        color: var(--secondary-color);
        border: none;
    }
    
    .accept-btn:hover {
        background-color: #fff;
        color: var(--primary-color);
    }
    
    .learn-more-btn {
        background-color: transparent;
        color: #fff;
        border: 1px solid #fff;
    }
    
    .learn-more-btn:hover {
        background-color: rgba(255, 255, 255, 0.1);
    }

:root {
            --primary-color: hsl(38, 58%, 35%);
            --secondary-color: hsl(38, 58%, 20%);
            --accent-color: hsl(38, 58%, 60%);
        }
        
        body {
            font-family: 'Poppins', sans-serif;
            color: #333;
        }
        
        .navbar {
            background-color: rgba(255, 255, 255, 0.95);
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }
        
        .navbar-brand {
            display: flex;
            align-items: center;
            font-weight: 600;
            color: var(--primary-color);
            transition: all 0.3s ease;
        }
        
        .navbar-brand:hover {
            color: var(--accent-color);
        }
        
        .navbar-brand img {
            margin-right: 10px;
        }
        
        .nav-link {
            color: var(--secondary-color);
            font-weight: 500;
            position: relative;
            padding: 0.5rem 1rem;
            margin: 0 0.2rem;
            transition: all 0.3s ease;
        }
        
        .nav-link:hover {
            color: var(--accent-color);
        }
        
        .nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0;
            left: 0;
            background-color: var(--accent-color);
            transition: width 0.3s ease;
        }
        
        .nav-link:hover::after {
            width: 100%;
        }
        
        .navbar-toggler {
            border: none;
            padding: 0.25rem 0.5rem;
        }
        
        .navbar-toggler:focus {
            box-shadow: none;
            outline: 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(125, 91, 38, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        @media (max-width: 991.98px) {
            .navbar-collapse {
                background-color: rgba(255, 255, 255, 0.98);
                padding: 1rem;
                border-radius: 0.5rem;
                box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            }
            
            .nav-link::after {
                display: none;
            }
            
            .nav-link:hover {
                background-color: var(--accent-color);
                color: white;
                border-radius: 4px;
            }
        }

.faq-section {
    padding: 80px 0;
    background-color: #fff;
  }
  .faq-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
  }
  .faq-title {
    text-align: center;
    margin-bottom: 50px;
    color: hsl(38, 58%, 35%);
    font-weight: 700;
  }
  .faq-item {
    border-bottom: 1px solid hsl(38, 58%, 60%);
    margin-bottom: 15px;
    border-radius: 5px;
    overflow: hidden;
  }
  .faq-question {
    position: relative;
    padding: 18px 45px 18px 20px;
    background-color: rgba(221, 188, 143, 0.1);
    color: hsl(38, 58%, 20%);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 5px;
  }
  .faq-question:hover {
    background-color: rgba(221, 188, 143, 0.2);
  }
  .faq-question::after {
    content: '+';
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px;
    font-weight: 300;
    color: hsl(38, 58%, 35%);
    transition: all 0.3s ease;
  }
  .faq-question.active::after {
    content: '−';
  }
  .faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 20px;
    transition: max-height 0.3s ease, padding 0.3s ease;
    line-height: 1.6;
    color: #333;
  }
  .faq-answer.active {
    max-height: 500px;
    padding: 15px 20px 20px;
  }
  @media (max-width: 768px) {
    .faq-section {
      padding: 50px 0;
    }
    .faq-title {
      margin-bottom: 30px;
      font-size: 24px;
    }
    .faq-question {
      padding: 15px 40px 15px 15px;
      font-size: 15px;
    }
  }

.about-section {
        padding: 5rem 0;
        background-color: #fff;
        font-family: 'Poppins', sans-serif;
    }
    
    .about-section h2 {
        color: hsl(38, 58%, 35%);
        font-weight: 700;
        margin-bottom: 2rem;
        position: relative;
        font-size: 2.5rem;
    }
    
    .about-section h2:after {
        content: '';
        position: absolute;
        left: 0;
        bottom: -10px;
        height: 3px;
        width: 60px;
        background-color: hsl(38, 58%, 60%);
    }
    
    .about-section p {
        color: #555;
        line-height: 1.8;
        margin-bottom: 1.5rem;
    }
    
    .about-image {
        border-radius: 10px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        transition: transform 0.3s ease;
        max-width: 100%;
        height: auto;
    }
    
    .about-image:hover {
        transform: translateY(-5px);
    }
    
    .timeline {
        position: relative;
        padding-left: 30px;
        margin-top: 3rem;
    }
    
    .timeline:before {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        height: 100%;
        width: 2px;
        background-color: hsl(38, 58%, 60%);
    }
    
    .timeline-item {
        position: relative;
        padding-bottom: 2rem;
    }
    
    .timeline-item:last-child {
        padding-bottom: 0;
    }
    
    .timeline-item:before {
        content: '';
        position: absolute;
        left: -34px;
        top: 6px;
        height: 12px;
        width: 12px;
        border-radius: 50%;
        background-color: hsl(38, 58%, 35%);
        border: 2px solid #fff;
    }
    
    .timeline-date {
        font-weight: 600;
        color: hsl(38, 58%, 35%);
        margin-bottom: 0.5rem;
    }
    
    .timeline-content {
        margin-bottom: 0.5rem;
    }
    
    .mission-card {
        background-color: #f9f5ef;
        border-left: 4px solid hsl(38, 58%, 35%);
        padding: 2rem;
        border-radius: 0 10px 10px 0;
        margin-bottom: 2rem;
    }
    
    .mission-card h3 {
        color: hsl(38, 58%, 20%);
        margin-bottom: 1rem;
        font-size: 1.5rem;
    }
    
    @media (max-width: 768px) {
        .about-section h2 {
            font-size: 2rem;
        }
        
        .image-container {
            margin-bottom: 2rem;
        }
    }

.newsletter-section {
        background: linear-gradient(135deg, hsl(38, 58%, 35%), hsl(38, 58%, 25%));
        padding: 80px 0;
        color: #fff;
        position: relative;
        overflow: hidden;
    }
    
    .newsletter-section::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='rgba(255,255,255,.07)' fill-rule='evenodd'/%3E%3C/svg%3E");
        opacity: 0.3;
    }
    
    .newsletter-container {
        position: relative;
        z-index: 2;
    }
    
    .newsletter-title {
        font-size: 2.5rem;
        font-weight: 700;
        margin-bottom: 1.5rem;
        position: relative;
        display: inline-block;
    }
    
    .newsletter-title::after {
        content: "";
        position: absolute;
        bottom: -10px;
        left: 0;
        width: 60px;
        height: 3px;
        background-color: hsl(38, 58%, 60%);
    }
    
    .newsletter-subtitle {
        font-size: 1.2rem;
        margin-bottom: 2rem;
        max-width: 600px;
        line-height: 1.6;
    }
    
    .benefits-list {
        margin-bottom: 2rem;
    }
    
    .benefits-list li {
        margin-bottom: 0.8rem;
        position: relative;
        padding-left: 30px;
    }
    
    .benefits-list li::before {
        content: "✦";
        position: absolute;
        left: 0;
        color: hsl(38, 58%, 60%);
        font-size: 1.2rem;
    }
    
    .newsletter-form {
        background-color: rgba(255, 255, 255, 0.1);
        padding: 30px;
        border-radius: 10px;
        backdrop-filter: blur(5px);
        border: 1px solid rgba(255, 255, 255, 0.1);
        max-width: 600px;
    }
    
    .form-control:focus {
        border-color: hsl(38, 58%, 60%);
        box-shadow: 0 0 0 0.25rem rgba(187, 153, 85, 0.25);
    }
    
    .newsletter-btn {
        background-color: hsl(38, 58%, 60%);
        border: none;
        color: hsl(38, 58%, 20%);
        font-weight: 600;
        padding: 10px 20px;
        border-radius: 5px;
        transition: all 0.3s ease;
    }
    
    .newsletter-btn:hover {
        background-color: hsl(38, 58%, 65%);
        transform: translateY(-2px);
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    }
    
    .privacy-text {
        font-size: 0.85rem;
        margin-top: 1rem;
        opacity: 0.8;
    }
    
    @media (max-width: 767px) {
        .newsletter-section {
            padding: 60px 0;
        }
        
        .newsletter-title {
            font-size: 2rem;
        }
        
        .newsletter-subtitle {
            font-size: 1rem;
        }
    }

:root {
        --primary-color: hsl(38, 58%, 35%);
        --secondary-color: hsl(38, 58%, 20%);
        --accent-color: hsl(38, 58%, 60%);
    }
    
    footer {
        background-color: var(--secondary-color);
        color: #fff;
        padding: 3rem 0;
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    }
    
    footer h5 {
        color: var(--accent-color);
        font-weight: 600;
        margin-bottom: 1.2rem;
    }
    
    footer p {
        font-size: 0.95rem;
        line-height: 1.6;
    }
    
    footer a {
        color: #fff;
        text-decoration: none;
        transition: color 0.3s ease;
    }
    
    footer a:hover {
        color: var(--accent-color);
    }
    
    footer .nav-link {
        padding: 0.3rem 0;
    }
    
    footer .copyright {
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        padding-top: 1.5rem;
        margin-top: 2rem;
    }
    
    .cookie-notice {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        background-color: var(--secondary-color);
        color: #fff;
        padding: 1rem 0;
        z-index: 1000;
        box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.1);
        transform: translateY(100%);
        transition: transform 0.4s ease-in-out;
    }
    
    .cookie-notice.show {
        transform: translateY(0);
    }
    
    .cookie-btn {
        padding: 0.5rem 1.2rem;
        border-radius: 4px;
        font-weight: 500;
        transition: all 0.3s ease;
    }
    
    .accept-btn {
        background-color: var(--accent-color);
        color: var(--secondary-color);
        border: none;
    }
    
    .accept-btn:hover {
        background-color: #fff;
        color: var(--primary-color);
    }
    
    .learn-more-btn {
        background-color: transparent;
        color: #fff;
        border: 1px solid #fff;
    }
    
    .learn-more-btn:hover {
        background-color: rgba(255, 255, 255, 0.1);
    }

:root {
            --primary-color: hsl(38, 58%, 35%);
            --secondary-color: hsl(38, 58%, 20%);
            --accent-color: hsl(38, 58%, 60%);
        }
        
        body {
            font-family: 'Poppins', sans-serif;
            color: #333;
        }
        
        .navbar {
            background-color: rgba(255, 255, 255, 0.95);
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }
        
        .navbar-brand {
            display: flex;
            align-items: center;
            font-weight: 600;
            color: var(--primary-color);
            transition: all 0.3s ease;
        }
        
        .navbar-brand:hover {
            color: var(--accent-color);
        }
        
        .navbar-brand img {
            margin-right: 10px;
        }
        
        .nav-link {
            color: var(--secondary-color);
            font-weight: 500;
            position: relative;
            padding: 0.5rem 1rem;
            margin: 0 0.2rem;
            transition: all 0.3s ease;
        }
        
        .nav-link:hover {
            color: var(--accent-color);
        }
        
        .nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0;
            left: 0;
            background-color: var(--accent-color);
            transition: width 0.3s ease;
        }
        
        .nav-link:hover::after {
            width: 100%;
        }
        
        .navbar-toggler {
            border: none;
            padding: 0.25rem 0.5rem;
        }
        
        .navbar-toggler:focus {
            box-shadow: none;
            outline: 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(125, 91, 38, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        @media (max-width: 991.98px) {
            .navbar-collapse {
                background-color: rgba(255, 255, 255, 0.98);
                padding: 1rem;
                border-radius: 0.5rem;
                box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            }
            
            .nav-link::after {
                display: none;
            }
            
            .nav-link:hover {
                background-color: var(--accent-color);
                color: white;
                border-radius: 4px;
            }
        }

.hero-section {
        padding: 5rem 0;
        background-color: hsl(38, 58%, 95%);
        overflow: hidden;
    }
    
    .hero-title {
        color: hsl(38, 58%, 20%);
        font-size: 3rem;
        font-weight: 700;
        margin-bottom: 1rem;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        color: hsl(38, 58%, 35%);
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
        font-weight: 500;
    }
    
    .hero-description {
        color: #333;
        margin-bottom: 2rem;
        line-height: 1.8;
    }
    
    .hero-image {
        border-radius: 10px;
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s ease;
        max-height: 100%;
        object-fit: cover;
    }
    
    .hero-image:hover {
        transform: scale(1.02);
    }
    
    .hero-benefits {
        margin-bottom: 2rem;
    }
    
    .hero-benefits li {
        margin-bottom: 0.75rem;
        position: relative;
        padding-left: 2rem;
    }
    
    .hero-benefits li i {
        color: hsl(38, 58%, 35%);
        position: absolute;
        left: 0;
        top: 0.25rem;
    }
    
    .cta-primary {
        background-color: hsl(38, 58%, 35%);
        color: white;
        border: none;
        padding: 0.75rem 2rem;
        font-weight: 600;
        border-radius: 50px;
        transition: all 0.3s ease;
        margin-right: 1rem;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }
    
    .cta-primary:hover {
        background-color: hsl(38, 58%, 25%);
        transform: translateY(-3px);
        box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
    }
    
    .cta-secondary {
        background-color: transparent;
        color: hsl(38, 58%, 35%);
        border: 2px solid hsl(38, 58%, 35%);
        padding: 0.75rem 2rem;
        font-weight: 600;
        border-radius: 50px;
        transition: all 0.3s ease;
    }
    
    .cta-secondary:hover {
        background-color: hsl(38, 58%, 60%);
        color: white;
        border-color: hsl(38, 58%, 60%);
        transform: translateY(-3px);
        box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
    }
    
    @media (max-width: 991.98px) {
        .hero-content {
            text-align: center;
            padding: 2rem 1rem;
        }
        
        .hero-image-container {
            margin-bottom: 2rem;
            text-align: center;
        }
        
        .hero-image {
            max-width: 100%;
            height: auto;
        }
        
        .hero-benefits li {
            text-align: left;
        }
        
        .cta-buttons {
            display: flex;
            flex-direction: column;
            align-items: center;
        }
        
        .cta-primary, .cta-secondary {
            margin: 0.5rem 0;
            width: 100%;
            max-width: 300px;
        }
    }

.services-section {
        padding: 80px 0;
        background-color: #fff;
    }
    
    .services-heading {
        margin-bottom: 50px;
        text-align: center;
    }
    
    .services-heading h2 {
        color: hsl(38, 58%, 35%);
        font-weight: 700;
        margin-bottom: 15px;
    }
    
    .services-heading p {
        color: hsl(38, 58%, 20%);
        max-width: 700px;
        margin: 0 auto;
    }
    
    .services-tabs .nav-tabs {
        border-bottom: 2px solid hsl(38, 58%, 60%);
        justify-content: center;
        margin-bottom: 30px;
    }
    
    .services-tabs .nav-link {
        color: hsl(38, 58%, 20%);
        border: none;
        font-weight: 600;
        padding: 12px 25px;
        border-radius: 0;
        margin: 0 5px;
        position: relative;
        transition: all 0.3s ease;
    }
    
    .services-tabs .nav-link.active {
        color: hsl(38, 58%, 35%);
        background-color: transparent;
        border-bottom: 3px solid hsl(38, 58%, 35%);
    }
    
    .services-tabs .nav-link:hover {
        color: hsl(38, 58%, 60%);
    }
    
    .service-card {
        padding: 25px;
        border-radius: 8px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        height: 100%;
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
        border: 1px solid #eee;
    }
    
    .service-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 12px 25px rgba(0,0,0,0.1);
        border-color: hsl(38, 58%, 60%);
    }
    
    .service-card:before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 5px;
        height: 0;
        background-color: hsl(38, 58%, 35%);
        transition: all 0.3s ease;
    }
    
    .service-card:hover:before {
        height: 100%;
    }
    
    .service-icon {
        font-size: 2.5rem;
        margin-bottom: 20px;
        color: hsl(38, 58%, 35%);
        transition: all 0.3s ease;
    }
    
    .service-card:hover .service-icon {
        color: hsl(38, 58%, 60%);
        transform: scale(1.1);
    }
    
    .service-title {
        font-weight: 700;
        margin-bottom: 15px;
        color: hsl(38, 58%, 20%);
    }
    
    .service-price {
        font-weight: 700;
        color: hsl(38, 58%, 35%);
        font-size: 1.2rem;
        margin: 15px 0;
    }
    
    .service-desc {
        color: #666;
        margin-bottom: 15px;
    }
    
    .terms-section {
        margin-top: 50px;
        padding: 30px;
        background-color: #f9f5f0;
        border-radius: 8px;
    }
    
    .terms-title {
        color: hsl(38, 58%, 35%);
        margin-bottom: 20px;
    }
    
    .terms-list li {
        margin-bottom: 10px;
        position: relative;
        padding-left: 25px;
    }
    
    .terms-list li:before {
        content: "✓";
        position: absolute;
        left: 0;
        color: hsl(38, 58%, 35%);
        font-weight: bold;
    }

.about-section {
        padding: 5rem 0;
        background-color: #fff;
        font-family: 'Poppins', sans-serif;
    }
    
    .about-section h2 {
        color: hsl(38, 58%, 35%);
        font-weight: 700;
        margin-bottom: 2rem;
        position: relative;
        font-size: 2.5rem;
    }
    
    .about-section h2:after {
        content: '';
        position: absolute;
        left: 0;
        bottom: -10px;
        height: 3px;
        width: 60px;
        background-color: hsl(38, 58%, 60%);
    }
    
    .about-section p {
        color: #555;
        line-height: 1.8;
        margin-bottom: 1.5rem;
    }
    
    .about-image {
        border-radius: 10px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        transition: transform 0.3s ease;
        max-width: 100%;
        height: auto;
    }
    
    .about-image:hover {
        transform: translateY(-5px);
    }
    
    .timeline {
        position: relative;
        padding-left: 30px;
        margin-top: 3rem;
    }
    
    .timeline:before {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        height: 100%;
        width: 2px;
        background-color: hsl(38, 58%, 60%);
    }
    
    .timeline-item {
        position: relative;
        padding-bottom: 2rem;
    }
    
    .timeline-item:last-child {
        padding-bottom: 0;
    }
    
    .timeline-item:before {
        content: '';
        position: absolute;
        left: -34px;
        top: 6px;
        height: 12px;
        width: 12px;
        border-radius: 50%;
        background-color: hsl(38, 58%, 35%);
        border: 2px solid #fff;
    }
    
    .timeline-date {
        font-weight: 600;
        color: hsl(38, 58%, 35%);
        margin-bottom: 0.5rem;
    }
    
    .timeline-content {
        margin-bottom: 0.5rem;
    }
    
    .mission-card {
        background-color: #f9f5ef;
        border-left: 4px solid hsl(38, 58%, 35%);
        padding: 2rem;
        border-radius: 0 10px 10px 0;
        margin-bottom: 2rem;
    }
    
    .mission-card h3 {
        color: hsl(38, 58%, 20%);
        margin-bottom: 1rem;
        font-size: 1.5rem;
    }
    
    @media (max-width: 768px) {
        .about-section h2 {
            font-size: 2rem;
        }
        
        .image-container {
            margin-bottom: 2rem;
        }
    }

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

.advantages-section h2 {
    color: hsl(38, 58%, 35%);
    text-align: center;
    margin-bottom: 50px;
    font-weight: 700;
    position: relative;
}

.advantages-section h2:after {
    content: "";
    position: absolute;
    width: 80px;
    height: 3px;
    background-color: hsl(38, 58%, 60%);
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
}

.advantage-card {
    padding: 30px 20px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid rgba(0,0,0,0.05);
    background-color: #fff;
}

.advantage-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    border-bottom: 3px solid hsl(38, 58%, 60%);
}

.advantage-icon {
    font-size: 2.5rem;
    color: hsl(38, 58%, 35%);
    margin-bottom: 20px;
    display: inline-block;
}

.advantage-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: hsl(38, 58%, 20%);
}

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

@media (max-width: 768px) {
    .advantages-section {
        padding: 50px 0;
    }
    
    .advantage-card {
        margin-bottom: 30px;
    }
}

.contact-section {
        padding: 6rem 0;
        background-color: #fff;
        color: hsl(38, 58%, 20%);
    }
    
    .contact-section h2 {
        color: hsl(38, 58%, 35%);
        font-weight: 700;
        margin-bottom: 2rem;
        position: relative;
        display: inline-block;
    }
    
    .contact-section h2:after {
        content: "";
        position: absolute;
        width: 50%;
        height: 3px;
        background-color: hsl(38, 58%, 60%);
        bottom: -10px;
        left: 0;
    }
    
    .contact-info {
        margin-bottom: 2rem;
    }
    
    .contact-info h4 {
        color: hsl(38, 58%, 35%);
        margin-bottom: 1rem;
        font-weight: 600;
    }
    
    .contact-info p {
        margin-bottom: 1.5rem;
        line-height: 1.8;
    }
    
    .working-hours {
        margin-top: 2rem;
        padding: 1.5rem;
        background-color: hsla(38, 58%, 95%, 0.5);
        border-left: 4px solid hsl(38, 58%, 60%);
        border-radius: 5px;
    }
    
    .working-hours h5 {
        color: hsl(38, 58%, 35%);
        margin-bottom: 1rem;
        font-weight: 600;
    }
    
    .working-hours ul {
        list-style-type: none;
        padding-left: 0;
    }
    
    .working-hours ul li {
        margin-bottom: 0.5rem;
        display: flex;
        justify-content: space-between;
    }
    
    .contact-form {
        background-color: hsla(38, 58%, 95%, 0.8);
        padding: 2.5rem;
        border-radius: 8px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    }
    
    .form-group {
        margin-bottom: 1.5rem;
    }
    
    .form-group label {
        display: block;
        margin-bottom: 0.5rem;
        color: hsl(38, 58%, 35%);
        font-weight: 500;
    }
    
    .form-control {
        border: 1px solid hsla(38, 58%, 60%, 0.3);
        padding: 0.8rem;
        border-radius: 4px;
        width: 100%;
        transition: border-color 0.3s;
    }
    
    .form-control:focus {
        outline: none;
        border-color: hsl(38, 58%, 35%);
        box-shadow: 0 0 0 0.2rem hsla(38, 58%, 60%, 0.2);
    }
    
    textarea.form-control {
        min-height: 120px;
        resize: vertical;
    }
    
    .submit-btn {
        background-color: hsl(38, 58%, 35%);
        color: white;
        border: none;
        padding: 12px 30px;
        border-radius: 4px;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s ease;
        width: 100%;
        font-size: 1rem;
        text-transform: uppercase;
        letter-spacing: 1px;
    }
    
    .submit-btn:hover {
        background-color: hsl(38, 58%, 30%);
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }
    
    .submit-btn:active {
        transform: translateY(0);
    }
    
    .consultation-process {
        margin-top: 2rem;
        padding: 1.5rem;
        background-color: hsla(38, 58%, 95%, 0.5);
        border-radius: 5px;
    }
    
    .consultation-process h4 {
        color: hsl(38, 58%, 35%);
        margin-bottom: 1rem;
    }
    
    .consultation-step {
        display: flex;
        margin-bottom: 1rem;
        align-items: flex-start;
    }
    
    .step-number {
        background-color: hsl(38, 58%, 60%);
        color: white;
        width: 30px;
        height: 30px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: bold;
        margin-right: 1rem;
        flex-shrink: 0;
    }
    
    .step-content {
        flex-grow: 1;
    }
    
    .step-content h5 {
        margin-bottom: 0.5rem;
        color: hsl(38, 58%, 20%);
    }
    
    @media (max-width: 767px) {
        .contact-section {
            padding: 4rem 0;
        }
        
        .contact-form {
            margin-top: 2rem;
            padding: 1.5rem;
        }
    }

.faq-section {
    padding: 80px 0;
    background-color: #fff;
  }
  .faq-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
  }
  .faq-title {
    text-align: center;
    margin-bottom: 50px;
    color: hsl(38, 58%, 35%);
    font-weight: 700;
  }
  .faq-item {
    border-bottom: 1px solid hsl(38, 58%, 60%);
    margin-bottom: 15px;
    border-radius: 5px;
    overflow: hidden;
  }
  .faq-question {
    position: relative;
    padding: 18px 45px 18px 20px;
    background-color: rgba(221, 188, 143, 0.1);
    color: hsl(38, 58%, 20%);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 5px;
  }
  .faq-question:hover {
    background-color: rgba(221, 188, 143, 0.2);
  }
  .faq-question::after {
    content: '+';
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px;
    font-weight: 300;
    color: hsl(38, 58%, 35%);
    transition: all 0.3s ease;
  }
  .faq-question.active::after {
    content: '−';
  }
  .faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 20px;
    transition: max-height 0.3s ease, padding 0.3s ease;
    line-height: 1.6;
    color: #333;
  }
  .faq-answer.active {
    max-height: 500px;
    padding: 15px 20px 20px;
  }
  @media (max-width: 768px) {
    .faq-section {
      padding: 50px 0;
    }
    .faq-title {
      margin-bottom: 30px;
      font-size: 24px;
    }
    .faq-question {
      padding: 15px 40px 15px 15px;
      font-size: 15px;
    }
  }

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

.statistics-section h2 {
    color: hsl(38, 58%, 35%);
    margin-bottom: 50px;
    font-weight: 700;
    text-align: center;
    position: relative;
}

.statistics-section h2:after {
    content: "";
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: hsl(38, 58%, 60%);
}

.stat-circle {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: 10px solid hsl(38, 58%, 35%);
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.3s ease;
}

.stat-circle:hover {
    transform: scale(1.05);
    border-color: hsl(38, 58%, 60%);
}

.stat-circle .number {
    font-size: 2.5rem;
    font-weight: 700;
    color: hsl(38, 58%, 20%);
}

.stat-content {
    text-align: center;
    margin-bottom: 40px;
}

.stat-content h3 {
    color: hsl(38, 58%, 35%);
    font-size: 1.2rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.stat-content p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.5;
}

.stat-icon {
    display: block;
    font-size: 2rem;
    color: hsl(38, 58%, 60%);
    margin-bottom: 15px;
}

@media (max-width: 768px) {
    .stat-circle {
        width: 120px;
        height: 120px;
    }
    
    .stat-circle .number {
        font-size: 2rem;
    }
}

.newsletter-section {
        background: linear-gradient(135deg, hsl(38, 58%, 35%), hsl(38, 58%, 25%));
        padding: 80px 0;
        color: #fff;
        position: relative;
        overflow: hidden;
    }
    
    .newsletter-section::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='rgba(255,255,255,.07)' fill-rule='evenodd'/%3E%3C/svg%3E");
        opacity: 0.3;
    }
    
    .newsletter-container {
        position: relative;
        z-index: 2;
    }
    
    .newsletter-title {
        font-size: 2.5rem;
        font-weight: 700;
        margin-bottom: 1.5rem;
        position: relative;
        display: inline-block;
    }
    
    .newsletter-title::after {
        content: "";
        position: absolute;
        bottom: -10px;
        left: 0;
        width: 60px;
        height: 3px;
        background-color: hsl(38, 58%, 60%);
    }
    
    .newsletter-subtitle {
        font-size: 1.2rem;
        margin-bottom: 2rem;
        max-width: 600px;
        line-height: 1.6;
    }
    
    .benefits-list {
        margin-bottom: 2rem;
    }
    
    .benefits-list li {
        margin-bottom: 0.8rem;
        position: relative;
        padding-left: 30px;
    }
    
    .benefits-list li::before {
        content: "✦";
        position: absolute;
        left: 0;
        color: hsl(38, 58%, 60%);
        font-size: 1.2rem;
    }
    
    .newsletter-form {
        background-color: rgba(255, 255, 255, 0.1);
        padding: 30px;
        border-radius: 10px;
        backdrop-filter: blur(5px);
        border: 1px solid rgba(255, 255, 255, 0.1);
        max-width: 600px;
    }
    
    .form-control:focus {
        border-color: hsl(38, 58%, 60%);
        box-shadow: 0 0 0 0.25rem rgba(187, 153, 85, 0.25);
    }
    
    .newsletter-btn {
        background-color: hsl(38, 58%, 60%);
        border: none;
        color: hsl(38, 58%, 20%);
        font-weight: 600;
        padding: 10px 20px;
        border-radius: 5px;
        transition: all 0.3s ease;
    }
    
    .newsletter-btn:hover {
        background-color: hsl(38, 58%, 65%);
        transform: translateY(-2px);
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    }
    
    .privacy-text {
        font-size: 0.85rem;
        margin-top: 1rem;
        opacity: 0.8;
    }
    
    @media (max-width: 767px) {
        .newsletter-section {
            padding: 60px 0;
        }
        
        .newsletter-title {
            font-size: 2rem;
        }
        
        .newsletter-subtitle {
            font-size: 1rem;
        }
    }

.testimonials-section {
        background-color: hsl(38, 58%, 95%);
        padding: 80px 0;
    }
    
    .testimonials-section h2 {
        color: hsl(38, 58%, 35%);
        text-align: center;
        margin-bottom: 50px;
        font-weight: 700;
        position: relative;
    }
    
    .testimonials-section h2:after {
        content: "";
        width: 70px;
        height: 3px;
        background-color: hsl(38, 58%, 60%);
        position: absolute;
        bottom: -15px;
        left: 50%;
        transform: translateX(-50%);
    }
    
    .testimonial-card {
        background-color: white;
        padding: 30px;
        border-radius: 10px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        margin-bottom: 30px;
        transition: transform 0.3s ease;
        height: 100%;
        display: flex;
        flex-direction: column;
    }
    
    .testimonial-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    }
    
    .testimonial-text {
        font-style: italic;
        color: #555;
        margin-bottom: 20px;
        flex-grow: 1;
        line-height: 1.6;
    }
    
    .testimonial-author {
        font-weight: 600;
        color: hsl(38, 58%, 35%);
        margin-bottom: 5px;
    }
    
    .testimonial-location {
        color: hsl(38, 58%, 60%);
        font-size: 0.9rem;
    }
    
    .testimonial-quote {
        font-size: 3rem;
        color: hsl(38, 58%, 90%);
        line-height: 1;
        margin-bottom: 10px;
    }

:root {
        --primary-color: hsl(38, 58%, 35%);
        --secondary-color: hsl(38, 58%, 20%);
        --accent-color: hsl(38, 58%, 60%);
    }
    
    footer {
        background-color: var(--secondary-color);
        color: #fff;
        padding: 3rem 0;
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    }
    
    footer h5 {
        color: var(--accent-color);
        font-weight: 600;
        margin-bottom: 1.2rem;
    }
    
    footer p {
        font-size: 0.95rem;
        line-height: 1.6;
    }
    
    footer a {
        color: #fff;
        text-decoration: none;
        transition: color 0.3s ease;
    }
    
    footer a:hover {
        color: var(--accent-color);
    }
    
    footer .nav-link {
        padding: 0.3rem 0;
    }
    
    footer .copyright {
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        padding-top: 1.5rem;
        margin-top: 2rem;
    }
    
    .cookie-notice {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        background-color: var(--secondary-color);
        color: #fff;
        padding: 1rem 0;
        z-index: 1000;
        box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.1);
        transform: translateY(100%);
        transition: transform 0.4s ease-in-out;
    }
    
    .cookie-notice.show {
        transform: translateY(0);
    }
    
    .cookie-btn {
        padding: 0.5rem 1.2rem;
        border-radius: 4px;
        font-weight: 500;
        transition: all 0.3s ease;
    }
    
    .accept-btn {
        background-color: var(--accent-color);
        color: var(--secondary-color);
        border: none;
    }
    
    .accept-btn:hover {
        background-color: #fff;
        color: var(--primary-color);
    }
    
    .learn-more-btn {
        background-color: transparent;
        color: #fff;
        border: 1px solid #fff;
    }
    
    .learn-more-btn:hover {
        background-color: rgba(255, 255, 255, 0.1);
    }