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

.about-section {
        padding: 5rem 0;
        background-color: #f9fbf7;
        font-family: 'Montserrat', sans-serif;
    }
    
    .about-section h2 {
        color: hsl(95, 62%, 27%);
        font-weight: 700;
        margin-bottom: 2rem;
        position: relative;
    }
    
    .about-section h2:after {
        content: '';
        position: absolute;
        bottom: -10px;
        left: 0;
        width: 80px;
        height: 3px;
        background-color: hsl(95, 62%, 42%);
    }
    
    .about-content {
        margin-bottom: 4rem;
    }
    
    .about-text {
        color: #333;
        line-height: 1.8;
    }
    
    .about-text p {
        margin-bottom: 1.5rem;
    }
    
    .about-img {
        border-radius: 10px;
        box-shadow: 0 10px 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;
        object-fit: cover;
        transition: transform 0.5s ease;
    }
    
    .about-img:hover img {
        transform: scale(1.05);
    }
    
    .values-box {
        background-color: white;
        padding: 2rem;
        border-radius: 10px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        margin-top: 2rem;
        border-left: 4px solid hsl(95, 62%, 42%);
    }
    
    .values-box h3 {
        color: hsl(95, 62%, 27%);
        margin-bottom: 1.5rem;
    }
    
    .mission-statement {
        font-style: italic;
        font-weight: 500;
        color: hsl(95, 62%, 27%);
        padding: 1.5rem;
        background-color: hsl(95, 62%, 67%, 0.2);
        border-radius: 10px;
        margin: 2rem 0;
    }
    
    @media (max-width: 768px) {
        .row {
            flex-direction: column-reverse;
        }
        .about-img {
            margin-bottom: 2rem;
        }
    }

.advantages-section {
        padding: 5rem 0;
        background-color: #f9fcf5;
    }
    
    .advantages-section h2 {
        color: hsl(95, 62%, 27%);
        margin-bottom: 3rem;
        font-weight: 700;
        position: relative;
    }
    
    .advantages-section h2:after {
        content: '';
        position: absolute;
        bottom: -15px;
        left: 50%;
        transform: translateX(-50%);
        width: 80px;
        height: 4px;
        background-color: hsl(95, 62%, 42%);
        border-radius: 2px;
    }
    
    .advantage-card {
        background-color: white;
        border-radius: 12px;
        padding: 2rem;
        margin-bottom: 2.5rem;
        box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        transition: all 0.3s ease;
        height: 100%;
        border-left: 5px solid transparent;
    }
    
    .advantage-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        border-left: 5px solid hsl(95, 62%, 42%);
    }
    
    .advantage-icon {
        background-color: hsl(95, 62%, 67%);
        color: hsl(95, 62%, 27%);
        width: 70px;
        height: 70px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 2rem;
        margin-bottom: 1.5rem;
        transition: all 0.3s ease;
    }
    
    .advantage-card:hover .advantage-icon {
        background-color: hsl(95, 62%, 42%);
        color: white;
    }
    
    .advantage-card h3 {
        color: hsl(95, 62%, 27%);
        font-size: 1.5rem;
        margin-bottom: 1rem;
        font-weight: 600;
    }
    
    .advantage-card p {
        color: #555;
        line-height: 1.7;
    }
    
    @media (max-width: 768px) {
        .advantage-card {
            text-align: center;
        }
        
        .advantage-icon {
            margin: 0 auto 1.5rem auto;
        }
    }

.statistics-section {
    background-color: hsl(95, 62%, 97%);
    padding: 5rem 0;
  }
  
  .statistics-section h2 {
    color: hsl(95, 62%, 27%);
    font-weight: 700;
    margin-bottom: 3rem;
    text-align: center;
  }
  
  .stats-card {
    text-align: center;
    margin-bottom: 2.5rem;
    transition: transform 0.3s ease;
  }
  
  .stats-card:hover {
    transform: translateY(-10px);
  }
  
  .stats-circle {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 8px solid hsl(95, 62%, 42%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    position: relative;
    background-color: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  }
  
  .stats-circle i {
    font-size: 2.5rem;
    color: hsl(95, 62%, 27%);
    position: absolute;
    top: -20px;
    background-color: white;
    border-radius: 50%;
    padding: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  }
  
  .stats-number {
    font-size: 2rem;
    font-weight: 700;
    color: hsl(95, 62%, 42%);
    line-height: 1;
  }
  
  .stats-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: hsl(95, 62%, 27%);
    margin-top: 0.5rem;
  }
  
  .stats-description {
    font-size: 0.9rem;
    color: #666;
    margin-top: 0.5rem;
  }
  
  @media (max-width: 768px) {
    .stats-circle {
      width: 100px;
      height: 100px;
    }
    
    .stats-number {
      font-size: 1.5rem;
    }
  }

:root {
  --primary-color: hsl(95, 62%, 42%);
  --secondary-color: hsl(95, 62%, 27%);
  --accent-color: hsl(95, 62%, 67%);
}

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

footer h5 {
  color: var(--accent-color);
  font-weight: 600;
  margin-bottom: 1.2rem;
  position: relative;
}

footer h5::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 40px;
  height: 2px;
  background-color: var(--accent-color);
}

footer p {
  line-height: 1.7;
}

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

footer ul li {
  margin-bottom: 0.7rem;
}

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

footer a:hover {
  color: var(--accent-color);
  text-decoration: none;
  padding-left: 5px;
}

.copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.5rem;
  margin-top: 2rem;
}

.cookie-notice {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: rgba(40, 40, 40, 0.95);
  color: #fff;
  padding: 1rem 0;
  z-index: 9999;
  box-shadow: 0 -3px 10px rgba(0, 0, 0, 0.1);
  transform: translateY(100%);
  transition: transform 0.4s ease-in-out;
}

.cookie-notice.show {
  transform: translateY(0);
}

.btn-cookie {
  background-color: var(--primary-color);
  color: white;
  border: none;
  padding: 0.5rem 1.5rem;
  border-radius: 4px;
  font-weight: 500;
  transition: all 0.3s ease;
}

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

.btn-learn-more {
  background-color: transparent;
  color: var(--accent-color);
  border: 1px solid var(--accent-color);
  padding: 0.5rem 1.5rem;
  border-radius: 4px;
  font-weight: 500;
  transition: all 0.3s ease;
}

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

@media (max-width: 768px) {
  footer {
    text-align: center;
  }
  
  footer h5::after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .footer-section {
    margin-bottom: 2rem;
  }
}

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

