:root {
            --primary-color: hsl(41, 57%, 34%);
            --secondary-color: hsl(41, 57%, 19%);
            --accent-color: hsl(41, 57%, 59%);
        }
        
        body {
            font-family: 'Roboto', sans-serif;
        }
        
        .navbar {
            background-color: #fff;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }
        
        .navbar-brand {
            color: var(--primary-color);
            font-weight: 700;
            font-size: 1.5rem;
        }
        
        .navbar-brand img {
            margin-right: 10px;
        }
        
        .navbar-nav .nav-link {
            color: var(--secondary-color);
            font-weight: 500;
            margin: 0 8px;
            transition: color 0.3s ease;
        }
        
        .navbar-nav .nav-link:hover {
            color: var(--accent-color);
        }
        
        .navbar-toggler {
            border-color: var(--primary-color);
        }
        
        .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='hsl(41, 57%, 34%)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        @media (max-width: 991px) {
            .navbar-collapse {
                padding: 1rem 0;
            }
            
            .navbar-nav .nav-link {
                padding: 0.5rem 0;
            }
        }

.about-section {
        padding: 100px 0;
        background-color: #fff;
        font-family: 'Poppins', sans-serif;
    }
    
    .about-section h2 {
        color: hsl(41, 57%, 34%);
        font-weight: 700;
        margin-bottom: 30px;
        position: relative;
        padding-bottom: 15px;
    }
    
    .about-section h2:after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 70px;
        height: 3px;
        background-color: hsl(41, 57%, 59%);
    }
    
    .about-section p {
        color: #555;
        line-height: 1.8;
        margin-bottom: 20px;
    }
    
    .about-img {
        border-radius: 10px;
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s ease;
        overflow: hidden;
    }
    
    .about-img:hover {
        transform: translateY(-10px);
    }
    
    .about-img img {
        width: 100%;
        height: auto;
        transition: transform 0.5s ease;
    }
    
    .about-img:hover img {
        transform: scale(1.05);
    }
    
    .timeline {
        position: relative;
        padding: 40px 0;
    }
    
    .timeline:before {
        content: '';
        position: absolute;
        top: 0;
        left: 50%;
        height: 100%;
        width: 2px;
        background-color: hsl(41, 57%, 34%);
        transform: translateX(-50%);
    }
    
    .timeline-item {
        position: relative;
        margin-bottom: 50px;
    }
    
    .timeline-item:last-child {
        margin-bottom: 0;
    }
    
    .timeline-content {
        background-color: #fff;
        border-radius: 8px;
        padding: 25px;
        box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
        position: relative;
        width: 45%;
    }
    
    .timeline-content:before {
        content: '';
        position: absolute;
        top: 20px;
        width: 20px;
        height: 20px;
        background-color: hsl(41, 57%, 59%);
        border-radius: 50%;
    }
    
    .timeline-item:nth-child(odd) .timeline-content {
        margin-left: auto;
        margin-right: 30px;
    }
    
    .timeline-item:nth-child(odd) .timeline-content:before {
        right: -40px;
    }
    
    .timeline-item:nth-child(even) .timeline-content {
        margin-right: auto;
        margin-left: 30px;
    }
    
    .timeline-item:nth-child(even) .timeline-content:before {
        left: -40px;
    }
    
    .timeline-year {
        font-size: 18px;
        font-weight: 700;
        color: hsl(41, 57%, 19%);
        margin-bottom: 10px;
    }
    
    .timeline-title {
        font-size: 20px;
        font-weight: 600;
        color: hsl(41, 57%, 34%);
        margin-bottom: 15px;
    }
    
    .mission-card {
        background-color: #f9f7f2;
        border-left: 4px solid hsl(41, 57%, 34%);
        padding: 25px;
        border-radius: 8px;
        margin-bottom: 30px;
        transition: transform 0.3s ease;
    }
    
    .mission-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    }
    
    .mission-card h4 {
        color: hsl(41, 57%, 19%);
        margin-bottom: 15px;
        font-weight: 600;
    }
    
    @media (max-width: 991px) {
        .timeline:before {
            left: 20px;
        }
        
        .timeline-content {
            width: calc(100% - 60px);
            margin-left: 60px !important;
            margin-right: 0 !important;
        }
        
        .timeline-content:before {
            left: -40px !important;
            right: auto !important;
        }
    }

.advantages-section {
        padding: 80px 0;
        background-color: #fff;
    }
    
    .advantages-section .section-title {
        color: hsl(41, 57%, 34%);
        margin-bottom: 50px;
        text-align: center;
        font-weight: 700;
    }
    
    .advantages-section .advantage-card {
        padding: 30px;
        border-radius: 10px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        height: 100%;
        transition: all 0.3s ease;
        border-bottom: 3px solid transparent;
        margin-bottom: 30px;
    }
    
    .advantages-section .advantage-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        border-bottom: 3px solid hsl(41, 57%, 59%);
    }
    
    .advantages-section .advantage-icon {
        font-size: 2.5rem;
        color: hsl(41, 57%, 34%);
        margin-bottom: 20px;
        display: inline-block;
    }
    
    .advantages-section .advantage-title {
        color: hsl(41, 57%, 19%);
        font-weight: 600;
        margin-bottom: 15px;
        font-size: 1.2rem;
    }
    
    .advantages-section .advantage-description {
        color: #555;
        line-height: 1.6;
    }
    
    @media (max-width: 768px) {
        .advantages-section {
            padding: 50px 0;
        }
        .advantages-section .advantage-card {
            margin-bottom: 20px;
        }
    }

.stats-section {
    padding: 80px 0;
    background-color: #fff;
  }
  
  .stats-heading {
    color: hsl(41, 57%, 34%);
    margin-bottom: 60px;
    text-align: center;
  }
  
  .stats-subheading {
    color: hsl(41, 57%, 19%);
    font-weight: 300;
    margin-bottom: 30px;
    text-align: center;
  }
  
  .stats-item {
    text-align: center;
    margin-bottom: 40px;
  }
  
  .stats-circle {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background-color: #fff;
    border: 5px solid hsl(41, 57%, 59%);
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  }
  
  .stats-circle:hover {
    transform: scale(1.05);
    border-color: hsl(41, 57%, 34%);
  }
  
  .stats-number {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0;
    color: hsl(41, 57%, 34%);
  }
  
  .stats-circle i {
    font-size: 1.8rem;
    color: hsl(41, 57%, 19%);
    margin-bottom: 5px;
  }
  
  .stats-label {
    font-size: 1.1rem;
    font-weight: 600;
    color: hsl(41, 57%, 19%);
    margin-top: 10px;
    line-height: 1.4;
  }
  
  .stats-description {
    font-size: 0.9rem;
    color: #555;
    max-width: 200px;
    margin: 0 auto;
  }
  
  @media (max-width: 767px) {
    .stats-circle {
      width: 120px;
      height: 120px;
    }
    
    .stats-number {
      font-size: 2rem;
    }
  }

:root {
        --primary-color: hsl(41, 57%, 34%);
        --secondary-color: hsl(41, 57%, 19%);
        --accent-color: hsl(41, 57%, 59%);
    }

    .footer {
        background-color: var(--secondary-color);
        color: #fff;
        padding: 60px 0 30px;
        font-size: 16px;
    }

    .footer h5 {
        color: var(--accent-color);
        font-weight: 600;
        margin-bottom: 20px;
        font-size: 1.2rem;
    }

    .footer p {
        margin-bottom: 1rem;
        line-height: 1.6;
    }

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

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

    .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);
        padding-top: 20px;
        margin-top: 30px;
        text-align: center;
        font-size: 14px;
    }

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

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

    .cookie-notice {
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        background-color: var(--secondary-color);
        color: #fff;
        padding: 15px 0;
        z-index: 1000;
        box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
        display: none;
    }

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

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

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

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

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

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

    @media (max-width: 767px) {
        .footer {
            text-align: center;
        }
        
        .footer-section {
            margin-bottom: 30px;
        }
    }

