:root {
            --primary-color: hsl(119, 50%, 33%);
            --secondary-color: hsl(119, 50%, 18%);
            --accent-color: hsl(119, 50%, 58%);
        }
        
        body {
            font-family: 'Montserrat', sans-serif;
        }
        
        .navbar {
            background-color: white;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }
        
        .navbar-brand {
            color: var(--primary-color);
            font-weight: 700;
            letter-spacing: 0.5px;
        }
        
        .nav-link {
            color: var(--secondary-color);
            font-weight: 500;
            transition: color 0.3s ease;
        }
        
        .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='rgba(42, 107, 42, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        .brand-name {
            font-size: 1.5rem;
            margin-left: 10px;
        }

.about-section {
    padding: 80px 0;
    background-color: #f9fdf9;
    font-family: 'Poppins', sans-serif;
  }
  
  .about-section h2 {
    color: hsl(119, 50%, 33%);
    font-weight: 700;
    font-size: 42px;
    margin-bottom: 30px;
    position: relative;
  }
  
  .about-section h2:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 3px;
    background-color: hsl(119, 50%, 58%);
  }
  
  .about-section p {
    color: #444;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
  }
  
  .about-image {
    border-radius: 10px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    margin-bottom: 30px;
    overflow: hidden;
  }
  
  .about-image img {
    width: 100%;
    height: auto;
    transition: transform 0.5s ease;
  }
  
  .about-image:hover img {
    transform: scale(1.05);
  }
  
  .mission-box {
    background-color: rgba(126, 209, 126, 0.1);
    border-left: 4px solid hsl(119, 50%, 33%);
    padding: 25px;
    margin: 30px 0;
    border-radius: 0 8px 8px 0;
  }
  
  .mission-box h3 {
    color: hsl(119, 50%, 18%);
    margin-bottom: 15px;
    font-size: 24px;
  }
  
  .timeline {
    position: relative;
    padding: 20px 0;
    margin-top: 50px;
  }
  
  .timeline:before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 3px;
    height: 100%;
    background: hsl(119, 50%, 33%);
    transform: translateX(-50%);
  }
  
  .timeline-item {
    position: relative;
    margin-bottom: 50px;
  }
  
  .timeline-content {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    width: 45%;
    position: relative;
  }
  
  .timeline-item:nth-child(odd) .timeline-content {
    margin-left: auto;
  }
  
  .timeline-item:nth-child(odd) .timeline-content:before {
    content: '';
    position: absolute;
    top: 20px;
    left: -15px;
    width: 0;
    height: 0;
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
    border-right: 15px solid white;
  }
  
  .timeline-item:nth-child(even) .timeline-content:before {
    content: '';
    position: absolute;
    top: 20px;
    right: -15px;
    width: 0;
    height: 0;
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
    border-left: 15px solid white;
  }
  
  .timeline-dot {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: hsl(119, 50%, 58%);
    border: 4px solid hsl(119, 50%, 33%);
    z-index: 1;
  }
  
  .timeline-year {
    color: hsl(119, 50%, 33%);
    font-weight: bold;
    font-size: 18px;
    margin-bottom: 10px;
  }
  
  @media (max-width: 768px) {
    .timeline:before {
      left: 30px;
    }
    
    .timeline-dot {
      left: 30px;
    }
    
    .timeline-content {
      width: calc(100% - 60px);
      margin-left: 60px !important;
    }
    
    .timeline-item:nth-child(odd) .timeline-content:before,
    .timeline-item:nth-child(even) .timeline-content:before {
      left: -15px;
      border-right: 15px solid white;
      border-left: 0;
    }
  }
  
  .highlight-text {
    color: hsl(119, 50%, 33%);
    font-weight: 600;
  }
  
  .values-list {
    list-style-type: none;
    padding-left: 0;
  }
  
  .values-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px;
    font-size: 16px;
  }
  
  .values-list li:before {
    content: "✦";
    position: absolute;
    left: 0;
    color: hsl(119, 50%, 58%);
    font-weight: bold;
  }

.advantages-section {
        padding: 80px 0;
        background-color: #f9fcf9;
    }
    
    .advantages-title {
        color: hsl(119, 50%, 33%);
        margin-bottom: 50px;
        font-weight: 700;
        position: relative;
    }
    
    .advantages-title:after {
        content: '';
        position: absolute;
        bottom: -15px;
        left: 50%;
        transform: translateX(-50%);
        width: 80px;
        height: 3px;
        background-color: hsl(119, 50%, 58%);
    }
    
    .advantage-card {
        padding: 30px 20px;
        border-radius: 8px;
        transition: all 0.3s ease;
        height: 100%;
        background-color: white;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        border-bottom: 3px solid transparent;
    }
    
    .advantage-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        border-bottom: 3px solid hsl(119, 50%, 58%);
    }
    
    .advantage-icon {
        font-size: 2.5rem;
        color: hsl(119, 50%, 33%);
        margin-bottom: 20px;
        display: inline-block;
        background-color: rgba(76, 166, 76, 0.1);
        width: 80px;
        height: 80px;
        line-height: 80px;
        border-radius: 50%;
    }
    
    .advantage-title {
        font-size: 1.25rem;
        color: hsl(119, 50%, 18%);
        margin-bottom: 15px;
        font-weight: 600;
    }
    
    .advantage-description {
        color: #666;
        font-size: 0.95rem;
        line-height: 1.6;
    }
    
    @media (max-width: 991px) {
        .advantage-col {
            margin-bottom: 30px;
        }
    }

.statistics-section {
    padding: 100px 0;
    background-color: #f9fcf7;
    position: relative;
}

.statistics-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(75, 145, 65, 0.05) 0%, rgba(75, 145, 65, 0.1) 100%);
    z-index: 0;
}

.statistics-section .container {
    position: relative;
    z-index: 1;
}

.statistics-section h2 {
    color: hsl(119, 50%, 18%);
    font-weight: 700;
    margin-bottom: 50px;
    position: relative;
    display: inline-block;
}

.statistics-section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: hsl(119, 50%, 58%);
}

.stat-item {
    text-align: center;
    margin-bottom: 40px;
    padding: 20px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(75, 145, 65, 0.1);
}

.stat-icon {
    background-color: rgba(75, 145, 65, 0.1);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.stat-icon i {
    color: hsl(119, 50%, 33%);
    font-size: 32px;
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    color: hsl(119, 50%, 33%);
    margin-bottom: 10px;
    display: block;
}

.stat-title {
    font-size: 18px;
    color: hsl(119, 50%, 18%);
    margin-bottom: 10px;
    font-weight: 600;
}

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

@media (max-width: 767px) {
    .statistics-section {
        padding: 60px 0;
    }
    
    .stat-number {
        font-size: 36px;
    }
    
    .stat-title {
        font-size: 16px;
    }
}

:root {
    --primary-color: hsl(119, 50%, 33%);
    --secondary-color: hsl(119, 50%, 18%);
    --accent-color: hsl(119, 50%, 58%);
}

footer {
    background-color: var(--secondary-color);
    color: white;
    padding: 3rem 0 1rem;
    font-family: 'Montserrat', sans-serif;
}

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

footer p {
    font-size: 0.95rem;
    line-height: 1.6;
}

footer a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

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

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

.contact-info {
    margin-bottom: 1rem;
}

.contact-info i {
    margin-right: 10px;
    color: var(--accent-color);
}

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

/* Cookie Notice Styles */
.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.9);
    color: white;
    padding: 1rem 0;
    z-index: 9999;
    display: none;
    box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.2);
}

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

.cookie-btn {
    padding: 0.5rem 1rem;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-right: 0.5rem;
}

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

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