.privacy-container {
        max-width: 1000px;
        margin: 0 auto;
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        color: #333;
        line-height: 1.6;
    }
    .privacy-header {
        text-align: center;
        padding: 20px 0;
        border-bottom: 2px solid #3a86ff;
        margin-bottom: 30px;
    }
    .privacy-title {
        font-size: 32px;
        color: #2b2d42;
        margin-bottom: 10px;
    }
    .privacy-date {
        font-style: italic;
        color: #666;
        margin-bottom: 20px;
    }
    .privacy-section {
        margin-bottom: 30px;
    }
    .privacy-section h2 {
        color: #3a86ff;
        font-size: 24px;
        padding-bottom: 8px;
        border-bottom: 1px solid #eee;
    }
    .privacy-section h3 {
        color: #2b2d42;
        font-size: 20px;
        margin: 20px 0 10px;
    }
    .privacy-list {
        padding-left: 20px;
    }
    .privacy-list li {
        margin-bottom: 10px;
    }
    .privacy-emphasis {
        font-weight: bold;
        color: #3a86ff;
    }
    .privacy-footer {
        text-align: center;
        margin-top: 40px;
        padding-top: 20px;
        border-top: 2px solid #3a86ff;
        font-size: 14px;
    }

:root {
  --primary-color: hsl(95, 62%, 42%);
  --secondary-color: hsl(95, 62%, 27%);
  --accent-color: hsl(95, 62%, 67%);
}

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

footer h5 {
  color: var(--accent-color);
  font-weight: 600;
  margin-bottom: 1.2rem;
  position: relative;
}

footer h5::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 40px;
  height: 2px;
  background-color: var(--accent-color);
}

footer p {
  line-height: 1.7;
}

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

footer ul li {
  margin-bottom: 0.7rem;
}

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

footer a:hover {
  color: var(--accent-color);
  text-decoration: none;
  padding-left: 5px;
}

.copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.5rem;
  margin-top: 2rem;
}

.cookie-notice {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: rgba(40, 40, 40, 0.95);
  color: #fff;
  padding: 1rem 0;
  z-index: 9999;
  box-shadow: 0 -3px 10px rgba(0, 0, 0, 0.1);
  transform: translateY(100%);
  transition: transform 0.4s ease-in-out;
}

.cookie-notice.show {
  transform: translateY(0);
}

.btn-cookie {
  background-color: var(--primary-color);
  color: white;
  border: none;
  padding: 0.5rem 1.5rem;
  border-radius: 4px;
  font-weight: 500;
  transition: all 0.3s ease;
}

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

.btn-learn-more {
  background-color: transparent;
  color: var(--accent-color);
  border: 1px solid var(--accent-color);
  padding: 0.5rem 1.5rem;
  border-radius: 4px;
  font-weight: 500;
  transition: all 0.3s ease;
}

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

@media (max-width: 768px) {
  footer {
    text-align: center;
  }
  
  footer h5::after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .footer-section {
    margin-bottom: 2rem;
  }
}

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

.cookies-policy {
        max-width: 1000px;
        margin: 0 auto;
        font-family: 'Arial', sans-serif;
        color: #333;
        line-height: 1.6;
    }
    
    .cookies-policy h1 {
        color: #0066cc;
        font-size: 2.2em;
        text-align: center;
        margin-bottom: 30px;
        border-bottom: 2px solid #eaeaea;
        padding-bottom: 15px;
    }
    
    .cookies-policy h2 {
        color: #0066cc;
        font-size: 1.5em;
        margin-top: 30px;
        border-left: 4px solid #0066cc;
        padding-left: 15px;
    }
    
    .cookies-policy p {
        margin-bottom: 15px;
        text-align: justify;
    }
    
    .cookies-policy ul {
        margin-left: 20px;
        margin-bottom: 20px;
    }
    
    .cookies-policy li {
        margin-bottom: 8px;
    }
    
    .cookies-policy .highlight {
        background-color: #f7f9fc;
        padding: 15px;
        border-radius: 5px;
        border-left: 3px solid #0066cc;
        margin: 20px 0;
    }
    
    .cookies-policy .last-updated {
        font-style: italic;
        color: #666;
        text-align: right;
        margin-top: 30px;
        font-size: 0.9em;
    }

:root {
  --primary-color: hsl(95, 62%, 42%);
  --secondary-color: hsl(95, 62%, 27%);
  --accent-color: hsl(95, 62%, 67%);
}

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

footer h5 {
  color: var(--accent-color);
  font-weight: 600;
  margin-bottom: 1.2rem;
  position: relative;
}

footer h5::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 40px;
  height: 2px;
  background-color: var(--accent-color);
}

footer p {
  line-height: 1.7;
}

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

footer ul li {
  margin-bottom: 0.7rem;
}

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

footer a:hover {
  color: var(--accent-color);
  text-decoration: none;
  padding-left: 5px;
}

.copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.5rem;
  margin-top: 2rem;
}

.cookie-notice {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: rgba(40, 40, 40, 0.95);
  color: #fff;
  padding: 1rem 0;
  z-index: 9999;
  box-shadow: 0 -3px 10px rgba(0, 0, 0, 0.1);
  transform: translateY(100%);
  transition: transform 0.4s ease-in-out;
}

.cookie-notice.show {
  transform: translateY(0);
}

.btn-cookie {
  background-color: var(--primary-color);
  color: white;
  border: none;
  padding: 0.5rem 1.5rem;
  border-radius: 4px;
  font-weight: 500;
  transition: all 0.3s ease;
}

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

.btn-learn-more {
  background-color: transparent;
  color: var(--accent-color);
  border: 1px solid var(--accent-color);
  padding: 0.5rem 1.5rem;
  border-radius: 4px;
  font-weight: 500;
  transition: all 0.3s ease;
}

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

@media (max-width: 768px) {
  footer {
    text-align: center;
  }
  
  footer h5::after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .footer-section {
    margin-bottom: 2rem;
  }
}

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