:root {
            --primary-color: hsl(41, 57%, 34%);
            --secondary-color: hsl(41, 57%, 19%);
            --accent-color: hsl(41, 57%, 59%);
        }
        
        body {
            font-family: 'Roboto', sans-serif;
        }
        
        .navbar {
            background-color: #fff;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }
        
        .navbar-brand {
            color: var(--primary-color);
            font-weight: 700;
            font-size: 1.5rem;
        }
        
        .navbar-brand img {
            margin-right: 10px;
        }
        
        .navbar-nav .nav-link {
            color: var(--secondary-color);
            font-weight: 500;
            margin: 0 8px;
            transition: color 0.3s ease;
        }
        
        .navbar-nav .nav-link:hover {
            color: var(--accent-color);
        }
        
        .navbar-toggler {
            border-color: var(--primary-color);
        }
        
        .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='hsl(41, 57%, 34%)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        @media (max-width: 991px) {
            .navbar-collapse {
                padding: 1rem 0;
            }
            
            .navbar-nav .nav-link {
                padding: 0.5rem 0;
            }
        }

.privacy-container {
        max-width: 1000px;
        margin: 0 auto;
        font-family: 'Arial', sans-serif;
        color: #333;
        line-height: 1.6;
    }
    
    .privacy-header {
        text-align: center;
        padding-bottom: 20px;
        border-bottom: 2px solid #3a6ea5;
        margin-bottom: 30px;
    }
    
    .privacy-title {
        color: #3a6ea5;
        font-size: 2.5em;
        margin-bottom: 10px;
    }
    
    .privacy-subtitle {
        color: #666;
        font-size: 1.2em;
        font-weight: normal;
    }
    
    .privacy-section {
        margin-bottom: 30px;
    }
    
    .privacy-section h2 {
        color: #3a6ea5;
        border-bottom: 1px solid #eee;
        padding-bottom: 10px;
        margin-bottom: 15px;
    }
    
    .privacy-section h3 {
        color: #555;
        margin-top: 20px;
        margin-bottom: 10px;
    }
    
    .privacy-section ul {
        padding-left: 20px;
    }
    
    .privacy-section li {
        margin-bottom: 8px;
    }
    
    .privacy-date {
        text-align: right;
        font-style: italic;
        color: #666;
        margin-top: 40px;
    }
    
    .privacy-emphasis {
        font-weight: bold;
        color: #3a6ea5;
    }

:root {
        --primary-color: hsl(41, 57%, 34%);
        --secondary-color: hsl(41, 57%, 19%);
        --accent-color: hsl(41, 57%, 59%);
    }

    .footer {
        background-color: var(--secondary-color);
        color: #fff;
        padding: 60px 0 30px;
        font-size: 16px;
    }

    .footer h5 {
        color: var(--accent-color);
        font-weight: 600;
        margin-bottom: 20px;
        font-size: 1.2rem;
    }

    .footer p {
        margin-bottom: 1rem;
        line-height: 1.6;
    }

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

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

    .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);
        padding-top: 20px;
        margin-top: 30px;
        text-align: center;
        font-size: 14px;
    }

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

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

    .cookie-notice {
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        background-color: var(--secondary-color);
        color: #fff;
        padding: 15px 0;
        z-index: 1000;
        box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
        display: none;
    }

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

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

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

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

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

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

    @media (max-width: 767px) {
        .footer {
            text-align: center;
        }
        
        .footer-section {
            margin-bottom: 30px;
        }
    }

:root {
            --primary-color: hsl(41, 57%, 34%);
            --secondary-color: hsl(41, 57%, 19%);
            --accent-color: hsl(41, 57%, 59%);
        }
        
        body {
            font-family: 'Roboto', sans-serif;
        }
        
        .navbar {
            background-color: #fff;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }
        
        .navbar-brand {
            color: var(--primary-color);
            font-weight: 700;
            font-size: 1.5rem;
        }
        
        .navbar-brand img {
            margin-right: 10px;
        }
        
        .navbar-nav .nav-link {
            color: var(--secondary-color);
            font-weight: 500;
            margin: 0 8px;
            transition: color 0.3s ease;
        }
        
        .navbar-nav .nav-link:hover {
            color: var(--accent-color);
        }
        
        .navbar-toggler {
            border-color: var(--primary-color);
        }
        
        .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='hsl(41, 57%, 34%)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        @media (max-width: 991px) {
            .navbar-collapse {
                padding: 1rem 0;
            }
            
            .navbar-nav .nav-link {
                padding: 0.5rem 0;
            }
        }

.cookies-policy {
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        max-width: 1200px;
        margin: 0 auto;
        padding: 20px;
        color: #333;
        line-height: 1.6;
    }
    
    .cookies-policy h1 {
        color: #2c3e50;
        font-size: 2.5em;
        margin-bottom: 20px;
        text-align: center;
        border-bottom: 2px solid #3498db;
        padding-bottom: 10px;
    }
    
    .cookies-policy h2 {
        color: #3498db;
        font-size: 1.8em;
        margin-top: 30px;
        margin-bottom: 15px;
        border-left: 4px solid #3498db;
        padding-left: 10px;
    }
    
    .cookies-policy p {
        margin-bottom: 15px;
        text-align: justify;
    }
    
    .cookies-policy ul, .cookies-policy ol {
        margin-bottom: 20px;
        padding-left: 20px;
    }
    
    .cookies-policy li {
        margin-bottom: 10px;
    }
    
    .cookies-policy .highlight {
        background-color: #f8f9fa;
        padding: 15px;
        border-radius: 5px;
        border-left: 4px solid #3498db;
        margin: 20px 0;
    }
    
    .cookies-policy .table-container {
        overflow-x: auto;
        margin: 20px 0;
    }
    
    .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: #3498db;
        color: white;
    }
    
    .cookies-policy tr:nth-child(even) {
        background-color: #f2f2f2;
    }
    
    .cookies-policy .last-updated {
        font-style: italic;
        text-align: right;
        margin-top: 30px;
        color: #7f8c8d;
    }

:root {
        --primary-color: hsl(41, 57%, 34%);
        --secondary-color: hsl(41, 57%, 19%);
        --accent-color: hsl(41, 57%, 59%);
    }

    .footer {
        background-color: var(--secondary-color);
        color: #fff;
        padding: 60px 0 30px;
        font-size: 16px;
    }

    .footer h5 {
        color: var(--accent-color);
        font-weight: 600;
        margin-bottom: 20px;
        font-size: 1.2rem;
    }

    .footer p {
        margin-bottom: 1rem;
        line-height: 1.6;
    }

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

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

    .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);
        padding-top: 20px;
        margin-top: 30px;
        text-align: center;
        font-size: 14px;
    }

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

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

    .cookie-notice {
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        background-color: var(--secondary-color);
        color: #fff;
        padding: 15px 0;
        z-index: 1000;
        box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
        display: none;
    }

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

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

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

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

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

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

    @media (max-width: 767px) {
        .footer {
            text-align: center;
        }
        
        .footer-section {
            margin-bottom: 30px;
        }
    }

:root {
            --primary-color: hsl(41, 57%, 34%);
            --secondary-color: hsl(41, 57%, 19%);
            --accent-color: hsl(41, 57%, 59%);
        }
        
        body {
            font-family: 'Roboto', sans-serif;
        }
        
        .navbar {
            background-color: #fff;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }
        
        .navbar-brand {
            color: var(--primary-color);
            font-weight: 700;
            font-size: 1.5rem;
        }
        
        .navbar-brand img {
            margin-right: 10px;
        }
        
        .navbar-nav .nav-link {
            color: var(--secondary-color);
            font-weight: 500;
            margin: 0 8px;
            transition: color 0.3s ease;
        }
        
        .navbar-nav .nav-link:hover {
            color: var(--accent-color);
        }
        
        .navbar-toggler {
            border-color: var(--primary-color);
        }
        
        .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='hsl(41, 57%, 34%)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        @media (max-width: 991px) {
            .navbar-collapse {
                padding: 1rem 0;
            }
            
            .navbar-nav .nav-link {
                padding: 0.5rem 0;
            }
        }