.cookie-learn {
    background-color: transparent;
    color: white;
    border: 1px solid white;
}

.cookie-learn:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--accent-color);
}

:root {
            --primary-color: hsl(119, 50%, 33%);
            --secondary-color: hsl(119, 50%, 18%);
            --accent-color: hsl(119, 50%, 58%);
        }
        
        body {
            font-family: 'Montserrat', sans-serif;
        }
        
        .navbar {
            background-color: white;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }
        
        .navbar-brand {
            color: var(--primary-color);
            font-weight: 700;
            letter-spacing: 0.5px;
        }
        
        .nav-link {
            color: var(--secondary-color);
            font-weight: 500;
            transition: color 0.3s ease;
        }
        
        .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='rgba(42, 107, 42, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        .brand-name {
            font-size: 1.5rem;
            margin-left: 10px;
        }

.privacy-policy {
        font-family: 'Arial', sans-serif;
        max-width: 1000px;
        margin: 0 auto;
        padding: 20px;
        color: #333;
        line-height: 1.6;
    }
    
    .privacy-policy h1 {
        color: #2c3e50;
        font-size: 32px;
        margin-bottom: 20px;
        text-align: center;
        border-bottom: 2px solid #e7e7e7;
        padding-bottom: 15px;
    }
    
    .privacy-policy h2 {
        color: #3498db;
        font-size: 24px;
        margin-top: 30px;
        margin-bottom: 15px;
        border-left: 4px solid #3498db;
        padding-left: 10px;
    }
    
    .privacy-policy p {
        margin-bottom: 15px;
        text-align: justify;
    }
    
    .privacy-policy ul, .privacy-policy ol {
        margin-bottom: 20px;
        padding-left: 20px;
    }
    
    .privacy-policy li {
        margin-bottom: 10px;
    }
    
    .privacy-policy .highlight {
        background-color: #f8f9fa;
        padding: 15px;
        border-radius: 5px;
        border-left: 4px solid #3498db;
        margin: 20px 0;
    }
    
    .privacy-policy .last-updated {
        font-style: italic;
        text-align: right;
        margin-top: 30px;
        color: #7f8c8d;
    }
    
    .privacy-policy a {
        color: #3498db;
        text-decoration: none;
    }
    
    .privacy-policy a:hover {
        text-decoration: underline;
    }

:root {
    --primary-color: hsl(119, 50%, 33%);
    --secondary-color: hsl(119, 50%, 18%);
    --accent-color: hsl(119, 50%, 58%);
}

footer {
    background-color: var(--secondary-color);
    color: white;
    padding: 3rem 0 1rem;
    font-family: 'Montserrat', sans-serif;
}

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

footer p {
    font-size: 0.95rem;
    line-height: 1.6;
}

footer a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

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

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

.contact-info {
    margin-bottom: 1rem;
}

.contact-info i {
    margin-right: 10px;
    color: var(--accent-color);
}

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

/* Cookie Notice Styles */
.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.9);
    color: white;
    padding: 1rem 0;
    z-index: 9999;
    display: none;
    box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.2);
}

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

.cookie-btn {
    padding: 0.5rem 1rem;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-right: 0.5rem;
}

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

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

.cookie-learn {
    background-color: transparent;
    color: white;
    border: 1px solid white;
}

.cookie-learn:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--accent-color);
}

:root {
            --primary-color: hsl(119, 50%, 33%);
            --secondary-color: hsl(119, 50%, 18%);
            --accent-color: hsl(119, 50%, 58%);
        }
        
        body {
            font-family: 'Montserrat', sans-serif;
        }
        
        .navbar {
            background-color: white;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }
        
        .navbar-brand {
            color: var(--primary-color);
            font-weight: 700;
            letter-spacing: 0.5px;
        }
        
        .nav-link {
            color: var(--secondary-color);
            font-weight: 500;
            transition: color 0.3s ease;
        }
        
        .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='rgba(42, 107, 42, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        .brand-name {
            font-size: 1.5rem;
            margin-left: 10px;
        }

.cookies-policy {
        font-family: 'Helvetica Neue', Arial, sans-serif;
        color: #333;
        line-height: 1.6;
        max-width: 1000px;
        margin: 0 auto;
        padding: 20px;
    }
    .cookies-policy h1 {
        color: #2c3e50;
        font-size: 2.2em;
        margin-bottom: 25px;
        border-bottom: 2px solid #eaeaea;
        padding-bottom: 10px;
    }
    .cookies-policy h2 {
        color: #3498db;
        font-size: 1.5em;
        margin-top: 30px;
        margin-bottom: 15px;
    }
    .cookies-policy p {
        margin-bottom: 15px;
        text-align: justify;
    }
    .cookies-policy ul, .cookies-policy ol {
        margin-bottom: 20px;
        padding-left: 25px;
    }
    .cookies-policy li {
        margin-bottom: 10px;
    }
    .cookies-policy .highlight {
        background-color: #f8f9fa;
        padding: 15px;
        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;
    }
    .cookies-policy th, .cookies-policy td {
        border: 1px solid #ddd;
        padding: 12px;
        text-align: left;
    }
    .cookies-policy th {
        background-color: #f2f2f2;
    }
    .cookies-policy tr:nth-child(even) {
        background-color: #f9f9f9;
    }

:root {
    --primary-color: hsl(119, 50%, 33%);
    --secondary-color: hsl(119, 50%, 18%);
    --accent-color: hsl(119, 50%, 58%);
}

footer {
    background-color: var(--secondary-color);
    color: white;
    padding: 3rem 0 1rem;
    font-family: 'Montserrat', sans-serif;
}

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

footer p {
    font-size: 0.95rem;
    line-height: 1.6;
}

footer a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

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

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

.contact-info {
    margin-bottom: 1rem;
}

.contact-info i {
    margin-right: 10px;
    color: var(--accent-color);
}

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

/* Cookie Notice Styles */
.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.9);
    color: white;
    padding: 1rem 0;
    z-index: 9999;
    display: none;
    box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.2);
}

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

.cookie-btn {
    padding: 0.5rem 1rem;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-right: 0.5rem;
}

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

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

.cookie-learn {
    background-color: transparent;
    color: white;
    border: 1px solid white;
}

.cookie-learn:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--accent-color);
}

:root {
            --primary-color: hsl(119, 50%, 33%);
            --secondary-color: hsl(119, 50%, 18%);
            --accent-color: hsl(119, 50%, 58%);
        }
        
        body {
            font-family: 'Montserrat', sans-serif;
        }
        
        .navbar {
            background-color: white;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }
        
        .navbar-brand {
            color: var(--primary-color);
            font-weight: 700;
            letter-spacing: 0.5px;
        }
        
        .nav-link {
            color: var(--secondary-color);
            font-weight: 500;
            transition: color 0.3s ease;
        }
        
        .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='rgba(42, 107, 42, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        .brand-name {
            font-size: 1.5rem;
            margin-left: 10px;
        }