.contact-section {
    background-color: #f9fcf6;
    padding: 80px 0;
    color: hsl(95, 62%, 27%);
  }
  
  .contact-section h2 {
    color: hsl(95, 62%, 27%);
    font-weight: 700;
    margin-bottom: 40px;
    text-align: center;
    position: relative;
  }
  
  .contact-section h2:after {
    content: "";
    display: block;
    width: 80px;
    height: 3px;
    background-color: hsl(95, 62%, 42%);
    margin: 15px auto;
  }
  
  .contact-form {
    background-color: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  }
  
  .form-control {
    border: 2px solid #e8f4d9;
    padding: 12px 15px;
    margin-bottom: 20px;
    border-radius: 8px;
    transition: all 0.3s ease;
  }
  
  .form-control:focus {
    border-color: hsl(95, 62%, 42%);
    box-shadow: 0 0 0 0.25rem rgba(121, 182, 55, 0.25);
  }
  
  .form-label {
    font-weight: 600;
    color: hsl(95, 62%, 27%);
    margin-bottom: 8px;
  }
  
  .submit-btn {
    background-color: hsl(95, 62%, 42%);
    border: none;
    color: white;
    padding: 12px 30px;
    border-radius: 8px;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    width: 100%;
    margin-top: 10px;
  }
  
  .submit-btn:hover {
    background-color: hsl(95, 62%, 27%);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  }
  
  .contact-info {
    padding: 20px;
  }
  
  .contact-info h3 {
    color: hsl(95, 62%, 42%);
    margin-bottom: 20px;
    font-weight: 600;
  }
  
  .info-card {
    background-color: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    margin-bottom: 25px;
    border-left: 4px solid hsl(95, 62%, 67%);
  }
  
  .info-card h4 {
    color: hsl(95, 62%, 27%);
    font-size: 18px;
    margin-bottom: 15px;
  }
  
  .business-hours {
    padding-left: 0;
    list-style: none;
  }
  
  .business-hours li {
    padding: 8px 0;
    border-bottom: 1px dashed #e8f4d9;
    display: flex;
    justify-content: space-between;
  }
  
  .business-hours li:last-child {
    border-bottom: none;
  }
  
  @media (max-width: 767px) {
    .contact-info {
      margin-top: 40px;
    }
  }

.about-section {
        padding: 5rem 0;
        background-color: #f9fbf7;
        font-family: 'Montserrat', sans-serif;
    }
    
    .about-section h2 {
        color: hsl(95, 62%, 27%);
        font-weight: 700;
        margin-bottom: 2rem;
        position: relative;
    }
    
    .about-section h2:after {
        content: '';
        position: absolute;
        bottom: -10px;
        left: 0;
        width: 80px;
        height: 3px;
        background-color: hsl(95, 62%, 42%);
    }
    
    .about-content {
        margin-bottom: 4rem;
    }
    
    .about-text {
        color: #333;
        line-height: 1.8;
    }
    
    .about-text p {
        margin-bottom: 1.5rem;
    }
    
    .about-img {
        border-radius: 10px;
        box-shadow: 0 10px 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;
        object-fit: cover;
        transition: transform 0.5s ease;
    }
    
    .about-img:hover img {
        transform: scale(1.05);
    }
    
    .values-box {
        background-color: white;
        padding: 2rem;
        border-radius: 10px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        margin-top: 2rem;
        border-left: 4px solid hsl(95, 62%, 42%);
    }
    
    .values-box h3 {
        color: hsl(95, 62%, 27%);
        margin-bottom: 1.5rem;
    }
    
    .mission-statement {
        font-style: italic;
        font-weight: 500;
        color: hsl(95, 62%, 27%);
        padding: 1.5rem;
        background-color: hsl(95, 62%, 67%, 0.2);
        border-radius: 10px;
        margin: 2rem 0;
    }
    
    @media (max-width: 768px) {
        .row {
            flex-direction: column-reverse;
        }
        .about-img {
            margin-bottom: 2rem;
        }
    }

:root {
  --primary-color: hsl(95, 62%, 42%);
  --secondary-color: hsl(95, 62%, 27%);
  --accent-color: hsl(95, 62%, 67%);
}

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

footer h5 {
  color: var(--accent-color);
  font-weight: 600;
  margin-bottom: 1.2rem;
  position: relative;
}

footer h5::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 40px;
  height: 2px;
  background-color: var(--accent-color);
}

footer p {
  line-height: 1.7;
}

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

footer ul li {
  margin-bottom: 0.7rem;
}

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

footer a:hover {
  color: var(--accent-color);
  text-decoration: none;
  padding-left: 5px;
}

.copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.5rem;
  margin-top: 2rem;
}

.cookie-notice {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: rgba(40, 40, 40, 0.95);
  color: #fff;
  padding: 1rem 0;
  z-index: 9999;
  box-shadow: 0 -3px 10px rgba(0, 0, 0, 0.1);
  transform: translateY(100%);
  transition: transform 0.4s ease-in-out;
}

.cookie-notice.show {
  transform: translateY(0);
}

.btn-cookie {
  background-color: var(--primary-color);
  color: white;
  border: none;
  padding: 0.5rem 1.5rem;
  border-radius: 4px;
  font-weight: 500;
  transition: all 0.3s ease;
}

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

.btn-learn-more {
  background-color: transparent;
  color: var(--accent-color);
  border: 1px solid var(--accent-color);
  padding: 0.5rem 1.5rem;
  border-radius: 4px;
  font-weight: 500;
  transition: all 0.3s ease;
}

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

@media (max-width: 768px) {
  footer {
    text-align: center;
  }
  
  footer h5::after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .footer-section {
    margin-bottom: 2rem;
  }
}

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

.services-section {
        padding: 80px 0;
        background-color: #f9fcf5;
    }
    
    .services-section h2 {
        color: hsl(95, 62%, 27%);
        margin-bottom: 40px;
        font-weight: 700;
        position: relative;
    }
    
    .services-section h2:after {
        content: '';
        position: absolute;
        bottom: -15px;
        left: 50%;
        transform: translateX(-50%);
        width: 80px;
        height: 4px;
        background-color: hsl(95, 62%, 42%);
        border-radius: 2px;
    }
    
    .service-card {
        background-color: white;
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
        transition: all 0.3s ease;
        height: 100%;
        margin-bottom: 30px;
        border: 1px solid rgba(0, 0, 0, 0.05);
        position: relative;
    }
    
    .service-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        border-color: hsl(95, 62%, 67%);
    }
    
    .service-card .card-body {
        padding: 25px;
        text-align: center;
    }
    
    .service-icon {
        width: 70px;
        height: 70px;
        margin: 0 auto 20px;
        display: flex;
        align-items: center;
        justify-content: center;
        background-color: hsl(95, 62%, 67%, 0.2);
        border-radius: 50%;
        color: hsl(95, 62%, 42%);
        font-size: 30px;
    }
    
    .service-title {
        font-size: 20px;
        font-weight: 600;
        color: hsl(95, 62%, 27%);
        margin-bottom: 15px;
    }
    
    .service-description {
        color: #666;
        font-size: 15px;
        line-height: 1.6;
        margin-bottom: 20px;
    }
    
    .service-price {
        font-weight: 700;
        color: hsl(95, 62%, 42%);
        font-size: 22px;
        margin-top: auto;
        padding-top: 15px;
        border-top: 1px dashed #e0e0e0;
    }
    
    .service-price span {
        font-size: 14px;
        font-weight: 400;
        color: #888;
    }
    
    .service-tag {
        position: absolute;
        top: 15px;
        right: 15px;
        background-color: hsl(95, 62%, 42%);
        color: white;
        padding: 5px 10px;
        border-radius: 20px;
        font-size: 12px;
        font-weight: 500;
    }