.contact-section {
        padding: 80px 0;
        background-color: #f9f7f2;
        position: relative;
    }
    
    .contact-section h2 {
        color: hsl(41, 57%, 19%);
        font-weight: 700;
        margin-bottom: 30px;
        position: relative;
    }
    
    .contact-section h2:after {
        content: '';
        position: absolute;
        bottom: -10px;
        left: 0;
        width: 70px;
        height: 3px;
        background-color: hsl(41, 57%, 34%);
    }
    
    .contact-form {
        background-color: white;
        padding: 30px;
        border-radius: 8px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    }
    
    .form-group {
        margin-bottom: 20px;
    }
    
    .form-control {
        border: 1px solid #e0e0e0;
        border-radius: 4px;
        padding: 12px 15px;
        font-size: 16px;
        transition: all 0.3s;
    }
    
    .form-control:focus {
        border-color: hsl(41, 57%, 34%);
        box-shadow: 0 0 0 0.2rem rgba(176, 132, 48, 0.25);
    }
    
    .btn-submit {
        background-color: hsl(41, 57%, 34%);
        color: white;
        border: none;
        padding: 12px 30px;
        border-radius: 4px;
        font-weight: 600;
        transition: all 0.3s;
        width: 100%;
        font-size: 16px;
        text-transform: uppercase;
        letter-spacing: 1px;
    }
    
    .btn-submit:hover {
        background-color: hsl(41, 57%, 19%);
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }
    
    .contact-info {
        padding: 20px;
    }
    
    .contact-info-item {
        margin-bottom: 25px;
    }
    
    .contact-info-item h4 {
        color: hsl(41, 57%, 19%);
        margin-bottom: 10px;
        font-weight: 600;
    }
    
    .contact-info-item p {
        color: #666;
        line-height: 1.6;
    }
    
    .consultation-process {
        background-color: hsl(41, 57%, 59%);
        padding: 25px;
        border-radius: 8px;
        margin-top: 30px;
    }
    
    .consultation-process h4 {
        color: hsl(41, 57%, 19%);
        margin-bottom: 15px;
        font-weight: 600;
    }
    
    .consultation-process p {
        color: hsl(41, 57%, 19%);
        line-height: 1.6;
    }
    
    @media (max-width: 767px) {
        .contact-info {
            margin-top: 50px;
        }
    }
    
    .required-field {
        color: #d9534f;
        margin-left: 5px;
    }
    
    .hours-list {
        list-style: none;
        padding-left: 0;
    }
    
    .hours-list li {
        display: flex;
        justify-content: space-between;
        padding: 8px 0;
        border-bottom: 1px dashed #e0e0e0;
    }
    
    .hours-list li:last-child {
        border-bottom: none;
    }

.about-section {
        padding: 100px 0;
        background-color: #fff;
        font-family: 'Poppins', sans-serif;
    }
    
    .about-section h2 {
        color: hsl(41, 57%, 34%);
        font-weight: 700;
        margin-bottom: 30px;
        position: relative;
        padding-bottom: 15px;
    }
    
    .about-section h2:after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 70px;
        height: 3px;
        background-color: hsl(41, 57%, 59%);
    }
    
    .about-section p {
        color: #555;
        line-height: 1.8;
        margin-bottom: 20px;
    }
    
    .about-img {
        border-radius: 10px;
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s ease;
        overflow: hidden;
    }
    
    .about-img:hover {
        transform: translateY(-10px);
    }
    
    .about-img img {
        width: 100%;
        height: auto;
        transition: transform 0.5s ease;
    }
    
    .about-img:hover img {
        transform: scale(1.05);
    }
    
    .timeline {
        position: relative;
        padding: 40px 0;
    }
    
    .timeline:before {
        content: '';
        position: absolute;
        top: 0;
        left: 50%;
        height: 100%;
        width: 2px;
        background-color: hsl(41, 57%, 34%);
        transform: translateX(-50%);
    }
    
    .timeline-item {
        position: relative;
        margin-bottom: 50px;
    }
    
    .timeline-item:last-child {
        margin-bottom: 0;
    }
    
    .timeline-content {
        background-color: #fff;
        border-radius: 8px;
        padding: 25px;
        box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
        position: relative;
        width: 45%;
    }
    
    .timeline-content:before {
        content: '';
        position: absolute;
        top: 20px;
        width: 20px;
        height: 20px;
        background-color: hsl(41, 57%, 59%);
        border-radius: 50%;
    }
    
    .timeline-item:nth-child(odd) .timeline-content {
        margin-left: auto;
        margin-right: 30px;
    }
    
    .timeline-item:nth-child(odd) .timeline-content:before {
        right: -40px;
    }
    
    .timeline-item:nth-child(even) .timeline-content {
        margin-right: auto;
        margin-left: 30px;
    }
    
    .timeline-item:nth-child(even) .timeline-content:before {
        left: -40px;
    }
    
    .timeline-year {
        font-size: 18px;
        font-weight: 700;
        color: hsl(41, 57%, 19%);
        margin-bottom: 10px;
    }
    
    .timeline-title {
        font-size: 20px;
        font-weight: 600;
        color: hsl(41, 57%, 34%);
        margin-bottom: 15px;
    }
    
    .mission-card {
        background-color: #f9f7f2;
        border-left: 4px solid hsl(41, 57%, 34%);
        padding: 25px;
        border-radius: 8px;
        margin-bottom: 30px;
        transition: transform 0.3s ease;
    }
    
    .mission-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    }
    
    .mission-card h4 {
        color: hsl(41, 57%, 19%);
        margin-bottom: 15px;
        font-weight: 600;
    }
    
    @media (max-width: 991px) {
        .timeline:before {
            left: 20px;
        }
        
        .timeline-content {
            width: calc(100% - 60px);
            margin-left: 60px !important;
            margin-right: 0 !important;
        }
        
        .timeline-content:before {
            left: -40px !important;
            right: auto !important;
        }
    }

:root {
        --primary-color: hsl(41, 57%, 34%);
        --secondary-color: hsl(41, 57%, 19%);
        --accent-color: hsl(41, 57%, 59%);
    }

    .footer {
        background-color: var(--secondary-color);
        color: #fff;
        padding: 60px 0 30px;
        font-size: 16px;
    }

    .footer h5 {
        color: var(--accent-color);
        font-weight: 600;
        margin-bottom: 20px;
        font-size: 1.2rem;
    }

    .footer p {
        margin-bottom: 1rem;
        line-height: 1.6;
    }

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

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

    .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);
        padding-top: 20px;
        margin-top: 30px;
        text-align: center;
        font-size: 14px;
    }

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

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

    .cookie-notice {
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        background-color: var(--secondary-color);
        color: #fff;
        padding: 15px 0;
        z-index: 1000;
        box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
        display: none;
    }

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

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

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

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

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

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

    @media (max-width: 767px) {
        .footer {
            text-align: center;
        }
        
        .footer-section {
            margin-bottom: 30px;
        }
    }

:root {
            --primary-color: hsl(41, 57%, 34%);
            --secondary-color: hsl(41, 57%, 19%);
            --accent-color: hsl(41, 57%, 59%);
        }
        
        body {
            font-family: 'Roboto', sans-serif;
        }
        
        .navbar {
            background-color: #fff;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }
        
        .navbar-brand {
            color: var(--primary-color);
            font-weight: 700;
            font-size: 1.5rem;
        }
        
        .navbar-brand img {
            margin-right: 10px;
        }
        
        .navbar-nav .nav-link {
            color: var(--secondary-color);
            font-weight: 500;
            margin: 0 8px;
            transition: color 0.3s ease;
        }
        
        .navbar-nav .nav-link:hover {
            color: var(--accent-color);
        }
        
        .navbar-toggler {
            border-color: var(--primary-color);
        }
        
        .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='hsl(41, 57%, 34%)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        @media (max-width: 991px) {
            .navbar-collapse {
                padding: 1rem 0;
            }
            
            .navbar-nav .nav-link {
                padding: 0.5rem 0;
            }
        }