.contact-section {
        padding: 5rem 0;
        background-color: #f9f9f9;
    }
    
    .contact-section .title {
        color: hsl(119, 50%, 33%);
        font-weight: 700;
        margin-bottom: 2rem;
        position: relative;
    }
    
    .contact-section .title::after {
        content: "";
        position: absolute;
        bottom: -10px;
        left: 0;
        width: 60px;
        height: 3px;
        background-color: hsl(119, 50%, 58%);
    }
    
    .contact-form label {
        font-weight: 500;
        color: hsl(119, 50%, 18%);
        margin-bottom: 0.5rem;
    }
    
    .contact-form .form-control {
        border-radius: 0;
        border: 1px solid #ddd;
        padding: 0.8rem;
        margin-bottom: 1.5rem;
    }
    
    .contact-form .form-control:focus {
        box-shadow: none;
        border-color: hsl(119, 50%, 33%);
    }
    
    .btn-submit {
        background-color: hsl(119, 50%, 33%);
        color: white;
        padding: 0.8rem 2rem;
        border: none;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 1px;
        transition: all 0.3s ease;
    }
    
    .btn-submit:hover {
        background-color: hsl(119, 50%, 18%);
        transform: translateY(-3px);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }
    
    .contact-info {
        background-color: hsl(119, 50%, 33%);
        color: white;
        padding: 2.5rem;
        height: 100%;
    }
    
    .contact-info h3 {
        color: white;
        font-weight: 700;
        margin-bottom: 1.5rem;
        position: relative;
    }
    
    .contact-info h3::after {
        content: "";
        position: absolute;
        bottom: -10px;
        left: 0;
        width: 40px;
        height: 3px;
        background-color: hsl(119, 50%, 58%);
    }
    
    .contact-info p {
        margin-bottom: 1.2rem;
        line-height: 1.8;
    }
    
    .contact-info .hours {
        margin-top: 2rem;
    }
    
    .contact-info .hours h4 {
        color: white;
        font-weight: 600;
        font-size: 1.1rem;
        margin-bottom: 1rem;
    }
    
    .contact-info .hours p {
        display: flex;
        justify-content: space-between;
        margin-bottom: 0.5rem;
    }
    
    .map-container {
        background-color: #e9e9e9;
        height: 200px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-top: 2rem;
        color: #555;
        font-style: italic;
    }
    
    @media (max-width: 768px) {
        .contact-info {
            margin-top: 2rem;
        }
    }

.about-section {
    padding: 80px 0;
    background-color: #f9fdf9;
    font-family: 'Poppins', sans-serif;
  }
  
  .about-section h2 {
    color: hsl(119, 50%, 33%);
    font-weight: 700;
    font-size: 42px;
    margin-bottom: 30px;
    position: relative;
  }
  
  .about-section h2:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 3px;
    background-color: hsl(119, 50%, 58%);
  }
  
  .about-section p {
    color: #444;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
  }
  
  .about-image {
    border-radius: 10px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    margin-bottom: 30px;
    overflow: hidden;
  }
  
  .about-image img {
    width: 100%;
    height: auto;
    transition: transform 0.5s ease;
  }
  
  .about-image:hover img {
    transform: scale(1.05);
  }
  
  .mission-box {
    background-color: rgba(126, 209, 126, 0.1);
    border-left: 4px solid hsl(119, 50%, 33%);
    padding: 25px;
    margin: 30px 0;
    border-radius: 0 8px 8px 0;
  }
  
  .mission-box h3 {
    color: hsl(119, 50%, 18%);
    margin-bottom: 15px;
    font-size: 24px;
  }
  
  .timeline {
    position: relative;
    padding: 20px 0;
    margin-top: 50px;
  }
  
  .timeline:before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 3px;
    height: 100%;
    background: hsl(119, 50%, 33%);
    transform: translateX(-50%);
  }
  
  .timeline-item {
    position: relative;
    margin-bottom: 50px;
  }
  
  .timeline-content {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    width: 45%;
    position: relative;
  }
  
  .timeline-item:nth-child(odd) .timeline-content {
    margin-left: auto;
  }
  
  .timeline-item:nth-child(odd) .timeline-content:before {
    content: '';
    position: absolute;
    top: 20px;
    left: -15px;
    width: 0;
    height: 0;
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
    border-right: 15px solid white;
  }
  
  .timeline-item:nth-child(even) .timeline-content:before {
    content: '';
    position: absolute;
    top: 20px;
    right: -15px;
    width: 0;
    height: 0;
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
    border-left: 15px solid white;
  }
  
  .timeline-dot {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: hsl(119, 50%, 58%);
    border: 4px solid hsl(119, 50%, 33%);
    z-index: 1;
  }
  
  .timeline-year {
    color: hsl(119, 50%, 33%);
    font-weight: bold;
    font-size: 18px;
    margin-bottom: 10px;
  }
  
  @media (max-width: 768px) {
    .timeline:before {
      left: 30px;
    }
    
    .timeline-dot {
      left: 30px;
    }
    
    .timeline-content {
      width: calc(100% - 60px);
      margin-left: 60px !important;
    }
    
    .timeline-item:nth-child(odd) .timeline-content:before,
    .timeline-item:nth-child(even) .timeline-content:before {
      left: -15px;
      border-right: 15px solid white;
      border-left: 0;
    }
  }
  
  .highlight-text {
    color: hsl(119, 50%, 33%);
    font-weight: 600;
  }
  
  .values-list {
    list-style-type: none;
    padding-left: 0;
  }
  
  .values-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px;
    font-size: 16px;
  }
  
  .values-list li:before {
    content: "✦";
    position: absolute;
    left: 0;
    color: hsl(119, 50%, 58%);
    font-weight: bold;
  }

:root {
    --primary-color: hsl(119, 50%, 33%);
    --secondary-color: hsl(119, 50%, 18%);
    --accent-color: hsl(119, 50%, 58%);
}

footer {
    background-color: var(--secondary-color);
    color: white;
    padding: 3rem 0 1rem;
    font-family: 'Montserrat', sans-serif;
}

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

footer p {
    font-size: 0.95rem;
    line-height: 1.6;
}

footer a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

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

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

.contact-info {
    margin-bottom: 1rem;
}

.contact-info i {
    margin-right: 10px;
    color: var(--accent-color);
}

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

/* Cookie Notice Styles */
.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.9);
    color: white;
    padding: 1rem 0;
    z-index: 9999;
    display: none;
    box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.2);
}

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

.cookie-btn {
    padding: 0.5rem 1rem;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-right: 0.5rem;
}

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

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

.cookie-learn {
    background-color: transparent;
    color: white;
    border: 1px solid white;
}

.cookie-learn:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--accent-color);
}

:root {
            --primary-color: hsl(119, 50%, 33%);
            --secondary-color: hsl(119, 50%, 18%);
            --accent-color: hsl(119, 50%, 58%);
        }
        
        body {
            font-family: 'Montserrat', sans-serif;
        }
        
        .navbar {
            background-color: white;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }
        
        .navbar-brand {
            color: var(--primary-color);
            font-weight: 700;
            letter-spacing: 0.5px;
        }
        
        .nav-link {
            color: var(--secondary-color);
            font-weight: 500;
            transition: color 0.3s ease;
        }
        
        .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='rgba(42, 107, 42, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        .brand-name {
            font-size: 1.5rem;
            margin-left: 10px;
        }