.newsletter-section {
    background: linear-gradient(to right, hsl(95, 62%, 42%), hsl(95, 62%, 27%));
    padding: 5rem 0;
    color: white;
    border-radius: 10px;
    margin: 3rem auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    position: relative;
}

.newsletter-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    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='rgba(255,255,255,.05)' fill-rule='evenodd'/%3E%3C/svg%3E");
    opacity: 0.2;
}

.newsletter-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
}

.newsletter-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.6;
}

.newsletter-form {
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-input {
    border: none;
    border-radius: 50px;
    padding: 15px 25px;
    font-size: 1rem;
    width: 100%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.newsletter-input:focus {
    outline: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.newsletter-button {
    background-color: hsl(95, 62%, 67%);
    color: hsl(95, 62%, 27%);
    border: none;
    border-radius: 50px;
    padding: 15px 30px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    width: 100%;
    margin-top: 1rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.newsletter-button:hover {
    background-color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

.benefits-list {
    list-style-type: none;
    padding: 0;
    margin-top: 2rem;
}

.benefits-item {
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
}

.benefits-item:before {
    content: "✓";
    display: inline-block;
    margin-right: 10px;
    color: hsl(95, 62%, 67%);
    font-weight: bold;
}

.benefits-title {
    font-size: 1.4rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.benefits-icon {
    background-color: hsla(95, 62%, 67%, 0.2);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.privacy-note {
    font-size: 0.8rem;
    opacity: 0.7;
    margin-top: 1rem;
}

@media (max-width: 768px) {
    .newsletter-title {
        font-size: 2rem;
    }
    
    .newsletter-subtitle {
        font-size: 1rem;
    }
    
    .benefits-title {
        font-size: 1.2rem;
    }
}

.testimonials-section {
    padding: 80px 0;
    background-color: #f9fcf6;
}

.testimonials-section h2 {
    color: hsl(95, 62%, 27%);
    font-weight: 700;
    margin-bottom: 50px;
    text-align: center;
    position: relative;
}

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

.testimonial-card {
    background-color: white;
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 4px solid hsl(95, 62%, 42%);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 20px;
    color: #555;
    line-height: 1.6;
}

.testimonial-author {
    font-weight: 700;
    color: hsl(95, 62%, 27%);
    margin-bottom: 5px;
}

.testimonial-location {
    color: hsl(95, 62%, 42%);
    font-size: 0.9rem;
}

.testimonial-stars {
    color: hsl(95, 62%, 67%);
    margin-bottom: 15px;
}

:root {
  --primary-color: hsl(95, 62%, 42%);
  --secondary-color: hsl(95, 62%, 27%);
  --accent-color: hsl(95, 62%, 67%);
}

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

footer h5 {
  color: var(--accent-color);
  font-weight: 600;
  margin-bottom: 1.2rem;
  position: relative;
}

footer h5::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 40px;
  height: 2px;
  background-color: var(--accent-color);
}

footer p {
  line-height: 1.7;
}

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

footer ul li {
  margin-bottom: 0.7rem;
}

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

footer a:hover {
  color: var(--accent-color);
  text-decoration: none;
  padding-left: 5px;
}

.copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.5rem;
  margin-top: 2rem;
}

.cookie-notice {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: rgba(40, 40, 40, 0.95);
  color: #fff;
  padding: 1rem 0;
  z-index: 9999;
  box-shadow: 0 -3px 10px rgba(0, 0, 0, 0.1);
  transform: translateY(100%);
  transition: transform 0.4s ease-in-out;
}

.cookie-notice.show {
  transform: translateY(0);
}

.btn-cookie {
  background-color: var(--primary-color);
  color: white;
  border: none;
  padding: 0.5rem 1.5rem;
  border-radius: 4px;
  font-weight: 500;
  transition: all 0.3s ease;
}

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

.btn-learn-more {
  background-color: transparent;
  color: var(--accent-color);
  border: 1px solid var(--accent-color);
  padding: 0.5rem 1.5rem;
  border-radius: 4px;
  font-weight: 500;
  transition: all 0.3s ease;
}

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

@media (max-width: 768px) {
  footer {
    text-align: center;
  }
  
  footer h5::after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .footer-section {
    margin-bottom: 2rem;
  }
}

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

.terms-container {
        font-family: 'Arial', sans-serif;
        max-width: 1000px;
        margin: 0 auto;
        padding: 20px;
        color: #333;
        line-height: 1.6;
    }
    
    .terms-container h1 {
        color: #1a5276;
        text-align: center;
        font-size: 28px;
        border-bottom: 2px solid #3498db;
        padding-bottom: 10px;
        margin-bottom: 30px;
    }
    
    .terms-container h2 {
        color: #2874a6;
        font-size: 22px;
        margin-top: 25px;
        padding-bottom: 5px;
        border-bottom: 1px solid #eaeaea;
    }
    
    .terms-container p {
        margin-bottom: 15px;
        text-align: justify;
    }
    
    .terms-container ul {
        margin-left: 20px;
        margin-bottom: 20px;
    }
    
    .terms-container li {
        margin-bottom: 8px;
    }
    
    .terms-container .highlight {
        background-color: #f8f9fa;
        padding: 15px;
        border-left: 4px solid #3498db;
        margin-bottom: 20px;
    }
    
    .terms-container .date {
        text-align: right;
        font-style: italic;
        margin-top: 30px;
        color: #7f8c8d;
    }

:root {
  --primary-color: hsl(95, 62%, 42%);
  --secondary-color: hsl(95, 62%, 27%);
  --accent-color: hsl(95, 62%, 67%);
}

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

footer h5 {
  color: var(--accent-color);
  font-weight: 600;
  margin-bottom: 1.2rem;
  position: relative;
}

footer h5::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 40px;
  height: 2px;
  background-color: var(--accent-color);
}

footer p {
  line-height: 1.7;
}

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

footer ul li {
  margin-bottom: 0.7rem;
}

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

footer a:hover {
  color: var(--accent-color);
  text-decoration: none;
  padding-left: 5px;
}

.copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.5rem;
  margin-top: 2rem;
}

.cookie-notice {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: rgba(40, 40, 40, 0.95);
  color: #fff;
  padding: 1rem 0;
  z-index: 9999;
  box-shadow: 0 -3px 10px rgba(0, 0, 0, 0.1);
  transform: translateY(100%);
  transition: transform 0.4s ease-in-out;
}

.cookie-notice.show {
  transform: translateY(0);
}

.btn-cookie {
  background-color: var(--primary-color);
  color: white;
  border: none;
  padding: 0.5rem 1.5rem;
  border-radius: 4px;
  font-weight: 500;
  transition: all 0.3s ease;
}

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

.btn-learn-more {
  background-color: transparent;
  color: var(--accent-color);
  border: 1px solid var(--accent-color);
  padding: 0.5rem 1.5rem;
  border-radius: 4px;
  font-weight: 500;
  transition: all 0.3s ease;
}

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

@media (max-width: 768px) {
  footer {
    text-align: center;
  }
  
  footer h5::after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .footer-section {
    margin-bottom: 2rem;
  }
}

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

.faq-section {
    padding: 5rem 0;
    background-color: #f9fcf5;
}

.faq-header {
    margin-bottom: 3rem;
    text-align: center;
}

.faq-title {
    color: hsl(95, 62%, 27%);
    margin-bottom: 1rem;
    font-weight: 700;
}

.faq-subtitle {
    color: hsl(95, 62%, 42%);
    margin-bottom: 2rem;
    font-weight: 400;
}

.nav-tabs {
    border-bottom: 2px solid hsl(95, 62%, 67%);
    margin-bottom: 2rem;
    justify-content: center;
}

.nav-tabs .nav-link {
    color: hsl(95, 62%, 27%);
    border: none;
    position: relative;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.nav-tabs .nav-link:hover {
    color: hsl(95, 62%, 42%);
}

.nav-tabs .nav-link.active {
    color: hsl(95, 62%, 42%);
    background-color: transparent;
    border: none;
}

.nav-tabs .nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: hsl(95, 62%, 42%);
}

.tab-content {
    padding: 1rem;
}

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

.accordion-button {
    background-color: white;
    color: hsl(95, 62%, 27%);
    font-weight: 600;
    padding: 1.25rem;
    box-shadow: none;
}

.accordion-button:not(.collapsed) {
    color: white;
    background-color: hsl(95, 62%, 42%);
}

.accordion-button:focus {
    box-shadow: none;
    border-color: transparent;
}

.accordion-button::after {
    background-size: 1rem;
}

.accordion-body {
    padding: 1.5rem;
    line-height: 1.7;
    color: #444;
    background-color: #fff;
}

@media (max-width: 768px) {
    .nav-tabs {
        flex-wrap: nowrap;
        overflow-x: auto;
        white-space: nowrap;
    }
    
    .nav-tabs .nav-link {
        padding: 0.5rem 1rem;
    }
}

.about-section {
        padding: 5rem 0;
        background-color: #f9fbf7;
        font-family: 'Montserrat', sans-serif;
    }
    
    .about-section h2 {
        color: hsl(95, 62%, 27%);
        font-weight: 700;
        margin-bottom: 2rem;
        position: relative;
    }
    
    .about-section h2:after {
        content: '';
        position: absolute;
        bottom: -10px;
        left: 0;
        width: 80px;
        height: 3px;
        background-color: hsl(95, 62%, 42%);
    }
    
    .about-content {
        margin-bottom: 4rem;
    }
    
    .about-text {
        color: #333;
        line-height: 1.8;
    }
    
    .about-text p {
        margin-bottom: 1.5rem;
    }
    
    .about-img {
        border-radius: 10px;
        box-shadow: 0 10px 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;
        object-fit: cover;
        transition: transform 0.5s ease;
    }
    
    .about-img:hover img {
        transform: scale(1.05);
    }
    
    .values-box {
        background-color: white;
        padding: 2rem;
        border-radius: 10px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        margin-top: 2rem;
        border-left: 4px solid hsl(95, 62%, 42%);
    }
    
    .values-box h3 {
        color: hsl(95, 62%, 27%);
        margin-bottom: 1.5rem;
    }
    
    .mission-statement {
        font-style: italic;
        font-weight: 500;
        color: hsl(95, 62%, 27%);
        padding: 1.5rem;
        background-color: hsl(95, 62%, 67%, 0.2);
        border-radius: 10px;
        margin: 2rem 0;
    }
    
    @media (max-width: 768px) {
        .row {
            flex-direction: column-reverse;
        }
        .about-img {
            margin-bottom: 2rem;
        }
    }

.newsletter-section {
    background: linear-gradient(to right, hsl(95, 62%, 42%), hsl(95, 62%, 27%));
    padding: 5rem 0;
    color: white;
    border-radius: 10px;
    margin: 3rem auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    position: relative;
}

.newsletter-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    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='rgba(255,255,255,.05)' fill-rule='evenodd'/%3E%3C/svg%3E");
    opacity: 0.2;
}

.newsletter-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
}

.newsletter-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.6;
}