.services-section {
        padding: 5rem 0;
        background-color: #fff;
    }
    
    .services-header {
        text-align: center;
        margin-bottom: 3rem;
    }
    
    .services-title {
        color: hsl(41, 57%, 34%);
        font-weight: 700;
        margin-bottom: 1rem;
        position: relative;
        display: inline-block;
    }
    
    .services-title:after {
        content: "";
        position: absolute;
        bottom: -10px;
        left: 50%;
        transform: translateX(-50%);
        width: 80px;
        height: 3px;
        background-color: hsl(41, 57%, 59%);
    }
    
    .services-subtitle {
        color: hsl(41, 57%, 19%);
        max-width: 700px;
        margin: 0 auto;
    }
    
    .service-card {
        background-color: #fff;
        border-radius: 10px;
        padding: 2rem;
        height: 100%;
        transition: all 0.3s ease;
        border: 1px solid #f0f0f0;
        box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        margin-bottom: 30px;
    }
    
    .service-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        border-color: hsl(41, 57%, 59%);
    }
    
    .service-icon {
        width: 60px;
        height: 60px;
        display: flex;
        align-items: center;
        justify-content: center;
        background-color: hsl(41, 57%, 59%);
        color: white;
        font-size: 24px;
        border-radius: 50%;
        margin-bottom: 1.5rem;
    }
    
    .service-title {
        color: hsl(41, 57%, 34%);
        margin-bottom: 1rem;
        font-weight: 600;
    }
    
    .service-description {
        color: #555;
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }
    
    .service-price {
        font-weight: 700;
        color: hsl(41, 57%, 19%);
        display: inline-block;
        padding: 0.5rem 1rem;
        background-color: rgba(224, 191, 116, 0.2);
        border-radius: 5px;
    }
    
    .service-terms {
        font-size: 0.8rem;
        color: #777;
        margin-top: 1rem;
    }

.newsletter-section {
        background: linear-gradient(135deg, hsl(41, 57%, 34%) 0%, hsl(41, 57%, 19%) 100%);
        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='100' height='100' 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='hsl(41, 57%, 29%)' fill-opacity='0.1' fill-rule='evenodd'/%3E%3C/svg%3E");
        opacity: 0.6;
    }
    
    .newsletter-container {
        position: relative;
        z-index: 1;
    }
    
    .newsletter-title {
        font-size: 2.5rem;
        font-weight: 700;
        margin-bottom: 10px;
        letter-spacing: -0.5px;
    }
    
    .newsletter-subtitle {
        font-size: 1.2rem;
        margin-bottom: 30px;
        font-weight: 300;
        opacity: 0.9;
        max-width: 600px;
    }
    
    .newsletter-form {
        max-width: 550px;
        position: relative;
    }
    
    .newsletter-form .form-control {
        height: 60px;
        border-radius: 30px;
        padding-left: 25px;
        font-size: 16px;
        border: none;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }
    
    .newsletter-form .form-control:focus {
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    }
    
    .newsletter-form .btn {
        position: absolute;
        right: 5px;
        top: 5px;
        height: 50px;
        border-radius: 25px;
        background-color: hsl(41, 57%, 59%);
        color: hsl(41, 57%, 19%);
        font-weight: 600;
        padding: 0 30px;
        text-transform: uppercase;
        letter-spacing: 1px;
        font-size: 14px;
        border: none;
        transition: all 0.3s ease;
    }
    
    .newsletter-form .btn:hover {
        background-color: hsl(41, 67%, 65%);
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    }
    
    .newsletter-benefits {
        margin-top: 30px;
    }
    
    .benefit-item {
        display: flex;
        align-items: center;
        margin-bottom: 15px;
    }
    
    .benefit-icon {
        width: 24px;
        height: 24px;
        background-color: hsl(41, 57%, 59%);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-right: 15px;
        flex-shrink: 0;
    }
    
    .benefit-icon i {
        color: hsl(41, 57%, 19%);
        font-size: 12px;
    }
    
    .benefit-text {
        font-size: 16px;
        opacity: 0.9;
    }
    
    @media (max-width: 768px) {
        .newsletter-section {
            padding: 60px 0;
        }
        
        .newsletter-title {
            font-size: 2rem;
        }
        
        .newsletter-subtitle {
            font-size: 1rem;
        }
        
        .newsletter-form .form-control {
            height: 55px;
        }
        
        .newsletter-form .btn {
            height: 45px;
            padding: 0 20px;
            font-size: 13px;
        }
    }
    
    @media (max-width: 576px) {
        .newsletter-form .btn {
            position: relative;
            right: auto;
            top: auto;
            width: 100%;
            margin-top: 10px;
        }
    }