.services-section {
        padding: 80px 0;
        background-color: #f9fdf9;
    }
    
    .section-title {
        color: hsl(119, 50%, 33%);
        margin-bottom: 50px;
        font-weight: 700;
        position: relative;
    }
    
    .section-title:after {
        content: '';
        position: absolute;
        width: 70px;
        height: 3px;
        background-color: hsl(119, 50%, 58%);
        bottom: -15px;
        left: 50%;
        transform: translateX(-50%);
    }
    
    .nav-tabs {
        border-bottom: 1px solid hsl(119, 50%, 33%);
        margin-bottom: 30px;
        justify-content: center;
    }
    
    .nav-tabs .nav-link {
        color: #555;
        border: none;
        font-weight: 600;
        padding: 12px 20px;
        border-radius: 0;
        transition: all 0.3s ease;
    }
    
    .nav-tabs .nav-link:hover {
        color: hsl(119, 50%, 33%);
    }
    
    .nav-tabs .nav-link.active {
        color: white;
        background-color: hsl(119, 50%, 33%);
        border: none;
    }
    
    .service-card {
        padding: 25px;
        border-radius: 8px;
        background: white;
        box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        transition: all 0.4s ease;
        height: 100%;
        border-bottom: 3px solid transparent;
    }
    
    .service-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        border-bottom: 3px solid hsl(119, 50%, 58%);
    }
    
    .service-icon {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 70px;
        height: 70px;
        border-radius: 50%;
        background-color: rgba(76, 175, 80, 0.1);
        color: hsl(119, 50%, 33%);
        margin-bottom: 20px;
        font-size: 28px;
    }
    
    .service-title {
        color: hsl(119, 50%, 18%);
        font-weight: 700;
        margin-bottom: 15px;
        font-size: 1.25rem;
    }
    
    .service-description {
        color: #666;
        margin-bottom: 20px;
        line-height: 1.6;
    }
    
    .service-price {
        font-weight: 700;
        color: hsl(119, 50%, 33%);
        font-size: 1.2rem;
        margin-top: auto;
    }
    
    .service-conditions {
        font-size: 0.85rem;
        color: #888;
        font-style: italic;
    }
    
    .tab-pane {
        animation: fadeIn 0.5s ease-in-out;
    }
    
    @keyframes fadeIn {
        from { opacity: 0; transform: translateY(20px); }
        to { opacity: 1; transform: translateY(0); }
    }

.newsletter-section {
        background: linear-gradient(135deg, hsl(119, 50%, 33%), hsl(119, 50%, 18%));
        color: white;
        padding: 4rem 2rem;
        border-radius: 10px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        margin: 4rem 0;
    }

    .newsletter-container {
        max-width: 1200px;
        margin: 0 auto;
    }

    .newsletter-title {
        font-size: 2.5rem;
        margin-bottom: 1.5rem;
        font-weight: 700;
        position: relative;
        display: inline-block;
    }

    .newsletter-title:after {
        content: '';
        position: absolute;
        left: 0;
        bottom: -10px;
        width: 80px;
        height: 4px;
        background-color: hsl(119, 50%, 58%);
    }

    .newsletter-description {
        font-size: 1.1rem;
        margin-bottom: 2rem;
        line-height: 1.6;
    }

    .newsletter-form {
        background-color: rgba(255, 255, 255, 0.1);
        padding: 2rem;
        border-radius: 8px;
        backdrop-filter: blur(5px);
    }

    .newsletter-benefits {
        margin-top: 1.5rem;
    }

    .benefit-item {
        margin-bottom: 1rem;
        display: flex;
        align-items: center;
    }

    .benefit-item i {
        color: hsl(119, 50%, 58%);
        margin-right: 10px;
        font-size: 1.2rem;
    }

    .newsletter-input {
        height: 50px;
        border-radius: 4px;
        border: none;
        padding: 0 15px;
        font-size: 1rem;
        background-color: rgba(255, 255, 255, 0.9);
    }

    .newsletter-input:focus {
        box-shadow: 0 0 0 3px hsla(119, 50%, 58%, 0.3);
    }

    .newsletter-button {
        background-color: hsl(119, 50%, 58%);
        color: hsl(119, 50%, 18%);
        border: none;
        height: 50px;
        font-weight: 600;
        letter-spacing: 0.5px;
        transition: all 0.3s ease;
        text-transform: uppercase;
    }

    .newsletter-button:hover {
        background-color: hsl(119, 60%, 62%);
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }

    @media (max-width: 768px) {
        .newsletter-section {
            padding: 3rem 1.5rem;
        }
        
        .newsletter-title {
            font-size: 2rem;
        }
    }

.testimonials-section {
        padding: 5rem 0;
        background-color: #f9fdf9;
    }
    .testimonials-heading {
        text-align: center;
        margin-bottom: 3rem;
        color: hsl(119, 50%, 33%);
    }
    .testimonials-subheading {
        text-align: center;
        margin-bottom: 3rem;
        color: hsl(119, 50%, 18%);
        font-weight: 300;
        max-width: 700px;
        margin-left: auto;
        margin-right: auto;
    }
    .testimonial-card {
        background-color: white;
        border-radius: 10px;
        padding: 2rem;
        margin-bottom: 2rem;
        box-shadow: 0 4px 12px rgba(0,0,0,0.05);
        height: calc(100% - 2rem);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        border-top: 4px solid hsl(119, 50%, 58%);
    }
    .testimonial-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    }
    .testimonial-text {
        font-style: italic;
        color: #555;
        margin-bottom: 1.5rem;
        line-height: 1.6;
    }
    .client-name {
        font-weight: 600;
        color: hsl(119, 50%, 33%);
        margin-bottom: 0.2rem;
    }
    .client-location {
        color: #777;
        font-size: 0.9rem;
    }
    .quote-icon {
        color: hsl(119, 50%, 58%);
        font-size: 2rem;
        opacity: 0.4;
        margin-bottom: 1rem;
    }

:root {
    --primary-color: hsl(119, 50%, 33%);
    --secondary-color: hsl(119, 50%, 18%);
    --accent-color: hsl(119, 50%, 58%);
}

footer {
    background-color: var(--secondary-color);
    color: white;
    padding: 3rem 0 1rem;
    font-family: 'Montserrat', sans-serif;
}

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

footer p {
    font-size: 0.95rem;
    line-height: 1.6;
}

footer a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

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

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

.contact-info {
    margin-bottom: 1rem;
}

.contact-info i {
    margin-right: 10px;
    color: var(--accent-color);
}

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

/* Cookie Notice Styles */
.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.9);
    color: white;
    padding: 1rem 0;
    z-index: 9999;
    display: none;
    box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.2);
}

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

.cookie-btn {
    padding: 0.5rem 1rem;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-right: 0.5rem;
}

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

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

.cookie-learn {
    background-color: transparent;
    color: white;
    border: 1px solid white;
}

.cookie-learn:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--accent-color);
}

:root {
            --primary-color: hsl(119, 50%, 33%);
            --secondary-color: hsl(119, 50%, 18%);
            --accent-color: hsl(119, 50%, 58%);
        }
        
        body {
            font-family: 'Montserrat', sans-serif;
        }
        
        .navbar {
            background-color: white;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }
        
        .navbar-brand {
            color: var(--primary-color);
            font-weight: 700;
            letter-spacing: 0.5px;
        }
        
        .nav-link {
            color: var(--secondary-color);
            font-weight: 500;
            transition: color 0.3s ease;
        }
        
        .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='rgba(42, 107, 42, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        .brand-name {
            font-size: 1.5rem;
            margin-left: 10px;
        }

.terms-container {
        font-family: 'Helvetica Neue', Arial, sans-serif;
        max-width: 1000px;
        margin: 0 auto;
        padding: 20px;
        color: #333;
        line-height: 1.6;
    }
    .terms-container h1 {
        color: #2c3e50;
        font-size: 28px;
        margin-bottom: 25px;
        text-align: center;
        border-bottom: 2px solid #eaeaea;
        padding-bottom: 15px;
    }
    .terms-container h2 {
        color: #3a6a8f;
        font-size: 22px;
        margin-top: 30px;
        margin-bottom: 15px;
        padding-bottom: 8px;
        border-bottom: 1px solid #eaeaea;
    }
    .terms-container p {
        margin-bottom: 15px;
        text-align: justify;
    }
    .terms-container ul {
        padding-left: 20px;
        margin-bottom: 20px;
    }
    .terms-container li {
        margin-bottom: 8px;
    }
    .terms-container .last-updated {
        font-style: italic;
        color: #777;
        text-align: right;
        margin-top: 30px;
        font-size: 14px;
    }
    .terms-container .highlight {
        background-color: #f8f9fa;
        padding: 15px;
        border-left: 4px solid #3a6a8f;
        margin: 20px 0;
    }