.newsletter-form {
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-input {
    border: none;
    border-radius: 50px;
    padding: 15px 25px;
    font-size: 1rem;
    width: 100%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.newsletter-input:focus {
    outline: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.newsletter-button {
    background-color: hsl(95, 62%, 67%);
    color: hsl(95, 62%, 27%);
    border: none;
    border-radius: 50px;
    padding: 15px 30px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    width: 100%;
    margin-top: 1rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.newsletter-button:hover {
    background-color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

.benefits-list {
    list-style-type: none;
    padding: 0;
    margin-top: 2rem;
}

.benefits-item {
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
}

.benefits-item:before {
    content: "✓";
    display: inline-block;
    margin-right: 10px;
    color: hsl(95, 62%, 67%);
    font-weight: bold;
}

.benefits-title {
    font-size: 1.4rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.benefits-icon {
    background-color: hsla(95, 62%, 67%, 0.2);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.privacy-note {
    font-size: 0.8rem;
    opacity: 0.7;
    margin-top: 1rem;
}

@media (max-width: 768px) {
    .newsletter-title {
        font-size: 2rem;
    }
    
    .newsletter-subtitle {
        font-size: 1rem;
    }
    
    .benefits-title {
        font-size: 1.2rem;
    }
}

:root {
  --primary-color: hsl(95, 62%, 42%);
  --secondary-color: hsl(95, 62%, 27%);
  --accent-color: hsl(95, 62%, 67%);
}

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

footer h5 {
  color: var(--accent-color);
  font-weight: 600;
  margin-bottom: 1.2rem;
  position: relative;
}

footer h5::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 40px;
  height: 2px;
  background-color: var(--accent-color);
}

footer p {
  line-height: 1.7;
}

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

footer ul li {
  margin-bottom: 0.7rem;
}

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

footer a:hover {
  color: var(--accent-color);
  text-decoration: none;
  padding-left: 5px;
}

.copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.5rem;
  margin-top: 2rem;
}

.cookie-notice {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: rgba(40, 40, 40, 0.95);
  color: #fff;
  padding: 1rem 0;
  z-index: 9999;
  box-shadow: 0 -3px 10px rgba(0, 0, 0, 0.1);
  transform: translateY(100%);
  transition: transform 0.4s ease-in-out;
}

.cookie-notice.show {
  transform: translateY(0);
}

.btn-cookie {
  background-color: var(--primary-color);
  color: white;
  border: none;
  padding: 0.5rem 1.5rem;
  border-radius: 4px;
  font-weight: 500;
  transition: all 0.3s ease;
}

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

.btn-learn-more {
  background-color: transparent;
  color: var(--accent-color);
  border: 1px solid var(--accent-color);
  padding: 0.5rem 1.5rem;
  border-radius: 4px;
  font-weight: 500;
  transition: all 0.3s ease;
}

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

@media (max-width: 768px) {
  footer {
    text-align: center;
  }
  
  footer h5::after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .footer-section {
    margin-bottom: 2rem;
  }
}

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

.hero-section {
        display: grid;
        grid-template-areas: 
            "title title image"
            "subtitle subtitle image"
            "description description image"
            "list list image"
            "cta-secondary cta-primary image";
        grid-template-columns: 1fr 1fr 1fr;
        gap: 1.5rem;
        padding: 4rem 2rem;
        background: linear-gradient(135deg, #f8f9fa 0%, #e9f5e1 100%);
        border-radius: 0.5rem;
        overflow: hidden;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
        position: relative;
    }
    
    .hero-section::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 5px;
        background: hsl(95, 62%, 42%);
        z-index: 1;
    }
    
    .hero-title {
        grid-area: title;
        color: hsl(95, 62%, 27%);
        font-size: 3.5rem;
        font-weight: 800;
        margin-bottom: 0.5rem;
        line-height: 1.1;
        position: relative;
    }
    
    .hero-title::after {
        content: "";
        display: block;
        width: 80px;
        height: 4px;
        background-color: hsl(95, 62%, 42%);
        margin-top: 15px;
    }
    
    .hero-subtitle {
        grid-area: subtitle;
        color: hsl(95, 62%, 42%);
        font-size: 1.8rem;
        font-weight: 400;
        margin-bottom: 1.5rem;
    }
    
    .hero-image-container {
        grid-area: image;
        position: relative;
        border-radius: 1rem;
        overflow: hidden;
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
        transform: perspective(1000px) rotateY(-5deg);
        transition: transform 0.5s ease;
    }
    
    .hero-image-container:hover {
        transform: perspective(1000px) rotateY(0deg);
    }
    
    .hero-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }
    
    .hero-image:hover {
        transform: scale(1.05);
    }
    
    .hero-description {
        grid-area: description;
        color: #444;
        font-size: 1.1rem;
        line-height: 1.8;
        margin-bottom: 1.5rem;
    }
    
    .hero-list {
        grid-area: list;
        list-style: none;
        padding: 0;
        margin: 0 0 2rem 0;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0.75rem;
    }
    
    .hero-list-item {
        display: flex;
        align-items: center;
        color: #333;
        font-weight: 500;
    }
    
    .hero-list-item i {
        color: hsl(95, 62%, 42%);
        margin-right: 0.5rem;
        font-size: 1.2rem;
    }
    
    .hero-cta-primary {
        grid-area: cta-primary;
        background-color: hsl(95, 62%, 42%);
        color: white;
        border: none;
        padding: 1rem 2rem;
        font-size: 1.2rem;
        font-weight: 600;
        border-radius: 2rem;
        cursor: pointer;
        transition: all 0.3s ease;
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }
    
    .hero-cta-primary:hover {
        background-color: hsl(95, 62%, 27%);
        transform: translateY(-3px);
        box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
    }
    
    .hero-cta-secondary {
        grid-area: cta-secondary;
        background-color: transparent;
        color: hsl(95, 62%, 42%);
        border: 2px solid hsl(95, 62%, 42%);
        padding: 1rem 2rem;
        font-size: 1.2rem;
        font-weight: 600;
        border-radius: 2rem;
        cursor: pointer;
        transition: all 0.3s ease;
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }
    
    .hero-cta-secondary:hover {
        background-color: hsl(95, 62%, 67%);
        color: hsl(95, 62%, 27%);
        transform: translateY(-3px);
    }
    
    .hero-cta-primary i, .hero-cta-secondary i {
        margin-left: 0.5rem;
    }
    
    @media (max-width: 992px) {
        .hero-section {
            grid-template-areas: 
                "title title"
                "subtitle subtitle"
                "image image"
                "description description"
                "list list"
                "cta-secondary cta-primary";
            grid-template-columns: 1fr 1fr;
        }
        
        .hero-image-container {
            height: 400px;
            margin-bottom: 2rem;
        }
    }
    
    @media (max-width: 768px) {
        .hero-section {
            grid-template-areas: 
                "title"
                "subtitle"
                "image"
                "description"
                "list"
                "cta-secondary"
                "cta-primary";
            grid-template-columns: 1fr;
            padding: 3rem 1.5rem;
        }
        
        .hero-title {
            font-size: 2.5rem;
        }
        
        .hero-subtitle {
            font-size: 1.5rem;
        }
        
        .hero-list {
            grid-template-columns: 1fr;
        }
        
        .hero-image-container {
            height: 300px;
            transform: none;
        }
    }

.about-section {
        padding: 5rem 0;
        background-color: #f9fbf7;
        font-family: 'Montserrat', sans-serif;
    }
    
    .about-section h2 {
        color: hsl(95, 62%, 27%);
        font-weight: 700;
        margin-bottom: 2rem;
        position: relative;
    }
    
    .about-section h2:after {
        content: '';
        position: absolute;
        bottom: -10px;
        left: 0;
        width: 80px;
        height: 3px;
        background-color: hsl(95, 62%, 42%);
    }
    
    .about-content {
        margin-bottom: 4rem;
    }
    
    .about-text {
        color: #333;
        line-height: 1.8;
    }
    
    .about-text p {
        margin-bottom: 1.5rem;
    }
    
    .about-img {
        border-radius: 10px;
        box-shadow: 0 10px 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;
        object-fit: cover;
        transition: transform 0.5s ease;
    }
    
    .about-img:hover img {
        transform: scale(1.05);
    }
    
    .values-box {
        background-color: white;
        padding: 2rem;
        border-radius: 10px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        margin-top: 2rem;
        border-left: 4px solid hsl(95, 62%, 42%);
    }
    
    .values-box h3 {
        color: hsl(95, 62%, 27%);
        margin-bottom: 1.5rem;
    }
    
    .mission-statement {
        font-style: italic;
        font-weight: 500;
        color: hsl(95, 62%, 27%);
        padding: 1.5rem;
        background-color: hsl(95, 62%, 67%, 0.2);
        border-radius: 10px;
        margin: 2rem 0;
    }
    
    @media (max-width: 768px) {
        .row {
            flex-direction: column-reverse;
        }
        .about-img {
            margin-bottom: 2rem;
        }
    }

.faq-section {
    padding: 5rem 0;
    background-color: #f9fcf5;
}

.faq-header {
    margin-bottom: 3rem;
    text-align: center;
}

.faq-title {
    color: hsl(95, 62%, 27%);
    margin-bottom: 1rem;
    font-weight: 700;
}

.faq-subtitle {
    color: hsl(95, 62%, 42%);
    margin-bottom: 2rem;
    font-weight: 400;
}

.nav-tabs {
    border-bottom: 2px solid hsl(95, 62%, 67%);
    margin-bottom: 2rem;
    justify-content: center;
}

.nav-tabs .nav-link {
    color: hsl(95, 62%, 27%);
    border: none;
    position: relative;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.nav-tabs .nav-link:hover {
    color: hsl(95, 62%, 42%);
}

.nav-tabs .nav-link.active {
    color: hsl(95, 62%, 42%);
    background-color: transparent;
    border: none;
}

.nav-tabs .nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: hsl(95, 62%, 42%);
}

.tab-content {
    padding: 1rem;
}

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

.accordion-button {
    background-color: white;
    color: hsl(95, 62%, 27%);
    font-weight: 600;
    padding: 1.25rem;
    box-shadow: none;
}

.accordion-button:not(.collapsed) {
    color: white;
    background-color: hsl(95, 62%, 42%);
}

.accordion-button:focus {
    box-shadow: none;
    border-color: transparent;
}

.accordion-button::after {
    background-size: 1rem;
}

.accordion-body {
    padding: 1.5rem;
    line-height: 1.7;
    color: #444;
    background-color: #fff;
}

@media (max-width: 768px) {
    .nav-tabs {
        flex-wrap: nowrap;
        overflow-x: auto;
        white-space: nowrap;
    }
    
    .nav-tabs .nav-link {
        padding: 0.5rem 1rem;
    }
}

.newsletter-section {
    background: linear-gradient(to right, hsl(95, 62%, 42%), hsl(95, 62%, 27%));
    padding: 5rem 0;
    color: white;
    border-radius: 10px;
    margin: 3rem auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    position: relative;
}

.newsletter-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    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='rgba(255,255,255,.05)' fill-rule='evenodd'/%3E%3C/svg%3E");
    opacity: 0.2;
}

.newsletter-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
}

.newsletter-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.6;
}

.newsletter-form {
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-input {
    border: none;
    border-radius: 50px;
    padding: 15px 25px;
    font-size: 1rem;
    width: 100%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.newsletter-input:focus {
    outline: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.newsletter-button {
    background-color: hsl(95, 62%, 67%);
    color: hsl(95, 62%, 27%);
    border: none;
    border-radius: 50px;
    padding: 15px 30px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    width: 100%;
    margin-top: 1rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.newsletter-button:hover {
    background-color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

.benefits-list {
    list-style-type: none;
    padding: 0;
    margin-top: 2rem;
}

.benefits-item {
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
}

.benefits-item:before {
    content: "✓";
    display: inline-block;
    margin-right: 10px;
    color: hsl(95, 62%, 67%);
    font-weight: bold;
}

.benefits-title {
    font-size: 1.4rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.benefits-icon {
    background-color: hsla(95, 62%, 67%, 0.2);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.privacy-note {
    font-size: 0.8rem;
    opacity: 0.7;
    margin-top: 1rem;
}

@media (max-width: 768px) {
    .newsletter-title {
        font-size: 2rem;
    }
    
    .newsletter-subtitle {
        font-size: 1rem;
    }
    
    .benefits-title {
        font-size: 1.2rem;
    }
}

.contact-section {
    background-color: #f9fcf6;
    padding: 80px 0;
    color: hsl(95, 62%, 27%);
  }
  
  .contact-section h2 {
    color: hsl(95, 62%, 27%);
    font-weight: 700;
    margin-bottom: 40px;
    text-align: center;
    position: relative;
  }
  
  .contact-section h2:after {
    content: "";
    display: block;
    width: 80px;
    height: 3px;
    background-color: hsl(95, 62%, 42%);
    margin: 15px auto;
  }
  
  .contact-form {
    background-color: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  }
  
  .form-control {
    border: 2px solid #e8f4d9;
    padding: 12px 15px;
    margin-bottom: 20px;
    border-radius: 8px;
    transition: all 0.3s ease;
  }
  
  .form-control:focus {
    border-color: hsl(95, 62%, 42%);
    box-shadow: 0 0 0 0.25rem rgba(121, 182, 55, 0.25);
  }
  
  .form-label {
    font-weight: 600;
    color: hsl(95, 62%, 27%);
    margin-bottom: 8px;
  }
  
  .submit-btn {
    background-color: hsl(95, 62%, 42%);
    border: none;
    color: white;
    padding: 12px 30px;
    border-radius: 8px;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    width: 100%;
    margin-top: 10px;
  }
  
  .submit-btn:hover {
    background-color: hsl(95, 62%, 27%);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  }
  
  .contact-info {
    padding: 20px;
  }
  
  .contact-info h3 {
    color: hsl(95, 62%, 42%);
    margin-bottom: 20px;
    font-weight: 600;
  }
  
  .info-card {
    background-color: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    margin-bottom: 25px;
    border-left: 4px solid hsl(95, 62%, 67%);
  }
  
  .info-card h4 {
    color: hsl(95, 62%, 27%);
    font-size: 18px;
    margin-bottom: 15px;
  }
  
  .business-hours {
    padding-left: 0;
    list-style: none;
  }
  
  .business-hours li {
    padding: 8px 0;
    border-bottom: 1px dashed #e8f4d9;
    display: flex;
    justify-content: space-between;
  }
  
  .business-hours li:last-child {
    border-bottom: none;
  }
  
  @media (max-width: 767px) {
    .contact-info {
      margin-top: 40px;
    }
  }

.advantages-section {
        padding: 5rem 0;
        background-color: #f9fcf5;
    }
    
    .advantages-section h2 {
        color: hsl(95, 62%, 27%);
        margin-bottom: 3rem;
        font-weight: 700;
        position: relative;
    }
    
    .advantages-section h2:after {
        content: '';
        position: absolute;
        bottom: -15px;
        left: 50%;
        transform: translateX(-50%);
        width: 80px;
        height: 4px;
        background-color: hsl(95, 62%, 42%);
        border-radius: 2px;
    }
    
    .advantage-card {
        background-color: white;
        border-radius: 12px;
        padding: 2rem;
        margin-bottom: 2.5rem;
        box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        transition: all 0.3s ease;
        height: 100%;
        border-left: 5px solid transparent;
    }
    
    .advantage-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        border-left: 5px solid hsl(95, 62%, 42%);
    }
    
    .advantage-icon {
        background-color: hsl(95, 62%, 67%);
        color: hsl(95, 62%, 27%);
        width: 70px;
        height: 70px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 2rem;
        margin-bottom: 1.5rem;
        transition: all 0.3s ease;
    }
    
    .advantage-card:hover .advantage-icon {
        background-color: hsl(95, 62%, 42%);
        color: white;
    }
    
    .advantage-card h3 {
        color: hsl(95, 62%, 27%);
        font-size: 1.5rem;
        margin-bottom: 1rem;
        font-weight: 600;
    }
    
    .advantage-card p {
        color: #555;
        line-height: 1.7;
    }
    
    @media (max-width: 768px) {
        .advantage-card {
            text-align: center;
        }
        
        .advantage-icon {
            margin: 0 auto 1.5rem auto;
        }
    }

.testimonials-section {
    padding: 80px 0;
    background-color: #f9fcf6;
}

.testimonials-section h2 {
    color: hsl(95, 62%, 27%);
    font-weight: 700;
    margin-bottom: 50px;
    text-align: center;
    position: relative;
}

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

.testimonial-card {
    background-color: white;
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 4px solid hsl(95, 62%, 42%);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 20px;
    color: #555;
    line-height: 1.6;
}

.testimonial-author {
    font-weight: 700;
    color: hsl(95, 62%, 27%);
    margin-bottom: 5px;
}

.testimonial-location {
    color: hsl(95, 62%, 42%);
    font-size: 0.9rem;
}

.testimonial-stars {
    color: hsl(95, 62%, 67%);
    margin-bottom: 15px;
}

.services-section {
        padding: 80px 0;
        background-color: #f9fcf5;
    }
    
    .services-section h2 {
        color: hsl(95, 62%, 27%);
        margin-bottom: 40px;
        font-weight: 700;
        position: relative;
    }
    
    .services-section h2:after {
        content: '';
        position: absolute;
        bottom: -15px;
        left: 50%;
        transform: translateX(-50%);
        width: 80px;
        height: 4px;
        background-color: hsl(95, 62%, 42%);
        border-radius: 2px;
    }
    
    .service-card {
        background-color: white;
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
        transition: all 0.3s ease;
        height: 100%;
        margin-bottom: 30px;
        border: 1px solid rgba(0, 0, 0, 0.05);
        position: relative;
    }
    
    .service-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        border-color: hsl(95, 62%, 67%);
    }
    
    .service-card .card-body {
        padding: 25px;
        text-align: center;
    }
    
    .service-icon {
        width: 70px;
        height: 70px;
        margin: 0 auto 20px;
        display: flex;
        align-items: center;
        justify-content: center;
        background-color: hsl(95, 62%, 67%, 0.2);
        border-radius: 50%;
        color: hsl(95, 62%, 42%);
        font-size: 30px;
    }
    
    .service-title {
        font-size: 20px;
        font-weight: 600;
        color: hsl(95, 62%, 27%);
        margin-bottom: 15px;
    }
    
    .service-description {
        color: #666;
        font-size: 15px;
        line-height: 1.6;
        margin-bottom: 20px;
    }
    
    .service-price {
        font-weight: 700;
        color: hsl(95, 62%, 42%);
        font-size: 22px;
        margin-top: auto;
        padding-top: 15px;
        border-top: 1px dashed #e0e0e0;
    }
    
    .service-price span {
        font-size: 14px;
        font-weight: 400;
        color: #888;
    }
    
    .service-tag {
        position: absolute;
        top: 15px;
        right: 15px;
        background-color: hsl(95, 62%, 42%);
        color: white;
        padding: 5px 10px;
        border-radius: 20px;
        font-size: 12px;
        font-weight: 500;
    }

.statistics-section {
    background-color: hsl(95, 62%, 97%);
    padding: 5rem 0;
  }
  
  .statistics-section h2 {
    color: hsl(95, 62%, 27%);
    font-weight: 700;
    margin-bottom: 3rem;
    text-align: center;
  }
  
  .stats-card {
    text-align: center;
    margin-bottom: 2.5rem;
    transition: transform 0.3s ease;
  }
  
  .stats-card:hover {
    transform: translateY(-10px);
  }
  
  .stats-circle {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 8px solid hsl(95, 62%, 42%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    position: relative;
    background-color: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  }
  
  .stats-circle i {
    font-size: 2.5rem;
    color: hsl(95, 62%, 27%);
    position: absolute;
    top: -20px;
    background-color: white;
    border-radius: 50%;
    padding: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  }
  
  .stats-number {
    font-size: 2rem;
    font-weight: 700;
    color: hsl(95, 62%, 42%);
    line-height: 1;
  }
  
  .stats-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: hsl(95, 62%, 27%);
    margin-top: 0.5rem;
  }
  
  .stats-description {
    font-size: 0.9rem;
    color: #666;
    margin-top: 0.5rem;
  }
  
  @media (max-width: 768px) {
    .stats-circle {
      width: 100px;
      height: 100px;
    }
    
    .stats-number {
      font-size: 1.5rem;
    }
  }

:root {
  --primary-color: hsl(95, 62%, 42%);
  --secondary-color: hsl(95, 62%, 27%);
  --accent-color: hsl(95, 62%, 67%);
}

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

footer h5 {
  color: var(--accent-color);
  font-weight: 600;
  margin-bottom: 1.2rem;
  position: relative;
}

footer h5::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 40px;
  height: 2px;
  background-color: var(--accent-color);
}

footer p {
  line-height: 1.7;
}

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

footer ul li {
  margin-bottom: 0.7rem;
}

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

footer a:hover {
  color: var(--accent-color);
  text-decoration: none;
  padding-left: 5px;
}

.copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.5rem;
  margin-top: 2rem;
}

.cookie-notice {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: rgba(40, 40, 40, 0.95);
  color: #fff;
  padding: 1rem 0;
  z-index: 9999;
  box-shadow: 0 -3px 10px rgba(0, 0, 0, 0.1);
  transform: translateY(100%);
  transition: transform 0.4s ease-in-out;
}

.cookie-notice.show {
  transform: translateY(0);
}

.btn-cookie {
  background-color: var(--primary-color);
  color: white;
  border: none;
  padding: 0.5rem 1.5rem;
  border-radius: 4px;
  font-weight: 500;
  transition: all 0.3s ease;
}

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

.btn-learn-more {
  background-color: transparent;
  color: var(--accent-color);
  border: 1px solid var(--accent-color);
  padding: 0.5rem 1.5rem;
  border-radius: 4px;
  font-weight: 500;
  transition: all 0.3s ease;
}

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

@media (max-width: 768px) {
  footer {
    text-align: center;
  }
  
  footer h5::after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .footer-section {
    margin-bottom: 2rem;
  }
}