.testimonials-section {
    padding: 80px 0;
    background-color: hsl(41, 57%, 95%);
  }
  
  .testimonials-header {
    text-align: center;
    margin-bottom: 50px;
  }
  
  .testimonials-header h2 {
    color: hsl(41, 57%, 19%);
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 2.5rem;
  }
  
  .testimonials-header p {
    color: hsl(41, 57%, 34%);
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.1rem;
  }
  
  .testimonial-card {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
    padding: 30px;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 4px solid hsl(41, 57%, 59%);
  }
  
  .testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  }
  
  .testimonial-quote {
    font-size: 1.05rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 20px;
    font-style: italic;
  }
  
  .testimonial-quote::before {
    content: """;
    font-size: 3rem;
    color: hsl(41, 57%, 59%);
    line-height: 0;
    position: relative;
    top: 15px;
  }
  
  .testimonial-author {
    font-weight: 600;
    color: hsl(41, 57%, 34%);
    margin-bottom: 3px;
  }
  
  .testimonial-location {
    color: #777;
    font-size: 0.9rem;
  }
  
  .testimonial-stars {
    color: hsl(41, 57%, 59%);
    margin-bottom: 10px;
  }

:root {
        --primary-color: hsl(41, 57%, 34%);
        --secondary-color: hsl(41, 57%, 19%);
        --accent-color: hsl(41, 57%, 59%);
    }

    .footer {
        background-color: var(--secondary-color);
        color: #fff;
        padding: 60px 0 30px;
        font-size: 16px;
    }

    .footer h5 {
        color: var(--accent-color);
        font-weight: 600;
        margin-bottom: 20px;
        font-size: 1.2rem;
    }

    .footer p {
        margin-bottom: 1rem;
        line-height: 1.6;
    }

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

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

    .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);
        padding-top: 20px;
        margin-top: 30px;
        text-align: center;
        font-size: 14px;
    }

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

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

    .cookie-notice {
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        background-color: var(--secondary-color);
        color: #fff;
        padding: 15px 0;
        z-index: 1000;
        box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
        display: none;
    }

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

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

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

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

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

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

    @media (max-width: 767px) {
        .footer {
            text-align: center;
        }
        
        .footer-section {
            margin-bottom: 30px;
        }
    }

:root {
            --primary-color: hsl(41, 57%, 34%);
            --secondary-color: hsl(41, 57%, 19%);
            --accent-color: hsl(41, 57%, 59%);
        }
        
        body {
            font-family: 'Roboto', sans-serif;
        }
        
        .navbar {
            background-color: #fff;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }
        
        .navbar-brand {
            color: var(--primary-color);
            font-weight: 700;
            font-size: 1.5rem;
        }
        
        .navbar-brand img {
            margin-right: 10px;
        }
        
        .navbar-nav .nav-link {
            color: var(--secondary-color);
            font-weight: 500;
            margin: 0 8px;
            transition: color 0.3s ease;
        }
        
        .navbar-nav .nav-link:hover {
            color: var(--accent-color);
        }
        
        .navbar-toggler {
            border-color: var(--primary-color);
        }
        
        .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='hsl(41, 57%, 34%)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        @media (max-width: 991px) {
            .navbar-collapse {
                padding: 1rem 0;
            }
            
            .navbar-nav .nav-link {
                padding: 0.5rem 0;
            }
        }

.terms-container {
    font-family: 'Arial', sans-serif;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    line-height: 1.6;
    color: #333;
}
.terms-header {
    border-bottom: 2px solid #3a7bd5;
    padding-bottom: 10px;
    margin-bottom: 25px;
    color: #2c3e50;
}
.terms-section {
    margin-bottom: 30px;
}
.terms-section h2 {
    color: #3a7bd5;
    font-size: 1.5em;
    margin-bottom: 15px;
    padding-bottom: 5px;
    border-bottom: 1px solid #eaeaea;
}
.terms-section p {
    margin-bottom: 15px;
    text-align: justify;
}
.terms-section ul {
    padding-left: 20px;
    margin-bottom: 15px;
}
.terms-section li {
    margin-bottom: 8px;
}
.terms-date {
    font-style: italic;
    color: #777;
    margin-top: 30px;
    text-align: right;
}

:root {
        --primary-color: hsl(41, 57%, 34%);
        --secondary-color: hsl(41, 57%, 19%);
        --accent-color: hsl(41, 57%, 59%);
    }

    .footer {
        background-color: var(--secondary-color);
        color: #fff;
        padding: 60px 0 30px;
        font-size: 16px;
    }

    .footer h5 {
        color: var(--accent-color);
        font-weight: 600;
        margin-bottom: 20px;
        font-size: 1.2rem;
    }

    .footer p {
        margin-bottom: 1rem;
        line-height: 1.6;
    }

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

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

    .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);
        padding-top: 20px;
        margin-top: 30px;
        text-align: center;
        font-size: 14px;
    }

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

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

    .cookie-notice {
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        background-color: var(--secondary-color);
        color: #fff;
        padding: 15px 0;
        z-index: 1000;
        box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
        display: none;
    }

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

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

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

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

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

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

    @media (max-width: 767px) {
        .footer {
            text-align: center;
        }
        
        .footer-section {
            margin-bottom: 30px;
        }
    }

:root {
            --primary-color: hsl(41, 57%, 34%);
            --secondary-color: hsl(41, 57%, 19%);
            --accent-color: hsl(41, 57%, 59%);
        }
        
        body {
            font-family: 'Roboto', sans-serif;
        }
        
        .navbar {
            background-color: #fff;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }
        
        .navbar-brand {
            color: var(--primary-color);
            font-weight: 700;
            font-size: 1.5rem;
        }
        
        .navbar-brand img {
            margin-right: 10px;
        }
        
        .navbar-nav .nav-link {
            color: var(--secondary-color);
            font-weight: 500;
            margin: 0 8px;
            transition: color 0.3s ease;
        }
        
        .navbar-nav .nav-link:hover {
            color: var(--accent-color);
        }
        
        .navbar-toggler {
            border-color: var(--primary-color);
        }
        
        .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='hsl(41, 57%, 34%)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        @media (max-width: 991px) {
            .navbar-collapse {
                padding: 1rem 0;
            }
            
            .navbar-nav .nav-link {
                padding: 0.5rem 0;
            }
        }

.faq-section {
        padding: 80px 0;
        background-color: #fff;
    }
    
    .faq-title {
        color: hsl(41, 57%, 34%);
        margin-bottom: 40px;
        font-weight: 700;
        position: relative;
    }
    
    .faq-title:after {
        content: '';
        display: block;
        width: 70px;
        height: 3px;
        background-color: hsl(41, 57%, 59%);
        margin: 15px 0;
    }
    
    .faq-card {
        border: none;
        border-radius: 10px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        margin-bottom: 20px;
        transition: all 0.3s ease;
        overflow: hidden;
    }
    
    .faq-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    }
    
    .faq-card .card-header {
        background-color: #fff;
        border-bottom: none;
        padding: 20px 25px;
        cursor: pointer;
        position: relative;
    }
    
    .faq-card .card-header h5 {
        color: hsl(41, 57%, 19%);
        font-weight: 600;
        margin: 0;
        padding-right: 30px;
    }
    
    .faq-card .card-header:after {
        content: '+';
        position: absolute;
        right: 20px;
        top: 50%;
        transform: translateY(-50%);
        font-size: 24px;
        color: hsl(41, 57%, 34%);
        transition: all 0.3s ease;
    }
    
    .faq-card .card-header.active:after {
        content: '−';
    }
    
    .faq-card .card-body {
        padding: 5px 25px 25px;
        color: #555;
        line-height: 1.7;
    }
    
    .faq-card .collapse.show + .card-header:after {
        transform: translateY(-50%) rotate(180deg);
    }
    
    @media (max-width: 768px) {
        .faq-section {
            padding: 50px 0;
        }
        
        .faq-card .card-header {
            padding: 15px 20px;
        }
        
        .faq-card .card-body {
            padding: 5px 20px 20px;
        }
    }

.about-section {
        padding: 100px 0;
        background-color: #fff;
        font-family: 'Poppins', sans-serif;
    }
    
    .about-section h2 {
        color: hsl(41, 57%, 34%);
        font-weight: 700;
        margin-bottom: 30px;
        position: relative;
        padding-bottom: 15px;
    }
    
    .about-section h2:after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 70px;
        height: 3px;
        background-color: hsl(41, 57%, 59%);
    }
    
    .about-section p {
        color: #555;
        line-height: 1.8;
        margin-bottom: 20px;
    }
    
    .about-img {
        border-radius: 10px;
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s ease;
        overflow: hidden;
    }
    
    .about-img:hover {
        transform: translateY(-10px);
    }
    
    .about-img img {
        width: 100%;
        height: auto;
        transition: transform 0.5s ease;
    }
    
    .about-img:hover img {
        transform: scale(1.05);
    }
    
    .timeline {
        position: relative;
        padding: 40px 0;
    }
    
    .timeline:before {
        content: '';
        position: absolute;
        top: 0;
        left: 50%;
        height: 100%;
        width: 2px;
        background-color: hsl(41, 57%, 34%);
        transform: translateX(-50%);
    }
    
    .timeline-item {
        position: relative;
        margin-bottom: 50px;
    }
    
    .timeline-item:last-child {
        margin-bottom: 0;
    }
    
    .timeline-content {
        background-color: #fff;
        border-radius: 8px;
        padding: 25px;
        box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
        position: relative;
        width: 45%;
    }
    
    .timeline-content:before {
        content: '';
        position: absolute;
        top: 20px;
        width: 20px;
        height: 20px;
        background-color: hsl(41, 57%, 59%);
        border-radius: 50%;
    }
    
    .timeline-item:nth-child(odd) .timeline-content {
        margin-left: auto;
        margin-right: 30px;
    }
    
    .timeline-item:nth-child(odd) .timeline-content:before {
        right: -40px;
    }
    
    .timeline-item:nth-child(even) .timeline-content {
        margin-right: auto;
        margin-left: 30px;
    }
    
    .timeline-item:nth-child(even) .timeline-content:before {
        left: -40px;
    }
    
    .timeline-year {
        font-size: 18px;
        font-weight: 700;
        color: hsl(41, 57%, 19%);
        margin-bottom: 10px;
    }
    
    .timeline-title {
        font-size: 20px;
        font-weight: 600;
        color: hsl(41, 57%, 34%);
        margin-bottom: 15px;
    }
    
    .mission-card {
        background-color: #f9f7f2;
        border-left: 4px solid hsl(41, 57%, 34%);
        padding: 25px;
        border-radius: 8px;
        margin-bottom: 30px;
        transition: transform 0.3s ease;
    }
    
    .mission-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    }
    
    .mission-card h4 {
        color: hsl(41, 57%, 19%);
        margin-bottom: 15px;
        font-weight: 600;
    }
    
    @media (max-width: 991px) {
        .timeline:before {
            left: 20px;
        }
        
        .timeline-content {
            width: calc(100% - 60px);
            margin-left: 60px !important;
            margin-right: 0 !important;
        }
        
        .timeline-content:before {
            left: -40px !important;
            right: auto !important;
        }
    }

.newsletter-section {
        background: linear-gradient(135deg, hsl(41, 57%, 34%) 0%, hsl(41, 57%, 19%) 100%);
        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='100' height='100' 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='hsl(41, 57%, 29%)' fill-opacity='0.1' fill-rule='evenodd'/%3E%3C/svg%3E");
        opacity: 0.6;
    }
    
    .newsletter-container {
        position: relative;
        z-index: 1;
    }
    
    .newsletter-title {
        font-size: 2.5rem;
        font-weight: 700;
        margin-bottom: 10px;
        letter-spacing: -0.5px;
    }
    
    .newsletter-subtitle {
        font-size: 1.2rem;
        margin-bottom: 30px;
        font-weight: 300;
        opacity: 0.9;
        max-width: 600px;
    }
    
    .newsletter-form {
        max-width: 550px;
        position: relative;
    }
    
    .newsletter-form .form-control {
        height: 60px;
        border-radius: 30px;
        padding-left: 25px;
        font-size: 16px;
        border: none;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }
    
    .newsletter-form .form-control:focus {
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    }
    
    .newsletter-form .btn {
        position: absolute;
        right: 5px;
        top: 5px;
        height: 50px;
        border-radius: 25px;
        background-color: hsl(41, 57%, 59%);
        color: hsl(41, 57%, 19%);
        font-weight: 600;
        padding: 0 30px;
        text-transform: uppercase;
        letter-spacing: 1px;
        font-size: 14px;
        border: none;
        transition: all 0.3s ease;
    }
    
    .newsletter-form .btn:hover {
        background-color: hsl(41, 67%, 65%);
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    }
    
    .newsletter-benefits {
        margin-top: 30px;
    }
    
    .benefit-item {
        display: flex;
        align-items: center;
        margin-bottom: 15px;
    }
    
    .benefit-icon {
        width: 24px;
        height: 24px;
        background-color: hsl(41, 57%, 59%);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-right: 15px;
        flex-shrink: 0;
    }
    
    .benefit-icon i {
        color: hsl(41, 57%, 19%);
        font-size: 12px;
    }
    
    .benefit-text {
        font-size: 16px;
        opacity: 0.9;
    }
    
    @media (max-width: 768px) {
        .newsletter-section {
            padding: 60px 0;
        }
        
        .newsletter-title {
            font-size: 2rem;
        }
        
        .newsletter-subtitle {
            font-size: 1rem;
        }
        
        .newsletter-form .form-control {
            height: 55px;
        }
        
        .newsletter-form .btn {
            height: 45px;
            padding: 0 20px;
            font-size: 13px;
        }
    }
    
    @media (max-width: 576px) {
        .newsletter-form .btn {
            position: relative;
            right: auto;
            top: auto;
            width: 100%;
            margin-top: 10px;
        }
    }

:root {
        --primary-color: hsl(41, 57%, 34%);
        --secondary-color: hsl(41, 57%, 19%);
        --accent-color: hsl(41, 57%, 59%);
    }

    .footer {
        background-color: var(--secondary-color);
        color: #fff;
        padding: 60px 0 30px;
        font-size: 16px;
    }

    .footer h5 {
        color: var(--accent-color);
        font-weight: 600;
        margin-bottom: 20px;
        font-size: 1.2rem;
    }

    .footer p {
        margin-bottom: 1rem;
        line-height: 1.6;
    }

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

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

    .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);
        padding-top: 20px;
        margin-top: 30px;
        text-align: center;
        font-size: 14px;
    }

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

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

    .cookie-notice {
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        background-color: var(--secondary-color);
        color: #fff;
        padding: 15px 0;
        z-index: 1000;
        box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
        display: none;
    }

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

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

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

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

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

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

    @media (max-width: 767px) {
        .footer {
            text-align: center;
        }
        
        .footer-section {
            margin-bottom: 30px;
        }
    }

:root {
            --primary-color: hsl(41, 57%, 34%);
            --secondary-color: hsl(41, 57%, 19%);
            --accent-color: hsl(41, 57%, 59%);
        }
        
        body {
            font-family: 'Roboto', sans-serif;
        }
        
        .navbar {
            background-color: #fff;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }
        
        .navbar-brand {
            color: var(--primary-color);
            font-weight: 700;
            font-size: 1.5rem;
        }
        
        .navbar-brand img {
            margin-right: 10px;
        }
        
        .navbar-nav .nav-link {
            color: var(--secondary-color);
            font-weight: 500;
            margin: 0 8px;
            transition: color 0.3s ease;
        }
        
        .navbar-nav .nav-link:hover {
            color: var(--accent-color);
        }
        
        .navbar-toggler {
            border-color: var(--primary-color);
        }
        
        .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='hsl(41, 57%, 34%)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        @media (max-width: 991px) {
            .navbar-collapse {
                padding: 1rem 0;
            }
            
            .navbar-nav .nav-link {
                padding: 0.5rem 0;
            }
        }

.hero-section {
    background-color: #ffffff;
    padding: 5rem 0;
    text-align: center;
  }
  
  .hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
  }
  
  .hero-title {
    color: hsl(41, 57%, 34%);
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
  }
  
  .hero-subtitle {
    color: hsl(41, 57%, 19%);
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 2rem;
  }
  
  .hero-description {
    color: #333;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2.5rem;
    text-align: left;
  }
  
  .benefits-list {
    text-align: left;
    margin-bottom: 2.5rem;
    padding-left: 1rem;
  }
  
  .benefits-list li {
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
    color: #333;
    list-style-type: none;
    position: relative;
    padding-left: 1.5rem;
  }
  
  .benefits-list li i {
    color: hsl(41, 57%, 34%);
    position: absolute;
    left: 0;
    top: 0.25rem;
  }
  
  .hero-buttons {
    margin-bottom: 3rem;
  }
  
  .btn-primary {
    background-color: hsl(41, 57%, 34%);
    border-color: hsl(41, 57%, 34%);
    color: white;
    padding: 0.75rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 30px;
    margin-right: 1rem;
    transition: all 0.3s ease;
  }
  
  .btn-primary:hover {
    background-color: hsl(41, 57%, 19%);
    border-color: hsl(41, 57%, 19%);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  }
  
  .btn-secondary {
    background-color: transparent;
    border: 2px solid hsl(41, 57%, 34%);
    color: hsl(41, 57%, 34%);
    padding: 0.75rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 30px;
    transition: all 0.3s ease;
  }
  
  .btn-secondary:hover {
    background-color: hsl(41, 57%, 59%);
    border-color: hsl(41, 57%, 59%);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  }
  
  .hero-image-container {
    width: 100%;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  }
  
  .hero-image {
    width: 100%;
    height: auto;
    transition: transform 0.5s ease;
  }
  
  .hero-image:hover {
    transform: scale(1.02);
  }
  
  @media (max-width: 768px) {
    .hero-title {
      font-size: 2.5rem;
    }
    
    .hero-subtitle {
      font-size: 1.5rem;
    }
    
    .btn-primary, .btn-secondary {
      display: block;
      width: 100%;
      margin-bottom: 1rem;
      margin-right: 0;
    }
  }

.advantages-section {
        padding: 80px 0;
        background-color: #fff;
    }
    
    .advantages-section .section-title {
        color: hsl(41, 57%, 34%);
        margin-bottom: 50px;
        text-align: center;
        font-weight: 700;
    }
    
    .advantages-section .advantage-card {
        padding: 30px;
        border-radius: 10px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        height: 100%;
        transition: all 0.3s ease;
        border-bottom: 3px solid transparent;
        margin-bottom: 30px;
    }
    
    .advantages-section .advantage-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        border-bottom: 3px solid hsl(41, 57%, 59%);
    }
    
    .advantages-section .advantage-icon {
        font-size: 2.5rem;
        color: hsl(41, 57%, 34%);
        margin-bottom: 20px;
        display: inline-block;
    }
    
    .advantages-section .advantage-title {
        color: hsl(41, 57%, 19%);
        font-weight: 600;
        margin-bottom: 15px;
        font-size: 1.2rem;
    }
    
    .advantages-section .advantage-description {
        color: #555;
        line-height: 1.6;
    }
    
    @media (max-width: 768px) {
        .advantages-section {
            padding: 50px 0;
        }
        .advantages-section .advantage-card {
            margin-bottom: 20px;
        }
    }

.services-section {
        padding: 5rem 0;
        background-color: #fff;
    }
    
    .services-header {
        text-align: center;
        margin-bottom: 3rem;
    }
    
    .services-title {
        color: hsl(41, 57%, 34%);
        font-weight: 700;
        margin-bottom: 1rem;
        position: relative;
        display: inline-block;
    }
    
    .services-title:after {
        content: "";
        position: absolute;
        bottom: -10px;
        left: 50%;
        transform: translateX(-50%);
        width: 80px;
        height: 3px;
        background-color: hsl(41, 57%, 59%);
    }
    
    .services-subtitle {
        color: hsl(41, 57%, 19%);
        max-width: 700px;
        margin: 0 auto;
    }
    
    .service-card {
        background-color: #fff;
        border-radius: 10px;
        padding: 2rem;
        height: 100%;
        transition: all 0.3s ease;
        border: 1px solid #f0f0f0;
        box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        margin-bottom: 30px;
    }
    
    .service-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        border-color: hsl(41, 57%, 59%);
    }
    
    .service-icon {
        width: 60px;
        height: 60px;
        display: flex;
        align-items: center;
        justify-content: center;
        background-color: hsl(41, 57%, 59%);
        color: white;
        font-size: 24px;
        border-radius: 50%;
        margin-bottom: 1.5rem;
    }
    
    .service-title {
        color: hsl(41, 57%, 34%);
        margin-bottom: 1rem;
        font-weight: 600;
    }
    
    .service-description {
        color: #555;
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }
    
    .service-price {
        font-weight: 700;
        color: hsl(41, 57%, 19%);
        display: inline-block;
        padding: 0.5rem 1rem;
        background-color: rgba(224, 191, 116, 0.2);
        border-radius: 5px;
    }
    
    .service-terms {
        font-size: 0.8rem;
        color: #777;
        margin-top: 1rem;
    }

.contact-section {
        padding: 80px 0;
        background-color: #f9f7f2;
        position: relative;
    }
    
    .contact-section h2 {
        color: hsl(41, 57%, 19%);
        font-weight: 700;
        margin-bottom: 30px;
        position: relative;
    }
    
    .contact-section h2:after {
        content: '';
        position: absolute;
        bottom: -10px;
        left: 0;
        width: 70px;
        height: 3px;
        background-color: hsl(41, 57%, 34%);
    }
    
    .contact-form {
        background-color: white;
        padding: 30px;
        border-radius: 8px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    }
    
    .form-group {
        margin-bottom: 20px;
    }
    
    .form-control {
        border: 1px solid #e0e0e0;
        border-radius: 4px;
        padding: 12px 15px;
        font-size: 16px;
        transition: all 0.3s;
    }
    
    .form-control:focus {
        border-color: hsl(41, 57%, 34%);
        box-shadow: 0 0 0 0.2rem rgba(176, 132, 48, 0.25);
    }
    
    .btn-submit {
        background-color: hsl(41, 57%, 34%);
        color: white;
        border: none;
        padding: 12px 30px;
        border-radius: 4px;
        font-weight: 600;
        transition: all 0.3s;
        width: 100%;
        font-size: 16px;
        text-transform: uppercase;
        letter-spacing: 1px;
    }
    
    .btn-submit:hover {
        background-color: hsl(41, 57%, 19%);
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }
    
    .contact-info {
        padding: 20px;
    }
    
    .contact-info-item {
        margin-bottom: 25px;
    }
    
    .contact-info-item h4 {
        color: hsl(41, 57%, 19%);
        margin-bottom: 10px;
        font-weight: 600;
    }
    
    .contact-info-item p {
        color: #666;
        line-height: 1.6;
    }
    
    .consultation-process {
        background-color: hsl(41, 57%, 59%);
        padding: 25px;
        border-radius: 8px;
        margin-top: 30px;
    }
    
    .consultation-process h4 {
        color: hsl(41, 57%, 19%);
        margin-bottom: 15px;
        font-weight: 600;
    }
    
    .consultation-process p {
        color: hsl(41, 57%, 19%);
        line-height: 1.6;
    }
    
    @media (max-width: 767px) {
        .contact-info {
            margin-top: 50px;
        }
    }
    
    .required-field {
        color: #d9534f;
        margin-left: 5px;
    }
    
    .hours-list {
        list-style: none;
        padding-left: 0;
    }
    
    .hours-list li {
        display: flex;
        justify-content: space-between;
        padding: 8px 0;
        border-bottom: 1px dashed #e0e0e0;
    }
    
    .hours-list li:last-child {
        border-bottom: none;
    }

.testimonials-section {
    padding: 80px 0;
    background-color: hsl(41, 57%, 95%);
  }
  
  .testimonials-header {
    text-align: center;
    margin-bottom: 50px;
  }
  
  .testimonials-header h2 {
    color: hsl(41, 57%, 19%);
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 2.5rem;
  }
  
  .testimonials-header p {
    color: hsl(41, 57%, 34%);
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.1rem;
  }
  
  .testimonial-card {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
    padding: 30px;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 4px solid hsl(41, 57%, 59%);
  }
  
  .testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  }
  
  .testimonial-quote {
    font-size: 1.05rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 20px;
    font-style: italic;
  }
  
  .testimonial-quote::before {
    content: """;
    font-size: 3rem;
    color: hsl(41, 57%, 59%);
    line-height: 0;
    position: relative;
    top: 15px;
  }
  
  .testimonial-author {
    font-weight: 600;
    color: hsl(41, 57%, 34%);
    margin-bottom: 3px;
  }
  
  .testimonial-location {
    color: #777;
    font-size: 0.9rem;
  }
  
  .testimonial-stars {
    color: hsl(41, 57%, 59%);
    margin-bottom: 10px;
  }