:root {
    --primary-color: hsl(119, 50%, 33%);
    --secondary-color: hsl(119, 50%, 18%);
    --accent-color: hsl(119, 50%, 58%);
}

footer {
    background-color: var(--secondary-color);
    color: white;
    padding: 3rem 0 1rem;
    font-family: 'Montserrat', sans-serif;
}

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

footer p {
    font-size: 0.95rem;
    line-height: 1.6;
}

footer a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

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

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

.contact-info {
    margin-bottom: 1rem;
}

.contact-info i {
    margin-right: 10px;
    color: var(--accent-color);
}

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

/* Cookie Notice Styles */
.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.9);
    color: white;
    padding: 1rem 0;
    z-index: 9999;
    display: none;
    box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.2);
}

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

.cookie-btn {
    padding: 0.5rem 1rem;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-right: 0.5rem;
}

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

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

.cookie-learn {
    background-color: transparent;
    color: white;
    border: 1px solid white;
}

.cookie-learn:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--accent-color);
}

:root {
            --primary-color: hsl(119, 50%, 33%);
            --secondary-color: hsl(119, 50%, 18%);
            --accent-color: hsl(119, 50%, 58%);
        }
        
        body {
            font-family: 'Montserrat', sans-serif;
        }
        
        .navbar {
            background-color: white;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }
        
        .navbar-brand {
            color: var(--primary-color);
            font-weight: 700;
            letter-spacing: 0.5px;
        }
        
        .nav-link {
            color: var(--secondary-color);
            font-weight: 500;
            transition: color 0.3s ease;
        }
        
        .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='rgba(42, 107, 42, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        .brand-name {
            font-size: 1.5rem;
            margin-left: 10px;
        }

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

.faq-section h2 {
  color: hsl(119, 50%, 33%);
  font-weight: 700;
  margin-bottom: 40px;
  text-align: center;
  position: relative;
}

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

.faq-card {
  border: none;
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

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

.faq-card .card-header {
  background-color: white;
  border: none;
  padding: 0;
}

.faq-card .btn-link {
  color: hsl(119, 50%, 33%);
  font-weight: 600;
  text-decoration: none;
  width: 100%;
  text-align: left;
  padding: 18px 20px;
  position: relative;
  transition: all 0.3s ease;
}

.faq-card .btn-link:hover {
  color: hsl(119, 50%, 58%);
}

.faq-card .btn-link:focus {
  box-shadow: none;
}

.faq-card .btn-link::after {
  content: "+";
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 24px;
  transition: all 0.3s ease;
}

.faq-card .btn-link[aria-expanded="true"]::after {
  content: "−";
}

.faq-card .card-body {
  padding: 20px 25px;
  line-height: 1.6;
  color: #555;
  background-color: #fcfffe;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.faq-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px;
  color: #555;
  font-size: 18px;
  line-height: 1.6;
}

@media (max-width: 767px) {
  .faq-section {
    padding: 50px 0;
  }
  
  .faq-intro {
    font-size: 16px;
    padding: 0 15px;
  }
}

.about-section {
    padding: 80px 0;
    background-color: #f9fdf9;
    font-family: 'Poppins', sans-serif;
  }
  
  .about-section h2 {
    color: hsl(119, 50%, 33%);
    font-weight: 700;
    font-size: 42px;
    margin-bottom: 30px;
    position: relative;
  }
  
  .about-section h2:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 3px;
    background-color: hsl(119, 50%, 58%);
  }
  
  .about-section p {
    color: #444;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
  }
  
  .about-image {
    border-radius: 10px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    margin-bottom: 30px;
    overflow: hidden;
  }
  
  .about-image img {
    width: 100%;
    height: auto;
    transition: transform 0.5s ease;
  }
  
  .about-image:hover img {
    transform: scale(1.05);
  }
  
  .mission-box {
    background-color: rgba(126, 209, 126, 0.1);
    border-left: 4px solid hsl(119, 50%, 33%);
    padding: 25px;
    margin: 30px 0;
    border-radius: 0 8px 8px 0;
  }
  
  .mission-box h3 {
    color: hsl(119, 50%, 18%);
    margin-bottom: 15px;
    font-size: 24px;
  }
  
  .timeline {
    position: relative;
    padding: 20px 0;
    margin-top: 50px;
  }
  
  .timeline:before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 3px;
    height: 100%;
    background: hsl(119, 50%, 33%);
    transform: translateX(-50%);
  }
  
  .timeline-item {
    position: relative;
    margin-bottom: 50px;
  }
  
  .timeline-content {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    width: 45%;
    position: relative;
  }
  
  .timeline-item:nth-child(odd) .timeline-content {
    margin-left: auto;
  }
  
  .timeline-item:nth-child(odd) .timeline-content:before {
    content: '';
    position: absolute;
    top: 20px;
    left: -15px;
    width: 0;
    height: 0;
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
    border-right: 15px solid white;
  }
  
  .timeline-item:nth-child(even) .timeline-content:before {
    content: '';
    position: absolute;
    top: 20px;
    right: -15px;
    width: 0;
    height: 0;
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
    border-left: 15px solid white;
  }
  
  .timeline-dot {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: hsl(119, 50%, 58%);
    border: 4px solid hsl(119, 50%, 33%);
    z-index: 1;
  }
  
  .timeline-year {
    color: hsl(119, 50%, 33%);
    font-weight: bold;
    font-size: 18px;
    margin-bottom: 10px;
  }
  
  @media (max-width: 768px) {
    .timeline:before {
      left: 30px;
    }
    
    .timeline-dot {
      left: 30px;
    }
    
    .timeline-content {
      width: calc(100% - 60px);
      margin-left: 60px !important;
    }
    
    .timeline-item:nth-child(odd) .timeline-content:before,
    .timeline-item:nth-child(even) .timeline-content:before {
      left: -15px;
      border-right: 15px solid white;
      border-left: 0;
    }
  }
  
  .highlight-text {
    color: hsl(119, 50%, 33%);
    font-weight: 600;
  }
  
  .values-list {
    list-style-type: none;
    padding-left: 0;
  }
  
  .values-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px;
    font-size: 16px;
  }
  
  .values-list li:before {
    content: "✦";
    position: absolute;
    left: 0;
    color: hsl(119, 50%, 58%);
    font-weight: bold;
  }

.newsletter-section {
        background: linear-gradient(135deg, hsl(119, 50%, 33%), hsl(119, 50%, 18%));
        color: white;
        padding: 4rem 2rem;
        border-radius: 10px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        margin: 4rem 0;
    }

    .newsletter-container {
        max-width: 1200px;
        margin: 0 auto;
    }

    .newsletter-title {
        font-size: 2.5rem;
        margin-bottom: 1.5rem;
        font-weight: 700;
        position: relative;
        display: inline-block;
    }

    .newsletter-title:after {
        content: '';
        position: absolute;
        left: 0;
        bottom: -10px;
        width: 80px;
        height: 4px;
        background-color: hsl(119, 50%, 58%);
    }

    .newsletter-description {
        font-size: 1.1rem;
        margin-bottom: 2rem;
        line-height: 1.6;
    }

    .newsletter-form {
        background-color: rgba(255, 255, 255, 0.1);
        padding: 2rem;
        border-radius: 8px;
        backdrop-filter: blur(5px);
    }

    .newsletter-benefits {
        margin-top: 1.5rem;
    }

    .benefit-item {
        margin-bottom: 1rem;
        display: flex;
        align-items: center;
    }

    .benefit-item i {
        color: hsl(119, 50%, 58%);
        margin-right: 10px;
        font-size: 1.2rem;
    }

    .newsletter-input {
        height: 50px;
        border-radius: 4px;
        border: none;
        padding: 0 15px;
        font-size: 1rem;
        background-color: rgba(255, 255, 255, 0.9);
    }

    .newsletter-input:focus {
        box-shadow: 0 0 0 3px hsla(119, 50%, 58%, 0.3);
    }

    .newsletter-button {
        background-color: hsl(119, 50%, 58%);
        color: hsl(119, 50%, 18%);
        border: none;
        height: 50px;
        font-weight: 600;
        letter-spacing: 0.5px;
        transition: all 0.3s ease;
        text-transform: uppercase;
    }

    .newsletter-button:hover {
        background-color: hsl(119, 60%, 62%);
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }

    @media (max-width: 768px) {
        .newsletter-section {
            padding: 3rem 1.5rem;
        }
        
        .newsletter-title {
            font-size: 2rem;
        }
    }