.stats-section {
    padding: 80px 0;
    background-color: #fff;
  }
  
  .stats-heading {
    color: hsl(41, 57%, 34%);
    margin-bottom: 60px;
    text-align: center;
  }
  
  .stats-subheading {
    color: hsl(41, 57%, 19%);
    font-weight: 300;
    margin-bottom: 30px;
    text-align: center;
  }
  
  .stats-item {
    text-align: center;
    margin-bottom: 40px;
  }
  
  .stats-circle {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background-color: #fff;
    border: 5px solid hsl(41, 57%, 59%);
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  }
  
  .stats-circle:hover {
    transform: scale(1.05);
    border-color: hsl(41, 57%, 34%);
  }
  
  .stats-number {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0;
    color: hsl(41, 57%, 34%);
  }
  
  .stats-circle i {
    font-size: 1.8rem;
    color: hsl(41, 57%, 19%);
    margin-bottom: 5px;
  }
  
  .stats-label {
    font-size: 1.1rem;
    font-weight: 600;
    color: hsl(41, 57%, 19%);
    margin-top: 10px;
    line-height: 1.4;
  }
  
  .stats-description {
    font-size: 0.9rem;
    color: #555;
    max-width: 200px;
    margin: 0 auto;
  }
  
  @media (max-width: 767px) {
    .stats-circle {
      width: 120px;
      height: 120px;
    }
    
    .stats-number {
      font-size: 2rem;
    }
  }

.newsletter-section {
        background: linear-gradient(135deg, hsl(41, 57%, 34%) 0%, hsl(41, 57%, 19%) 100%);
        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='100' height='100' 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='hsl(41, 57%, 29%)' fill-opacity='0.1' fill-rule='evenodd'/%3E%3C/svg%3E");
        opacity: 0.6;
    }
    
    .newsletter-container {
        position: relative;
        z-index: 1;
    }
    
    .newsletter-title {
        font-size: 2.5rem;
        font-weight: 700;
        margin-bottom: 10px;
        letter-spacing: -0.5px;
    }
    
    .newsletter-subtitle {
        font-size: 1.2rem;
        margin-bottom: 30px;
        font-weight: 300;
        opacity: 0.9;
        max-width: 600px;
    }
    
    .newsletter-form {
        max-width: 550px;
        position: relative;
    }
    
    .newsletter-form .form-control {
        height: 60px;
        border-radius: 30px;
        padding-left: 25px;
        font-size: 16px;
        border: none;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }
    
    .newsletter-form .form-control:focus {
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    }
    
    .newsletter-form .btn {
        position: absolute;
        right: 5px;
        top: 5px;
        height: 50px;
        border-radius: 25px;
        background-color: hsl(41, 57%, 59%);
        color: hsl(41, 57%, 19%);
        font-weight: 600;
        padding: 0 30px;
        text-transform: uppercase;
        letter-spacing: 1px;
        font-size: 14px;
        border: none;
        transition: all 0.3s ease;
    }
    
    .newsletter-form .btn:hover {
        background-color: hsl(41, 67%, 65%);
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    }
    
    .newsletter-benefits {
        margin-top: 30px;
    }
    
    .benefit-item {
        display: flex;
        align-items: center;
        margin-bottom: 15px;
    }
    
    .benefit-icon {
        width: 24px;
        height: 24px;
        background-color: hsl(41, 57%, 59%);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-right: 15px;
        flex-shrink: 0;
    }
    
    .benefit-icon i {
        color: hsl(41, 57%, 19%);
        font-size: 12px;
    }
    
    .benefit-text {
        font-size: 16px;
        opacity: 0.9;
    }
    
    @media (max-width: 768px) {
        .newsletter-section {
            padding: 60px 0;
        }
        
        .newsletter-title {
            font-size: 2rem;
        }
        
        .newsletter-subtitle {
            font-size: 1rem;
        }
        
        .newsletter-form .form-control {
            height: 55px;
        }
        
        .newsletter-form .btn {
            height: 45px;
            padding: 0 20px;
            font-size: 13px;
        }
    }
    
    @media (max-width: 576px) {
        .newsletter-form .btn {
            position: relative;
            right: auto;
            top: auto;
            width: 100%;
            margin-top: 10px;
        }
    }