:root {
    --primary-color: hsl(119, 50%, 33%);
    --secondary-color: hsl(119, 50%, 18%);
    --accent-color: hsl(119, 50%, 58%);
}

footer {
    background-color: var(--secondary-color);
    color: white;
    padding: 3rem 0 1rem;
    font-family: 'Montserrat', sans-serif;
}

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

footer p {
    font-size: 0.95rem;
    line-height: 1.6;
}

footer a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

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

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

.contact-info {
    margin-bottom: 1rem;
}

.contact-info i {
    margin-right: 10px;
    color: var(--accent-color);
}

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

/* Cookie Notice Styles */
.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.9);
    color: white;
    padding: 1rem 0;
    z-index: 9999;
    display: none;
    box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.2);
}

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

.cookie-btn {
    padding: 0.5rem 1rem;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-right: 0.5rem;
}

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

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

.cookie-learn {
    background-color: transparent;
    color: white;
    border: 1px solid white;
}

.cookie-learn:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--accent-color);
}

:root {
            --primary-color: hsl(119, 50%, 33%);
            --secondary-color: hsl(119, 50%, 18%);
            --accent-color: hsl(119, 50%, 58%);
        }
        
        body {
            font-family: 'Montserrat', sans-serif;
        }
        
        .navbar {
            background-color: white;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }
        
        .navbar-brand {
            color: var(--primary-color);
            font-weight: 700;
            letter-spacing: 0.5px;
        }
        
        .nav-link {
            color: var(--secondary-color);
            font-weight: 500;
            transition: color 0.3s ease;
        }
        
        .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='rgba(42, 107, 42, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        .brand-name {
            font-size: 1.5rem;
            margin-left: 10px;
        }

.hero-section {
        padding: 120px 0;
        position: relative;
        overflow: hidden;
        background-color: #f9f9f9;
        color: #333;
    }
    
    .hero-section::before {
        content: "";
        position: absolute;
        top: -50px;
        right: -50px;
        width: 300px;
        height: 300px;
        background-color: hsl(119, 50%, 58%, 0.1);
        border-radius: 50%;
        z-index: 0;
    }
    
    .hero-section::after {
        content: "";
        position: absolute;
        bottom: -80px;
        left: 20%;
        width: 200px;
        height: 200px;
        background-color: hsl(119, 50%, 33%, 0.1);
        border-radius: 50%;
        z-index: 0;
    }
    
    .hero-content {
        position: relative;
        z-index: 2;
    }
    
    .hero-title {
        font-size: 3.5rem;
        font-weight: 700;
        color: hsl(119, 50%, 18%);
        margin-bottom: 20px;
        position: relative;
    }
    
    .hero-title::after {
        content: "";
        position: absolute;
        bottom: -10px;
        left: 0;
        width: 80px;
        height: 4px;
        background-color: hsl(119, 50%, 58%);
    }
    
    .hero-subtitle {
        font-size: 1.8rem;
        font-weight: 500;
        color: hsl(119, 50%, 33%);
        margin-bottom: 30px;
    }
    
    .hero-description {
        font-size: 1.1rem;
        line-height: 1.8;
        margin-bottom: 30px;
    }
    
    .hero-benefits {
        margin-bottom: 30px;
        padding-left: 0;
    }
    
    .hero-benefits li {
        list-style: none;
        margin-bottom: 10px;
        display: flex;
        align-items: baseline;
    }
    
    .hero-benefits li i {
        color: hsl(119, 50%, 33%);
        margin-right: 10px;
    }
    
    .hero-image-container {
        position: relative;
        z-index: 2;
    }
    
    .hero-image {
        border-radius: 15px;
        box-shadow: 15px 15px 30px rgba(0, 0, 0, 0.15);
        transform: rotate(2deg);
        max-width: 100%;
        height: auto;
        shape-outside: circle(50%);
    }
    
    .image-frame {
        position: absolute;
        top: -20px;
        left: -20px;
        right: 20px;
        bottom: 20px;
        border: 3px solid hsl(119, 50%, 58%);
        border-radius: 15px;
        z-index: -1;
    }
    
    .btn-primary {
        background-color: hsl(119, 50%, 33%);
        border-color: hsl(119, 50%, 33%);
        padding: 12px 30px;
        font-weight: 600;
        transition: all 0.3s ease;
    }
    
    .btn-primary:hover {
        background-color: hsl(119, 50%, 18%);
        border-color: hsl(119, 50%, 18%);
        transform: translateY(-3px);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    }
    
    .btn-outline-primary {
        color: hsl(119, 50%, 33%);
        border-color: hsl(119, 50%, 33%);
        padding: 12px 30px;
        font-weight: 600;
        transition: all 0.3s ease;
    }
    
    .btn-outline-primary:hover {
        background-color: hsl(119, 50%, 33%);
        color: white;
        transform: translateY(-3px);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    }
    
    .hero-cta {
        display: flex;
        gap: 15px;
        margin-top: 40px;
    }
    
    @media (max-width: 991px) {
        .hero-section {
            padding: 80px 0;
        }
        
        .hero-title {
            font-size: 2.8rem;
        }
        
        .hero-subtitle {
            font-size: 1.5rem;
        }
        
        .hero-image-container {
            margin-top: 50px;
        }
    }
    
    @media (max-width: 767px) {
        .hero-title {
            font-size: 2.2rem;
        }
        
        .hero-subtitle {
            font-size: 1.3rem;
        }
        
        .hero-cta {
            flex-direction: column;
        }
    }

.advantages-section {
        padding: 80px 0;
        background-color: #f9fcf9;
    }
    
    .advantages-title {
        color: hsl(119, 50%, 33%);
        margin-bottom: 50px;
        font-weight: 700;
        position: relative;
    }
    
    .advantages-title:after {
        content: '';
        position: absolute;
        bottom: -15px;
        left: 50%;
        transform: translateX(-50%);
        width: 80px;
        height: 3px;
        background-color: hsl(119, 50%, 58%);
    }
    
    .advantage-card {
        padding: 30px 20px;
        border-radius: 8px;
        transition: all 0.3s ease;
        height: 100%;
        background-color: white;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        border-bottom: 3px solid transparent;
    }
    
    .advantage-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        border-bottom: 3px solid hsl(119, 50%, 58%);
    }
    
    .advantage-icon {
        font-size: 2.5rem;
        color: hsl(119, 50%, 33%);
        margin-bottom: 20px;
        display: inline-block;
        background-color: rgba(76, 166, 76, 0.1);
        width: 80px;
        height: 80px;
        line-height: 80px;
        border-radius: 50%;
    }
    
    .advantage-title {
        font-size: 1.25rem;
        color: hsl(119, 50%, 18%);
        margin-bottom: 15px;
        font-weight: 600;
    }
    
    .advantage-description {
        color: #666;
        font-size: 0.95rem;
        line-height: 1.6;
    }
    
    @media (max-width: 991px) {
        .advantage-col {
            margin-bottom: 30px;
        }
    }