.about-section {
        padding: 100px 0;
        background-color: #fff;
        font-family: 'Poppins', sans-serif;
    }
    
    .about-section h2 {
        color: hsl(41, 57%, 34%);
        font-weight: 700;
        margin-bottom: 30px;
        position: relative;
        padding-bottom: 15px;
    }
    
    .about-section h2:after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 70px;
        height: 3px;
        background-color: hsl(41, 57%, 59%);
    }
    
    .about-section p {
        color: #555;
        line-height: 1.8;
        margin-bottom: 20px;
    }
    
    .about-img {
        border-radius: 10px;
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s ease;
        overflow: hidden;
    }
    
    .about-img:hover {
        transform: translateY(-10px);
    }
    
    .about-img img {
        width: 100%;
        height: auto;
        transition: transform 0.5s ease;
    }
    
    .about-img:hover img {
        transform: scale(1.05);
    }
    
    .timeline {
        position: relative;
        padding: 40px 0;
    }
    
    .timeline:before {
        content: '';
        position: absolute;
        top: 0;
        left: 50%;
        height: 100%;
        width: 2px;
        background-color: hsl(41, 57%, 34%);
        transform: translateX(-50%);
    }
    
    .timeline-item {
        position: relative;
        margin-bottom: 50px;
    }
    
    .timeline-item:last-child {
        margin-bottom: 0;
    }
    
    .timeline-content {
        background-color: #fff;
        border-radius: 8px;
        padding: 25px;
        box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
        position: relative;
        width: 45%;
    }
    
    .timeline-content:before {
        content: '';
        position: absolute;
        top: 20px;
        width: 20px;
        height: 20px;
        background-color: hsl(41, 57%, 59%);
        border-radius: 50%;
    }
    
    .timeline-item:nth-child(odd) .timeline-content {
        margin-left: auto;
        margin-right: 30px;
    }
    
    .timeline-item:nth-child(odd) .timeline-content:before {
        right: -40px;
    }
    
    .timeline-item:nth-child(even) .timeline-content {
        margin-right: auto;
        margin-left: 30px;
    }
    
    .timeline-item:nth-child(even) .timeline-content:before {
        left: -40px;
    }
    
    .timeline-year {
        font-size: 18px;
        font-weight: 700;
        color: hsl(41, 57%, 19%);
        margin-bottom: 10px;
    }
    
    .timeline-title {
        font-size: 20px;
        font-weight: 600;
        color: hsl(41, 57%, 34%);
        margin-bottom: 15px;
    }
    
    .mission-card {
        background-color: #f9f7f2;
        border-left: 4px solid hsl(41, 57%, 34%);
        padding: 25px;
        border-radius: 8px;
        margin-bottom: 30px;
        transition: transform 0.3s ease;
    }
    
    .mission-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    }
    
    .mission-card h4 {
        color: hsl(41, 57%, 19%);
        margin-bottom: 15px;
        font-weight: 600;
    }
    
    @media (max-width: 991px) {
        .timeline:before {
            left: 20px;
        }
        
        .timeline-content {
            width: calc(100% - 60px);
            margin-left: 60px !important;
            margin-right: 0 !important;
        }
        
        .timeline-content:before {
            left: -40px !important;
            right: auto !important;
        }
    }

.faq-section {
        padding: 80px 0;
        background-color: #fff;
    }
    
    .faq-title {
        color: hsl(41, 57%, 34%);
        margin-bottom: 40px;
        font-weight: 700;
        position: relative;
    }
    
    .faq-title:after {
        content: '';
        display: block;
        width: 70px;
        height: 3px;
        background-color: hsl(41, 57%, 59%);
        margin: 15px 0;
    }
    
    .faq-card {
        border: none;
        border-radius: 10px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        margin-bottom: 20px;
        transition: all 0.3s ease;
        overflow: hidden;
    }
    
    .faq-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    }
    
    .faq-card .card-header {
        background-color: #fff;
        border-bottom: none;
        padding: 20px 25px;
        cursor: pointer;
        position: relative;
    }
    
    .faq-card .card-header h5 {
        color: hsl(41, 57%, 19%);
        font-weight: 600;
        margin: 0;
        padding-right: 30px;
    }
    
    .faq-card .card-header:after {
        content: '+';
        position: absolute;
        right: 20px;
        top: 50%;
        transform: translateY(-50%);
        font-size: 24px;
        color: hsl(41, 57%, 34%);
        transition: all 0.3s ease;
    }
    
    .faq-card .card-header.active:after {
        content: '−';
    }
    
    .faq-card .card-body {
        padding: 5px 25px 25px;
        color: #555;
        line-height: 1.7;
    }
    
    .faq-card .collapse.show + .card-header:after {
        transform: translateY(-50%) rotate(180deg);
    }
    
    @media (max-width: 768px) {
        .faq-section {
            padding: 50px 0;
        }
        
        .faq-card .card-header {
            padding: 15px 20px;
        }
        
        .faq-card .card-body {
            padding: 5px 20px 20px;
        }
    }

:root {
        --primary-color: hsl(41, 57%, 34%);
        --secondary-color: hsl(41, 57%, 19%);
        --accent-color: hsl(41, 57%, 59%);
    }

    .footer {
        background-color: var(--secondary-color);
        color: #fff;
        padding: 60px 0 30px;
        font-size: 16px;
    }

    .footer h5 {
        color: var(--accent-color);
        font-weight: 600;
        margin-bottom: 20px;
        font-size: 1.2rem;
    }

    .footer p {
        margin-bottom: 1rem;
        line-height: 1.6;
    }

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

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

    .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);
        padding-top: 20px;
        margin-top: 30px;
        text-align: center;
        font-size: 14px;
    }

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

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

    .cookie-notice {
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        background-color: var(--secondary-color);
        color: #fff;
        padding: 15px 0;
        z-index: 1000;
        box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
        display: none;
    }

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

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

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

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

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

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

    @media (max-width: 767px) {
        .footer {
            text-align: center;
        }
        
        .footer-section {
            margin-bottom: 30px;
        }
    }