.statistics-section {
    padding: 100px 0;
    background-color: #f9fcf7;
    position: relative;
}

.statistics-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(75, 145, 65, 0.05) 0%, rgba(75, 145, 65, 0.1) 100%);
    z-index: 0;
}

.statistics-section .container {
    position: relative;
    z-index: 1;
}

.statistics-section h2 {
    color: hsl(119, 50%, 18%);
    font-weight: 700;
    margin-bottom: 50px;
    position: relative;
    display: inline-block;
}

.statistics-section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: hsl(119, 50%, 58%);
}

.stat-item {
    text-align: center;
    margin-bottom: 40px;
    padding: 20px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(75, 145, 65, 0.1);
}

.stat-icon {
    background-color: rgba(75, 145, 65, 0.1);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.stat-icon i {
    color: hsl(119, 50%, 33%);
    font-size: 32px;
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    color: hsl(119, 50%, 33%);
    margin-bottom: 10px;
    display: block;
}

.stat-title {
    font-size: 18px;
    color: hsl(119, 50%, 18%);
    margin-bottom: 10px;
    font-weight: 600;
}

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

@media (max-width: 767px) {
    .statistics-section {
        padding: 60px 0;
    }
    
    .stat-number {
        font-size: 36px;
    }
    
    .stat-title {
        font-size: 16px;
    }
}

.services-section {
        padding: 80px 0;
        background-color: #f9fdf9;
    }
    
    .section-title {
        color: hsl(119, 50%, 33%);
        margin-bottom: 50px;
        font-weight: 700;
        position: relative;
    }
    
    .section-title:after {
        content: '';
        position: absolute;
        width: 70px;
        height: 3px;
        background-color: hsl(119, 50%, 58%);
        bottom: -15px;
        left: 50%;
        transform: translateX(-50%);
    }
    
    .nav-tabs {
        border-bottom: 1px solid hsl(119, 50%, 33%);
        margin-bottom: 30px;
        justify-content: center;
    }
    
    .nav-tabs .nav-link {
        color: #555;
        border: none;
        font-weight: 600;
        padding: 12px 20px;
        border-radius: 0;
        transition: all 0.3s ease;
    }
    
    .nav-tabs .nav-link:hover {
        color: hsl(119, 50%, 33%);
    }
    
    .nav-tabs .nav-link.active {
        color: white;
        background-color: hsl(119, 50%, 33%);
        border: none;
    }
    
    .service-card {
        padding: 25px;
        border-radius: 8px;
        background: white;
        box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        transition: all 0.4s ease;
        height: 100%;
        border-bottom: 3px solid transparent;
    }
    
    .service-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        border-bottom: 3px solid hsl(119, 50%, 58%);
    }
    
    .service-icon {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 70px;
        height: 70px;
        border-radius: 50%;
        background-color: rgba(76, 175, 80, 0.1);
        color: hsl(119, 50%, 33%);
        margin-bottom: 20px;
        font-size: 28px;
    }
    
    .service-title {
        color: hsl(119, 50%, 18%);
        font-weight: 700;
        margin-bottom: 15px;
        font-size: 1.25rem;
    }
    
    .service-description {
        color: #666;
        margin-bottom: 20px;
        line-height: 1.6;
    }
    
    .service-price {
        font-weight: 700;
        color: hsl(119, 50%, 33%);
        font-size: 1.2rem;
        margin-top: auto;
    }
    
    .service-conditions {
        font-size: 0.85rem;
        color: #888;
        font-style: italic;
    }
    
    .tab-pane {
        animation: fadeIn 0.5s ease-in-out;
    }
    
    @keyframes fadeIn {
        from { opacity: 0; transform: translateY(20px); }
        to { opacity: 1; transform: translateY(0); }
    }

.about-section {
    padding: 80px 0;
    background-color: #f9fdf9;
    font-family: 'Poppins', sans-serif;
  }
  
  .about-section h2 {
    color: hsl(119, 50%, 33%);
    font-weight: 700;
    font-size: 42px;
    margin-bottom: 30px;
    position: relative;
  }
  
  .about-section h2:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 3px;
    background-color: hsl(119, 50%, 58%);
  }
  
  .about-section p {
    color: #444;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
  }
  
  .about-image {
    border-radius: 10px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    margin-bottom: 30px;
    overflow: hidden;
  }
  
  .about-image img {
    width: 100%;
    height: auto;
    transition: transform 0.5s ease;
  }
  
  .about-image:hover img {
    transform: scale(1.05);
  }
  
  .mission-box {
    background-color: rgba(126, 209, 126, 0.1);
    border-left: 4px solid hsl(119, 50%, 33%);
    padding: 25px;
    margin: 30px 0;
    border-radius: 0 8px 8px 0;
  }
  
  .mission-box h3 {
    color: hsl(119, 50%, 18%);
    margin-bottom: 15px;
    font-size: 24px;
  }
  
  .timeline {
    position: relative;
    padding: 20px 0;
    margin-top: 50px;
  }
  
  .timeline:before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 3px;
    height: 100%;
    background: hsl(119, 50%, 33%);
    transform: translateX(-50%);
  }
  
  .timeline-item {
    position: relative;
    margin-bottom: 50px;
  }
  
  .timeline-content {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    width: 45%;
    position: relative;
  }
  
  .timeline-item:nth-child(odd) .timeline-content {
    margin-left: auto;
  }
  
  .timeline-item:nth-child(odd) .timeline-content:before {
    content: '';
    position: absolute;
    top: 20px;
    left: -15px;
    width: 0;
    height: 0;
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
    border-right: 15px solid white;
  }
  
  .timeline-item:nth-child(even) .timeline-content:before {
    content: '';
    position: absolute;
    top: 20px;
    right: -15px;
    width: 0;
    height: 0;
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
    border-left: 15px solid white;
  }
  
  .timeline-dot {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: hsl(119, 50%, 58%);
    border: 4px solid hsl(119, 50%, 33%);
    z-index: 1;
  }
  
  .timeline-year {
    color: hsl(119, 50%, 33%);
    font-weight: bold;
    font-size: 18px;
    margin-bottom: 10px;
  }
  
  @media (max-width: 768px) {
    .timeline:before {
      left: 30px;
    }
    
    .timeline-dot {
      left: 30px;
    }
    
    .timeline-content {
      width: calc(100% - 60px);
      margin-left: 60px !important;
    }
    
    .timeline-item:nth-child(odd) .timeline-content:before,
    .timeline-item:nth-child(even) .timeline-content:before {
      left: -15px;
      border-right: 15px solid white;
      border-left: 0;
    }
  }
  
  .highlight-text {
    color: hsl(119, 50%, 33%);
    font-weight: 600;
  }
  
  .values-list {
    list-style-type: none;
    padding-left: 0;
  }
  
  .values-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px;
    font-size: 16px;
  }
  
  .values-list li:before {
    content: "✦";
    position: absolute;
    left: 0;
    color: hsl(119, 50%, 58%);
    font-weight: bold;
  }

.newsletter-section {
        background: linear-gradient(135deg, hsl(119, 50%, 33%), hsl(119, 50%, 18%));
        color: white;
        padding: 4rem 2rem;
        border-radius: 10px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        margin: 4rem 0;
    }

    .newsletter-container {
        max-width: 1200px;
        margin: 0 auto;
    }

    .newsletter-title {
        font-size: 2.5rem;
        margin-bottom: 1.5rem;
        font-weight: 700;
        position: relative;
        display: inline-block;
    }

    .newsletter-title:after {
        content: '';
        position: absolute;
        left: 0;
        bottom: -10px;
        width: 80px;
        height: 4px;
        background-color: hsl(119, 50%, 58%);
    }

    .newsletter-description {
        font-size: 1.1rem;
        margin-bottom: 2rem;
        line-height: 1.6;
    }

    .newsletter-form {
        background-color: rgba(255, 255, 255, 0.1);
        padding: 2rem;
        border-radius: 8px;
        backdrop-filter: blur(5px);
    }

    .newsletter-benefits {
        margin-top: 1.5rem;
    }

    .benefit-item {
        margin-bottom: 1rem;
        display: flex;
        align-items: center;
    }

    .benefit-item i {
        color: hsl(119, 50%, 58%);
        margin-right: 10px;
        font-size: 1.2rem;
    }

    .newsletter-input {
        height: 50px;
        border-radius: 4px;
        border: none;
        padding: 0 15px;
        font-size: 1rem;
        background-color: rgba(255, 255, 255, 0.9);
    }

    .newsletter-input:focus {
        box-shadow: 0 0 0 3px hsla(119, 50%, 58%, 0.3);
    }

    .newsletter-button {
        background-color: hsl(119, 50%, 58%);
        color: hsl(119, 50%, 18%);
        border: none;
        height: 50px;
        font-weight: 600;
        letter-spacing: 0.5px;
        transition: all 0.3s ease;
        text-transform: uppercase;
    }

    .newsletter-button:hover {
        background-color: hsl(119, 60%, 62%);
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }

    @media (max-width: 768px) {
        .newsletter-section {
            padding: 3rem 1.5rem;
        }
        
        .newsletter-title {
            font-size: 2rem;
        }
    }

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

.faq-section h2 {
  color: hsl(119, 50%, 33%);
  font-weight: 700;
  margin-bottom: 40px;
  text-align: center;
  position: relative;
}

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

.faq-card {
  border: none;
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

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

.faq-card .card-header {
  background-color: white;
  border: none;
  padding: 0;
}

.faq-card .btn-link {
  color: hsl(119, 50%, 33%);
  font-weight: 600;
  text-decoration: none;
  width: 100%;
  text-align: left;
  padding: 18px 20px;
  position: relative;
  transition: all 0.3s ease;
}

.faq-card .btn-link:hover {
  color: hsl(119, 50%, 58%);
}

.faq-card .btn-link:focus {
  box-shadow: none;
}

.faq-card .btn-link::after {
  content: "+";
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 24px;
  transition: all 0.3s ease;
}

.faq-card .btn-link[aria-expanded="true"]::after {
  content: "−";
}

.faq-card .card-body {
  padding: 20px 25px;
  line-height: 1.6;
  color: #555;
  background-color: #fcfffe;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.faq-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px;
  color: #555;
  font-size: 18px;
  line-height: 1.6;
}

@media (max-width: 767px) {
  .faq-section {
    padding: 50px 0;
  }
  
  .faq-intro {
    font-size: 16px;
    padding: 0 15px;
  }
}

.contact-section {
        padding: 5rem 0;
        background-color: #f9f9f9;
    }
    
    .contact-section .title {
        color: hsl(119, 50%, 33%);
        font-weight: 700;
        margin-bottom: 2rem;
        position: relative;
    }
    
    .contact-section .title::after {
        content: "";
        position: absolute;
        bottom: -10px;
        left: 0;
        width: 60px;
        height: 3px;
        background-color: hsl(119, 50%, 58%);
    }
    
    .contact-form label {
        font-weight: 500;
        color: hsl(119, 50%, 18%);
        margin-bottom: 0.5rem;
    }
    
    .contact-form .form-control {
        border-radius: 0;
        border: 1px solid #ddd;
        padding: 0.8rem;
        margin-bottom: 1.5rem;
    }
    
    .contact-form .form-control:focus {
        box-shadow: none;
        border-color: hsl(119, 50%, 33%);
    }
    
    .btn-submit {
        background-color: hsl(119, 50%, 33%);
        color: white;
        padding: 0.8rem 2rem;
        border: none;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 1px;
        transition: all 0.3s ease;
    }
    
    .btn-submit:hover {
        background-color: hsl(119, 50%, 18%);
        transform: translateY(-3px);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }
    
    .contact-info {
        background-color: hsl(119, 50%, 33%);
        color: white;
        padding: 2.5rem;
        height: 100%;
    }
    
    .contact-info h3 {
        color: white;
        font-weight: 700;
        margin-bottom: 1.5rem;
        position: relative;
    }
    
    .contact-info h3::after {
        content: "";
        position: absolute;
        bottom: -10px;
        left: 0;
        width: 40px;
        height: 3px;
        background-color: hsl(119, 50%, 58%);
    }
    
    .contact-info p {
        margin-bottom: 1.2rem;
        line-height: 1.8;
    }
    
    .contact-info .hours {
        margin-top: 2rem;
    }
    
    .contact-info .hours h4 {
        color: white;
        font-weight: 600;
        font-size: 1.1rem;
        margin-bottom: 1rem;
    }
    
    .contact-info .hours p {
        display: flex;
        justify-content: space-between;
        margin-bottom: 0.5rem;
    }
    
    .map-container {
        background-color: #e9e9e9;
        height: 200px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-top: 2rem;
        color: #555;
        font-style: italic;
    }
    
    @media (max-width: 768px) {
        .contact-info {
            margin-top: 2rem;
        }
    }

.testimonials-section {
        padding: 5rem 0;
        background-color: #f9fdf9;
    }
    .testimonials-heading {
        text-align: center;
        margin-bottom: 3rem;
        color: hsl(119, 50%, 33%);
    }
    .testimonials-subheading {
        text-align: center;
        margin-bottom: 3rem;
        color: hsl(119, 50%, 18%);
        font-weight: 300;
        max-width: 700px;
        margin-left: auto;
        margin-right: auto;
    }
    .testimonial-card {
        background-color: white;
        border-radius: 10px;
        padding: 2rem;
        margin-bottom: 2rem;
        box-shadow: 0 4px 12px rgba(0,0,0,0.05);
        height: calc(100% - 2rem);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        border-top: 4px solid hsl(119, 50%, 58%);
    }
    .testimonial-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    }
    .testimonial-text {
        font-style: italic;
        color: #555;
        margin-bottom: 1.5rem;
        line-height: 1.6;
    }
    .client-name {
        font-weight: 600;
        color: hsl(119, 50%, 33%);
        margin-bottom: 0.2rem;
    }
    .client-location {
        color: #777;
        font-size: 0.9rem;
    }
    .quote-icon {
        color: hsl(119, 50%, 58%);
        font-size: 2rem;
        opacity: 0.4;
        margin-bottom: 1rem;
    }

:root {
    --primary-color: hsl(119, 50%, 33%);
    --secondary-color: hsl(119, 50%, 18%);
    --accent-color: hsl(119, 50%, 58%);
}

footer {
    background-color: var(--secondary-color);
    color: white;
    padding: 3rem 0 1rem;
    font-family: 'Montserrat', sans-serif;
}

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

footer p {
    font-size: 0.95rem;
    line-height: 1.6;
}

footer a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

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

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

.contact-info {
    margin-bottom: 1rem;
}

.contact-info i {
    margin-right: 10px;
    color: var(--accent-color);
}

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

/* Cookie Notice Styles */
.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.9);
    color: white;
    padding: 1rem 0;
    z-index: 9999;
    display: none;
    box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.2);
}

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

.cookie-btn {
    padding: 0.5rem 1rem;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-right: 0.5rem;
}

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

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

.cookie-learn {
    background-color: transparent;
    color: white;
    border: 1px solid white;
}

.cookie-learn:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--accent-color);
}