:root {
            --primary-color: hsl(112, 68%, 35%);
            --secondary-color: hsl(112, 68%, 20%);
            --accent-color: hsl(112, 68%, 60%);
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Merriweather', serif;
            color: #333;
            line-height: 1.7;
            overflow-x: hidden;
        }
        
        h1, h2, h3, h4, h5, h6 {
            font-family: 'Lato', sans-serif;
            font-weight: 700;
            color: #222;
        }
        
        .navbar {
            background-color: #ffffff;
            box-shadow: 0 2px 15px rgba(0,0,0,0.08);
            padding: 1rem 0;
            transition: all 0.3s ease;
        }
        
        .navbar-brand {
            display: flex;
            align-items: center;
            gap: 12px;
            font-family: 'Lato', sans-serif;
            font-weight: 700;
            font-size: 1.5rem;
            color: var(--primary-color);
            transition: color 0.3s ease;
        }
        
        .navbar-brand:hover {
            color: var(--secondary-color);
        }
        
        .navbar-brand img {
            transition: transform 0.3s ease;
        }
        
        .navbar-brand:hover img {
            transform: scale(1.05);
        }
        
        .navbar-nav {
            gap: 0.5rem;
        }
        
        .nav-link {
            font-family: 'Lato', sans-serif;
            font-weight: 500;
            color: #333;
            padding: 0.5rem 1rem;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .nav-link::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            width: 0;
            height: 2px;
            background-color: var(--accent-color);
            transition: all 0.3s ease;
            transform: translateX(-50%);
        }
        
        .nav-link:hover {
            color: var(--primary-color);
        }
        
        .nav-link:hover::after {
            width: 80%;
        }
        
        .navbar-toggler {
            border: 2px solid var(--primary-color);
            padding: 0.5rem 0.75rem;
        }
        
        .navbar-toggler:focus {
            box-shadow: 0 0 0 0.2rem rgba(72, 145, 54, 0.25);
        }
        
        .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(112, 68%%, 35%%)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        @media (max-width: 991px) {
            .navbar-collapse {
                background-color: #f8f9fa;
                padding: 1rem;
                margin-top: 1rem;
                border-radius: 8px;
            }
            
            .nav-link::after {
                display: none;
            }
            
            .nav-link {
                padding: 0.75rem 1rem;
                border-radius: 4px;
            }
            
            .nav-link:hover {
                background-color: rgba(72, 145, 54, 0.1);
            }
        }

#about {
    font-family: 'Merriweather', serif;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 80px 0;
    color: #333;
  }

  #about h1, #about h2, #about h3 {
    font-family: 'Lato', sans-serif;
    color: hsl(112, 68%, 20%);
    font-weight: 700;
  }

  #about h1 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    text-align: center;
  }

  #about h2 {
    font-size: 2rem;
    margin-bottom: 1.2rem;
    margin-top: 2.5rem;
  }

  #about h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: hsl(112, 68%, 35%);
  }

  #about p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 1.2rem;
  }

  .about-intro {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 60px;
  }

  .about-intro p {
    font-size: 1.15rem;
    color: #555;
  }

  .about-image-wrapper {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    margin-bottom: 30px;
  }

  .about-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.4s ease;
  }

  .about-image-wrapper:hover img {
    transform: scale(1.05);
  }

  .about-content-box {
    background: #ffffff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    margin-bottom: 30px;
  }

  .values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 30px;
  }

  .value-card {
    background: linear-gradient(135deg, hsl(112, 68%, 35%) 0%, hsl(112, 68%, 25%) 100%);
    padding: 30px;
    border-radius: 10px;
    color: #ffffff;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 28px rgba(0,0,0,0.15);
  }

  .value-card h3 {
    color: #ffffff;
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
  }

  .value-card p {
    color: #f0f0f0;
    font-size: 0.98rem;
    margin-bottom: 0;
  }

  .timeline-section {
    position: relative;
    padding-left: 40px;
    border-left: 3px solid hsl(112, 68%, 60%);
    margin-top: 30px;
  }

  .timeline-item {
    margin-bottom: 25px;
    position: relative;
  }

  .timeline-item::before {
    content: '';
    position: absolute;
    left: -47px;
    top: 5px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: hsl(112, 68%, 35%);
    border: 3px solid #ffffff;
    box-shadow: 0 0 0 3px hsl(112, 68%, 60%);
  }

  @media (max-width: 768px) {
    #about {
      padding: 50px 0;
    }

    #about h1 {
      font-size: 2.2rem;
    }

    #about h2 {
      font-size: 1.7rem;
    }

    .about-content-box {
      padding: 25px;
    }

    .values-grid {
      grid-template-columns: 1fr;
    }
  }

.portfolio-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  font-family: 'Merriweather', serif;
}

.portfolio-section h2 {
  font-family: 'Lato', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 1rem;
  text-align: center;
}

.portfolio-section .lead-text {
  font-size: 1.1rem;
  color: #555;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3rem;
  line-height: 1.8;
}

.filter-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  margin-bottom: 3rem;
}

.filter-btn {
  padding: 10px 25px;
  border: 2px solid hsl(112, 68%, 35%);
  background: #fff;
  color: hsl(112, 68%, 35%);
  font-family: 'Lato', sans-serif;
  font-weight: 600;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.95rem;
}

.filter-btn:hover,
.filter-btn.active {
  background: hsl(112, 68%, 35%);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  margin-top: 2rem;
}

.portfolio-item {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  cursor: pointer;
  position: relative;
}

.portfolio-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.portfolio-image {
  position: relative;
  overflow: hidden;
  height: 280px;
}

.portfolio-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.portfolio-item:hover .portfolio-image img {
  transform: scale(1.1);
}

.portfolio-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.7) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  display: flex;
  align-items: flex-end;
  padding: 20px;
}

.portfolio-item:hover .portfolio-overlay {
  opacity: 1;
}

.portfolio-category-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: hsl(112, 68%, 35%);
  color: #fff;
  padding: 6px 15px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-family: 'Lato', sans-serif;
  font-weight: 600;
  z-index: 2;
}

.portfolio-content {
  padding: 25px;
}

.portfolio-content h3 {
  font-family: 'Lato', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 12px;
}

.portfolio-content p {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 15px;
}

.view-details-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: hsl(112, 68%, 35%);
  font-family: 'Lato', sans-serif;
  font-weight: 600;
  text-decoration: none;
  font-size: 0.95rem;
  transition: gap 0.3s ease;
}

.view-details-btn:hover {
  gap: 12px;
  color: hsl(112, 68%, 25%);
}

.modal-content {
  border-radius: 15px;
  border: none;
}

.modal-header {
  background: linear-gradient(135deg, hsl(112, 68%, 35%) 0%, hsl(112, 68%, 25%) 100%);
  color: #fff;
  border-radius: 15px 15px 0 0;
  padding: 25px 30px;
}

.modal-header h5 {
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-size: 1.6rem;
  margin: 0;
}

.modal-header .btn-close {
  filter: brightness(0) invert(1);
  opacity: 0.8;
}

.modal-body {
  padding: 30px;
  color: #333;
}

.modal-body img {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 25px;
}

.modal-body h6 {
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  color: hsl(112, 68%, 35%);
  font-size: 1.1rem;
  margin-top: 20px;
  margin-bottom: 10px;
}

.modal-body p,
.modal-body ul {
  color: #555;
  line-height: 1.8;
  font-size: 0.98rem;
}

.modal-body ul {
  padding-left: 20px;
}

.modal-body ul li {
  margin-bottom: 8px;
}

.project-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 2px solid #f0f0f0;
}

.meta-item {
  flex: 1;
  min-width: 150px;
}

.meta-item strong {
  display: block;
  font-family: 'Lato', sans-serif;
  color: #222;
  margin-bottom: 5px;
  font-size: 0.9rem;
}

.meta-item span {
  color: #666;
  font-size: 0.95rem;
}

@media (max-width: 768px) {
  .portfolio-section {
    padding: 60px 0;
  }

  .portfolio-section h2 {
    font-size: 2rem;
  }

  .portfolio-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .filter-buttons {
    gap: 10px;
  }

  .filter-btn {
    padding: 8px 18px;
    font-size: 0.9rem;
  }

  .portfolio-image {
    height: 220px;
  }

  .modal-body {
    padding: 20px;
  }
}

#advantages {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
  }

  #advantages::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: hsl(112, 68%, 60%);
    opacity: 0.05;
    border-radius: 50%;
  }

  #advantages::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: hsl(112, 68%, 35%);
    opacity: 0.03;
    border-radius: 50%;
  }

  .advantages-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
  }

  .advantages-header h2 {
    font-family: 'Lato', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
  }

  .advantages-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: hsl(112, 68%, 35%);
    border-radius: 2px;
  }

  .advantages-header p {
    font-family: 'Merriweather', serif;
    font-size: 1.1rem;
    color: #555;
    max-width: 700px;
    margin: 30px auto 0;
    line-height: 1.7;
  }

  .advantage-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 40px 30px;
    height: 100%;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
  }

  .advantage-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, hsl(112, 68%, 35%), hsl(112, 68%, 60%));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
  }

  .advantage-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    border-color: hsl(112, 68%, 60%);
  }

  .advantage-card:hover::before {
    transform: scaleX(1);
  }

  .advantage-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, hsl(112, 68%, 35%), hsl(112, 68%, 60%));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.4s ease;
    position: relative;
  }

  .advantage-card:hover .advantage-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 25px rgba(112, 68, 35, 0.3);
  }

  .advantage-icon i {
    font-size: 2.2rem;
    color: #ffffff;
  }

  .advantage-card h3 {
    font-family: 'Lato', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 18px;
    text-align: center;
    transition: color 0.3s ease;
  }

  .advantage-card:hover h3 {
    color: hsl(112, 68%, 35%);
  }

  .advantage-card p {
    font-family: 'Merriweather', serif;
    font-size: 0.95rem;
    color: #666;
    line-height: 1.8;
    text-align: center;
    margin: 0;
  }

  @media (max-width: 768px) {
    #advantages {
      padding: 60px 0;
    }

    .advantages-header h2 {
      font-size: 2rem;
    }

    .advantages-header p {
      font-size: 1rem;
    }

    .advantage-card {
      padding: 35px 25px;
      margin-bottom: 25px;
    }

    .advantage-icon {
      width: 70px;
      height: 70px;
    }

    .advantage-icon i {
      font-size: 2rem;
    }

    .advantage-card h3 {
      font-size: 1.25rem;
    }
  }

  @media (max-width: 576px) {
    .advantages-header h2 {
      font-size: 1.75rem;
    }

    .advantage-card {
      padding: 30px 20px;
    }
  }

#statistics {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
  }

  #statistics::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: hsl(112, 68%, 35%, 0.03);
    border-radius: 50%;
    z-index: 0;
  }

  #statistics::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: hsl(112, 68%, 60%, 0.04);
    border-radius: 50%;
    z-index: 0;
  }

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

  #statistics .section-header {
    text-align: center;
    margin-bottom: 60px;
  }

  #statistics .section-title {
    font-family: 'Lato', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
  }

  #statistics .section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: hsl(112, 68%, 35%);
    border-radius: 2px;
  }

  #statistics .section-subtitle {
    font-family: 'Merriweather', serif;
    font-size: 1.1rem;
    color: #555;
    max-width: 700px;
    margin: 30px auto 0;
    line-height: 1.7;
  }

  #statistics .stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
  }

  #statistics .stat-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.4s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
  }

  #statistics .stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, hsl(112, 68%, 35%), hsl(112, 68%, 60%));
    transform: scaleX(0);
    transition: transform 0.4s ease;
  }

  #statistics .stat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
    border-color: hsl(112, 68%, 35%, 0.2);
  }

  #statistics .stat-card:hover::before {
    transform: scaleX(1);
  }

  #statistics .stat-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, hsl(112, 68%, 35%), hsl(112, 68%, 45%));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    color: #ffffff;
    transition: all 0.4s ease;
    box-shadow: 0 5px 15px rgba(68, 153, 46, 0.3);
  }

  #statistics .stat-card:hover .stat-icon {
    transform: rotate(360deg) scale(1.1);
    box-shadow: 0 8px 25px rgba(68, 153, 46, 0.4);
  }

  #statistics .stat-number {
    font-family: 'Lato', sans-serif;
    font-size: 2.8rem;
    font-weight: 800;
    color: hsl(112, 68%, 35%);
    margin-bottom: 10px;
    line-height: 1.2;
    display: block;
  }

  #statistics .stat-label {
    font-family: 'Merriweather', serif;
    font-size: 1rem;
    color: #666;
    font-weight: 400;
    line-height: 1.5;
  }

  #statistics .stat-context {
    font-family: 'Merriweather', serif;
    font-size: 0.85rem;
    color: #888;
    margin-top: 8px;
    font-style: italic;
  }

  @media (max-width: 768px) {
    #statistics {
      padding: 60px 0;
    }

    #statistics .section-title {
      font-size: 2rem;
    }

    #statistics .section-subtitle {
      font-size: 1rem;
    }

    #statistics .stats-grid {
      grid-template-columns: 1fr;
      gap: 25px;
    }

    #statistics .stat-card {
      padding: 35px 25px;
    }

    #statistics .stat-number {
      font-size: 2.3rem;
    }

    #statistics .stat-icon {
      width: 70px;
      height: 70px;
      font-size: 1.9rem;
    }
  }

  @media (min-width: 769px) and (max-width: 1024px) {
    #statistics .stats-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }

  @media (min-width: 1025px) {
    #statistics .stats-grid {
      grid-template-columns: repeat(3, 1fr);
    }
  }

footer {
  background: linear-gradient(135deg, hsl(112, 68%, 20%) 0%, hsl(112, 68%, 25%) 100%);
  color: #ffffff;
  padding: 4rem 0 2rem;
  margin-top: 5rem;
  font-family: 'Merriweather', serif;
}

footer h5 {
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  color: hsl(112, 68%, 60%);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

footer p, footer li, footer a {
  font-size: 0.95rem;
  line-height: 1.8;
  color: #f8f9fa;
}

footer a {
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}

footer a:hover {
  color: hsl(112, 68%, 60%);
  transform: translateX(5px);
}

footer .company-description {
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
  line-height: 1.7;
}

footer .contact-info {
  list-style: none;
  padding: 0;
  margin: 0;
}

footer .contact-info li {
  margin-bottom: 0.8rem;
  display: flex;
  align-items: flex-start;
}

footer .contact-info li i {
  margin-right: 0.75rem;
  color: hsl(112, 68%, 60%);
  margin-top: 0.2rem;
  min-width: 20px;
}

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

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

footer .footer-links a {
  color: #f8f9fa;
  padding: 0.3rem 0;
}

footer .footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 3rem;
  padding-top: 2rem;
  text-align: center;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
}

footer .business-hours {
  background: rgba(0, 0, 0, 0.2);
  padding: 1rem;
  border-radius: 8px;
  margin-top: 1rem;
}

footer .business-hours p {
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}

footer .business-hours p:last-child {
  margin-bottom: 0;
}

#cookieNotice {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #ffffff;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
  z-index: 9999;
  padding: 2rem 0;
  border-top: 4px solid hsl(112, 68%, 35%);
  animation: slideUp 0.5s ease-out;
}

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

#cookieNotice h4 {
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  color: #222;
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

#cookieNotice p {
  font-family: 'Merriweather', serif;
  color: #555;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

#cookieNotice .cookie-categories {
  background: #f8f9fa;
  border-radius: 8px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}

#cookieNotice .cookie-category {
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #dee2e6;
}

#cookieNotice .cookie-category:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

#cookieNotice .cookie-category h6 {
  font-family: 'Lato', sans-serif;
  font-weight: 600;
  color: #333;
  margin-bottom: 0.5rem;
  font-size: 1rem;
}

#cookieNotice .cookie-category p {
  margin-bottom: 0;
  font-size: 0.9rem;
  color: #666;
}

#cookieNotice .cookie-category .badge {
  font-size: 0.75rem;
  padding: 0.35rem 0.65rem;
  margin-left: 0.5rem;
}

#cookieNotice .btn-accept-all {
  background: hsl(112, 68%, 35%);
  border: none;
  color: #ffffff;
  padding: 0.75rem 2rem;
  font-family: 'Lato', sans-serif;
  font-weight: 600;
  border-radius: 6px;
  transition: all 0.3s ease;
  font-size: 1rem;
}

#cookieNotice .btn-accept-all:hover {
  background: hsl(112, 68%, 30%);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

#cookieNotice .btn-reject {
  background: #6c757d;
  border: none;
  color: #ffffff;
  padding: 0.75rem 2rem;
  font-family: 'Lato', sans-serif;
  font-weight: 600;
  border-radius: 6px;
  transition: all 0.3s ease;
  font-size: 1rem;
}

#cookieNotice .btn-reject:hover {
  background: #5a6268;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

#cookieNotice .btn-manage {
  background: transparent;
  border: 2px solid hsl(112, 68%, 35%);
  color: hsl(112, 68%, 35%);
  padding: 0.75rem 2rem;
  font-family: 'Lato', sans-serif;
  font-weight: 600;
  border-radius: 6px;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  font-size: 1rem;
}

#cookieNotice .btn-manage:hover {
  background: hsl(112, 68%, 35%);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

#cookieNotice .cookie-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
}

@media (max-width: 768px) {
  #cookieNotice {
    padding: 1.5rem 0;
  }

  #cookieNotice h4 {
    font-size: 1.25rem;
  }

  #cookieNotice .cookie-buttons {
    flex-direction: column;
    width: 100%;
  }

  #cookieNotice .cookie-buttons button,
  #cookieNotice .cookie-buttons a {
    width: 100%;
    text-align: center;
  }

  footer {
    padding: 3rem 0 1.5rem;
  }

  footer h5 {
    margin-top: 2rem;
  }

  footer h5:first-child {
    margin-top: 0;
  }
}

.blog-page { padding: 4rem 0; }
.blog-page h1 { margin-bottom: 3rem; text-align: center; }
.blog-card { margin-bottom: 2rem; transition: transform 0.3s; overflow: hidden; }
.blog-card:hover { transform: translateY(-5px); }
.blog-card .card-img-top { height: 200px; object-fit: cover; }
.blog-meta { font-size: 0.9rem; color: #888; margin-bottom: 1rem; }

.article-content { max-width: 900px; margin: 0 auto; padding: 4rem 2rem; font-family: Merriweather, sans-serif; }
.article-header { margin-bottom: 3rem; border-bottom: 2px solid hsl(112, 68%, 35%)20; padding-bottom: 2rem; }
.article-header h1 { font-size: 2.5rem; margin-bottom: 1rem; font-family: Lato, sans-serif; color: hsl(112, 68%, 20%); }
.article-meta { color: #666; font-size: 0.95rem; margin-bottom: 1.5rem; }
.article-meta i { color: hsl(112, 68%, 35%); }
.article-hero-img { width: 100%; height: auto; border-radius: 12px; margin-bottom: 2rem; box-shadow: 0 4px 15px rgba(0,0,0,0.1); }
.blog-article h2 { color: hsl(112, 68%, 20%); font-family: Lato, sans-serif; margin-top: 2rem; }
.blog-article h3 { color: hsl(112, 68%, 20%); font-family: Lato, sans-serif; }
.blog-article a { color: hsl(112, 68%, 35%); }
.blog-article a:hover { color: hsl(112, 68%, 60%); }
.blog-article ul, .blog-article ol { margin: 1rem 0; padding-left: 1.5rem; }
.blog-article blockquote { border-left: 4px solid hsl(112, 68%, 35%); padding-left: 1rem; margin: 1.5rem 0; font-style: italic; color: #555; }

.contact-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    font-family: 'Merriweather', serif;
}

.contact-section h2 {
    font-family: 'Lato', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 1rem;
    text-align: center;
}

.contact-section .section-subtitle {
    font-size: 1.1rem;
    color: #555;
    text-align: center;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.contact-info-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    height: 100%;
    border-left: 4px solid hsl(112, 68%, 35%);
}

.contact-info-item {
    margin-bottom: 2rem;
}

.contact-info-item:last-child {
    margin-bottom: 0;
}

.contact-info-item .icon-wrapper {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, hsl(112, 68%, 35%) 0%, hsl(112, 68%, 45%) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.contact-info-item .icon-wrapper i {
    color: #ffffff;
    font-size: 1.5rem;
}

.contact-info-item h4 {
    font-family: 'Lato', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: #222;
    margin-bottom: 0.5rem;
}

.contact-info-item p {
    color: #555;
    margin-bottom: 0.3rem;
    font-size: 0.95rem;
    line-height: 1.6;
}

.contact-info-item a {
    color: hsl(112, 68%, 35%);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.contact-info-item a:hover {
    color: hsl(112, 68%, 25%);
    text-decoration: underline;
}

.contact-form-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 2.5rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.contact-form-card h3 {
    font-family: 'Lato', sans-serif;
    font-size: 1.8rem;
    font-weight: 600;
    color: #222;
    margin-bottom: 1.5rem;
}

.form-label {
    font-family: 'Lato', sans-serif;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.form-control, .form-select {
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    padding: 0.75rem 1rem;
    font-family: 'Merriweather', serif;
    font-size: 0.95rem;
    color: #333;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-control:focus, .form-select:focus {
    border-color: hsl(112, 68%, 35%);
    box-shadow: 0 0 0 0.2rem rgba(76, 153, 60, 0.15);
    outline: none;
}

.form-control::placeholder {
    color: #999;
}

textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

.btn-submit {
    background: linear-gradient(135deg, hsl(112, 68%, 35%) 0%, hsl(112, 68%, 45%) 100%);
    color: #ffffff;
    border: none;
    padding: 0.9rem 2.5rem;
    font-family: 'Lato', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: 100%;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(76, 153, 60, 0.3);
    background: linear-gradient(135deg, hsl(112, 68%, 30%) 0%, hsl(112, 68%, 40%) 100%);
}

.required-field::after {
    content: " *";
    color: #dc3545;
}

.working-hours-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.working-hours-list li {
    padding: 0.4rem 0;
    color: #555;
    font-size: 0.95rem;
    border-bottom: 1px solid #f0f0f0;
}

.working-hours-list li:last-child {
    border-bottom: none;
}

.working-hours-list strong {
    color: #333;
    font-weight: 600;
}

@media (max-width: 991px) {
    .contact-section {
        padding: 60px 0;
    }
    
    .contact-section h2 {
        font-size: 2rem;
    }
    
    .contact-info-card {
        margin-bottom: 2rem;
    }
}

@media (max-width: 576px) {
    .contact-section {
        padding: 50px 0;
    }
    
    .contact-section h2 {
        font-size: 1.75rem;
    }
    
    .contact-form-card {
        padding: 1.5rem;
    }
    
    .btn-submit {
        padding: 0.8rem 2rem;
    }
}

@import url('https://fonts.googleapis.com/css2?family=Lato:wght@300;400;700;900&family=Merriweather:wght@300;400;700&display=swap');

  :root {
    --primary-color: hsl(112, 68%, 35%);
    --secondary-color: hsl(112, 68%, 20%);
    --accent-color: hsl(112, 68%, 60%);
  }

  body {
    font-family: 'Merriweather', serif;
    color: #333;
    line-height: 1.8;
  }

  h1, h2, h3, h4, h5, h6 {
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    color: var(--secondary-color);
  }

  .policy-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 4px solid var(--primary-color);
    color: var(--primary-color);
    font-weight: 900;
  }

  .policy-content h2 {
    font-size: 1.8rem;
    margin-top: 2.5rem;
    margin-bottom: 1.2rem;
    color: var(--secondary-color);
    position: relative;
    padding-left: 20px;
  }

  .policy-content h2::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 70%;
    background-color: var(--accent-color);
    border-radius: 3px;
  }

  .policy-content h3 {
    font-size: 1.3rem;
    margin-top: 1.8rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
  }

  .policy-content p {
    margin-bottom: 1.2rem;
    text-align: justify;
  }

  .policy-content a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
  }

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

  .policy-content ul, .policy-content ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
  }

  .policy-content li {
    margin-bottom: 0.8rem;
  }

  .info-box {
    background-color: hsl(112, 68%, 95%);
    border-left: 5px solid var(--primary-color);
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 0 8px 8px 0;
  }

  .contact-box {
    background-color: hsl(112, 68%, 98%);
    border: 2px solid var(--accent-color);
    padding: 2rem;
    margin: 2.5rem 0;
    border-radius: 10px;
  }

  .contact-box h3 {
    margin-top: 0;
    color: var(--primary-color);
  }

  .last-updated {
    font-style: italic;
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 2rem;
  }

  .cookie-table {
    margin: 1.5rem 0;
  }

  .cookie-table th {
    background-color: var(--primary-color);
    color: white;
    font-family: 'Lato', sans-serif;
    font-weight: 700;
  }

  .cookie-table td {
    vertical-align: middle;
  }

  .cookie-table tbody tr:hover {
    background-color: hsl(112, 68%, 97%);
  }

.faq-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  font-family: 'Merriweather', serif;
}

.faq-section h2 {
  font-family: 'Lato', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 1rem;
  text-align: center;
}

.faq-section .section-subtitle {
  font-size: 1.1rem;
  color: #555;
  text-align: center;
  margin-bottom: 3rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.faq-accordion {
  max-width: 900px;
  margin: 0 auto;
}

.faq-accordion .accordion-item {
  border: none;
  margin-bottom: 1.5rem;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 3px 15px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
}

.faq-accordion .accordion-item:hover {
  box-shadow: 0 5px 25px rgba(0,0,0,0.12);
  transform: translateY(-2px);
}

.faq-accordion .accordion-button {
  font-family: 'Lato', sans-serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: #222;
  background-color: #ffffff;
  padding: 1.5rem 1.75rem;
  border: none;
  transition: all 0.3s ease;
}

.faq-accordion .accordion-button:not(.collapsed) {
  background-color: hsl(112, 68%, 35%);
  color: #ffffff;
  box-shadow: none;
}

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

.faq-accordion .accordion-button::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23222'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
  transition: transform 0.3s ease;
}

.faq-accordion .accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.faq-accordion .accordion-body {
  padding: 1.75rem;
  background-color: #ffffff;
  color: #444;
  font-size: 1rem;
  line-height: 1.8;
  border-top: 1px solid #e9ecef;
}

.faq-accordion .accordion-body p {
  margin-bottom: 1rem;
}

.faq-accordion .accordion-body p:last-child {
  margin-bottom: 0;
}

.faq-accordion .accordion-body strong {
  color: hsl(112, 68%, 35%);
  font-weight: 600;
}

.faq-icon {
  display: inline-block;
  width: 24px;
  height: 24px;
  margin-right: 10px;
  color: hsl(112, 68%, 35%);
}

.faq-accordion .accordion-button:not(.collapsed) .faq-icon {
  color: #ffffff;
}

@media (max-width: 768px) {
  .faq-section {
    padding: 60px 0;
  }

  .faq-section h2 {
    font-size: 2rem;
  }

  .faq-section .section-subtitle {
    font-size: 1rem;
    margin-bottom: 2rem;
  }

  .faq-accordion .accordion-button {
    font-size: 1.05rem;
    padding: 1.25rem 1.25rem;
  }

  .faq-accordion .accordion-body {
    padding: 1.25rem;
    font-size: 0.95rem;
  }
}

.newsletter-section {
    background: linear-gradient(135deg, hsl(112, 68%, 35%) 0%, hsl(112, 68%, 20%) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.newsletter-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.newsletter-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 50%;
}

.newsletter-content {
    position: relative;
    z-index: 2;
}

.newsletter-heading {
    font-family: 'Lato', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    text-align: center;
}

.newsletter-description {
    font-family: 'Merriweather', serif;
    font-size: 1.1rem;
    color: #f8f9fa;
    text-align: center;
    max-width: 700px;
    margin: 0 auto 40px;
    line-height: 1.7;
}

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

.newsletter-input-group {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.newsletter-email-input {
    flex: 1;
    min-width: 250px;
    padding: 16px 24px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    font-family: 'Merriweather', serif;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.95);
    color: #333;
    transition: all 0.3s ease;
}

.newsletter-email-input:focus {
    outline: none;
    border-color: hsl(112, 68%, 60%);
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.1);
}

.newsletter-email-input::placeholder {
    color: #666;
    opacity: 0.7;
}

.newsletter-submit-btn {
    padding: 16px 40px;
    background: hsl(112, 68%, 60%);
    color: #222;
    border: none;
    border-radius: 50px;
    font-family: 'Lato', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.newsletter-submit-btn:hover {
    background: hsl(112, 68%, 65%);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.newsletter-submit-btn:active {
    transform: translateY(0);
}

.newsletter-benefits {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.newsletter-benefit-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #f8f9fa;
    font-family: 'Merriweather', serif;
    font-size: 0.95rem;
}

.newsletter-benefit-icon {
    width: 24px;
    height: 24px;
    background: hsl(112, 68%, 60%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.newsletter-benefit-icon::before {
    content: '✓';
    color: #222;
    font-weight: bold;
    font-size: 14px;
}

@media (max-width: 768px) {
    .newsletter-section {
        padding: 60px 0;
    }

    .newsletter-heading {
        font-size: 2rem;
    }

    .newsletter-description {
        font-size: 1rem;
        margin-bottom: 30px;
    }

    .newsletter-input-group {
        flex-direction: column;
        gap: 15px;
    }

    .newsletter-email-input {
        min-width: 100%;
    }

    .newsletter-submit-btn {
        width: 100%;
    }

    .newsletter-benefits {
        gap: 20px;
        margin-top: 30px;
    }

    .newsletter-benefit-item {
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .newsletter-heading {
        font-size: 1.75rem;
    }

    .newsletter-benefits {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
}

:root {
    --primary-color: hsl(112, 68%, 35%);
    --secondary-color: hsl(112, 68%, 20%);
    --accent-color: hsl(112, 68%, 60%);
  }

  .hero-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 80px 0 60px;
    position: relative;
    overflow: hidden;
  }

  .hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: var(--accent-color);
    opacity: 0.05;
    border-radius: 50%;
    z-index: 0;
  }

  .hero-content {
    position: relative;
    z-index: 1;
  }

  .hero-section h1 {
    font-family: 'Lato', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 1.5rem;
    line-height: 1.2;
  }

  .hero-section h2 {
    font-family: 'Lato', sans-serif;
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--primary-color);
    margin-bottom: 2rem;
    line-height: 1.4;
  }

  .hero-description {
    font-family: 'Merriweather', serif;
    font-size: 1.05rem;
    color: #444;
    line-height: 1.8;
    margin-bottom: 2rem;
    text-align: justify;
  }

  .hero-advantages {
    list-style: none;
    padding: 0;
    margin: 2.5rem 0;
  }

  .hero-advantages li {
    font-family: 'Merriweather', serif;
    font-size: 1rem;
    color: #333;
    padding: 0.75rem 0;
    padding-left: 2.5rem;
    position: relative;
    line-height: 1.6;
  }

  .hero-advantages li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    background-color: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .hero-advantages li::after {
    content: '✓';
    position: absolute;
    left: 7px;
    top: 50%;
    transform: translateY(-50%);
    color: #fff;
    font-weight: bold;
    font-size: 0.9rem;
  }

  .hero-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 2.5rem;
    flex-wrap: wrap;
  }

  .hero-btn-primary {
    font-family: 'Lato', sans-serif;
    background-color: var(--primary-color);
    color: #fff;
    padding: 14px 36px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    border: 2px solid var(--primary-color);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
  }

  .hero-btn-primary:hover {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  }

  .hero-btn-secondary {
    font-family: 'Lato', sans-serif;
    background-color: transparent;
    color: var(--primary-color);
    padding: 14px 36px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    border: 2px solid var(--primary-color);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
  }

  .hero-btn-secondary:hover {
    background-color: var(--primary-color);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  }

  .hero-image-wrapper {
    margin-top: 3rem;
    position: relative;
  }

  .hero-image-wrapper img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  }

  @media (max-width: 768px) {
    .hero-section {
      padding: 60px 0 40px;
    }

    .hero-section h1 {
      font-size: 2.2rem;
    }

    .hero-section h2 {
      font-size: 1.25rem;
    }

    .hero-description {
      font-size: 1rem;
    }

    .hero-buttons {
      flex-direction: column;
    }

    .hero-btn-primary,
    .hero-btn-secondary {
      width: 100%;
      justify-content: center;
    }

    .hero-advantages li {
      font-size: 0.95rem;
    }
  }

  @media (max-width: 576px) {
    .hero-section h1 {
      font-size: 1.8rem;
    }

    .hero-section h2 {
      font-size: 1.1rem;
    }
  }

.services-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    font-family: 'Merriweather', serif;
}

.services-section h2 {
    font-family: 'Lato', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 1rem;
    text-align: center;
}

.services-section .lead-text {
    font-size: 1.1rem;
    color: #555;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    line-height: 1.8;
}

.service-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 2.5rem 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    border: 2px solid transparent;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(50, 125, 40, 0.15);
    border-color: hsl(112, 68%, 60%);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, hsl(112, 68%, 35%) 0%, hsl(112, 68%, 45%) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.4s ease;
}

.service-card:hover .service-icon {
    background: linear-gradient(135deg, hsl(112, 68%, 60%) 0%, hsl(112, 68%, 50%) 100%);
    transform: rotate(360deg);
}

.service-icon i {
    font-size: 2rem;
    color: #ffffff;
}

.service-card h3 {
    font-family: 'Lato', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 1rem;
}

.service-card p {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.service-price {
    font-family: 'Lato', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: hsl(112, 68%, 35%);
    margin-bottom: 0.5rem;
}

.service-term {
    font-size: 0.85rem;
    color: #777;
    margin-bottom: 1.5rem;
}

.service-btn {
    background: hsl(112, 68%, 35%);
    color: #ffffff;
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 6px;
    font-family: 'Lato', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.service-btn:hover {
    background: hsl(112, 68%, 20%);
    color: #ffffff;
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .services-section {
        padding: 60px 0;
    }
    
    .services-section h2 {
        font-size: 2rem;
    }
    
    .service-card {
        padding: 2rem 1.5rem;
    }
}

.testimonials-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  font-family: 'Merriweather', serif;
}

.testimonials-section h2 {
  font-family: 'Lato', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 1rem;
  text-align: center;
}

.testimonials-section .lead {
  color: #555;
  text-align: center;
  margin-bottom: 3rem;
  font-size: 1.1rem;
}

.testimonial-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  border-left: 4px solid hsl(112, 68%, 35%);
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

.testimonial-card.style-2 {
  border-left: none;
  border-top: 4px solid hsl(112, 68%, 60%);
  background: linear-gradient(to bottom, #f8f9fa 0%, #ffffff 100%);
}

.testimonial-card.style-3 {
  border-left: none;
  border-radius: 20px;
  background: #ffffff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.testimonial-header {
  display: flex;
  align-items: center;
  margin-bottom: 1.2rem;
  gap: 1rem;
}

.testimonial-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, hsl(112, 68%, 35%) 0%, hsl(112, 68%, 60%) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Lato', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff;
  flex-shrink: 0;
}

.testimonial-info h5 {
  font-family: 'Lato', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 0.3rem;
}

.testimonial-location {
  font-size: 0.9rem;
  color: #666;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.testimonial-location i {
  color: hsl(112, 68%, 35%);
  font-size: 0.85rem;
}

.testimonial-rating {
  display: flex;
  gap: 0.2rem;
  margin-bottom: 1rem;
}

.star {
  color: #ffc107;
  font-size: 1.1rem;
}

.star.empty {
  color: #ddd;
}

.testimonial-text {
  color: #333;
  line-height: 1.8;
  font-size: 0.95rem;
  flex-grow: 1;
  margin-bottom: 1rem;
}

.testimonial-text.short {
  font-size: 1rem;
  font-style: italic;
}

.testimonial-text.long {
  font-size: 0.9rem;
}

.testimonial-date {
  font-size: 0.85rem;
  color: #888;
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid #eee;
}

.testimonial-highlight {
  background: hsl(112, 68%, 95%);
  padding: 0.8rem 1rem;
  border-radius: 8px;
  margin-top: 1rem;
  font-size: 0.9rem;
  color: hsl(112, 68%, 20%);
  font-weight: 600;
}

.rating-summary {
  background: #ffffff;
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 3rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  text-align: center;
}

.rating-summary h3 {
  font-family: 'Lato', sans-serif;
  font-size: 3rem;
  font-weight: 700;
  color: hsl(112, 68%, 35%);
  margin-bottom: 0.5rem;
}

.rating-summary .total-reviews {
  color: #666;
  font-size: 1rem;
  margin-bottom: 1rem;
}

.rating-bars {
  max-width: 400px;
  margin: 0 auto;
}

.rating-bar-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.8rem;
}

.rating-bar-label {
  font-size: 0.9rem;
  color: #555;
  min-width: 60px;
}

.rating-bar-bg {
  flex-grow: 1;
  height: 8px;
  background: #e9ecef;
  border-radius: 4px;
  overflow: hidden;
}

.rating-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, hsl(112, 68%, 35%) 0%, hsl(112, 68%, 60%) 100%);
  border-radius: 4px;
  transition: width 0.5s ease;
}

.rating-bar-count {
  font-size: 0.85rem;
  color: #888;
  min-width: 40px;
  text-align: right;
}

@media (max-width: 768px) {
  .testimonials-section {
    padding: 60px 0;
  }
  
  .testimonials-section h2 {
    font-size: 2rem;
  }
  
  .testimonial-card {
    padding: 1.5rem;
  }
  
  .testimonial-avatar {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
  }
}

.blog-preview-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    font-family: 'Merriweather', serif;
  }

  .blog-preview-section h2 {
    font-family: 'Lato', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 1rem;
    text-align: center;
  }

  .blog-preview-section .section-subtitle {
    font-size: 1.1rem;
    color: #555;
    text-align: center;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
  }

  .blog-card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid #e9ecef;
  }

  .blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
  }

  .blog-card-image {
    width: 100%;
    height: 240px;
    object-fit: cover;
    transition: transform 0.4s ease;
  }

  .blog-card:hover .blog-card-image {
    transform: scale(1.05);
  }

  .blog-card-body {
    padding: 1.75rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
  }

  .blog-meta {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    margin-bottom: 1rem;
    font-size: 0.875rem;
    color: #666;
    flex-wrap: wrap;
  }

  .blog-meta-item {
    display: flex;
    align-items: center;
    gap: 0.4rem;
  }

  .blog-meta-icon {
    width: 16px;
    height: 16px;
    color: hsl(112, 68%, 35%);
  }

  .blog-card-title {
    font-family: 'Lato', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 1rem;
    line-height: 1.4;
  }

  .blog-card-title a {
    color: #222;
    text-decoration: none;
    transition: color 0.3s ease;
  }

  .blog-card-title a:hover {
    color: hsl(112, 68%, 35%);
  }

  .blog-card-excerpt {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    flex-grow: 1;
  }

  .blog-read-more {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: hsl(112, 68%, 35%);
    font-weight: 600;
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
  }

  .blog-read-more:hover {
    color: hsl(112, 68%, 25%);
    gap: 0.75rem;
  }

  .blog-read-more svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
  }

  .blog-read-more:hover svg {
    transform: translateX(4px);
  }

  .view-all-btn {
    display: inline-block;
    margin-top: 3rem;
    padding: 14px 40px;
    background: hsl(112, 68%, 35%);
    color: #ffffff;
    font-family: 'Lato', sans-serif;
    font-size: 1.05rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    border: 2px solid hsl(112, 68%, 35%);
  }

  .view-all-btn:hover {
    background: hsl(112, 68%, 25%);
    border-color: hsl(112, 68%, 25%);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  }

  .text-center {
    text-align: center;
  }

  @media (max-width: 768px) {
    .blog-preview-section {
      padding: 60px 0;
    }

    .blog-preview-section h2 {
      font-size: 2rem;
    }

    .blog-card-image {
      height: 200px;
    }

    .blog-card-title {
      font-size: 1.2rem;
    }

    .blog-meta {
      gap: 1rem;
    }
  }

.offer-section {
  background: linear-gradient(135deg, hsl(112, 68%, 35%) 0%, hsl(112, 68%, 20%) 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.offer-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: hsl(112, 68%, 60%);
  opacity: 0.1;
  border-radius: 50%;
}

.offer-section::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: hsl(112, 68%, 60%);
  opacity: 0.08;
  border-radius: 50%;
}

.offer-container {
  position: relative;
  z-index: 2;
}

.offer-badge {
  display: inline-block;
  background: hsl(112, 68%, 60%);
  color: #fff;
  padding: 8px 24px;
  border-radius: 50px;
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.offer-title {
  font-family: 'Lato', sans-serif;
  font-size: 48px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 24px;
  line-height: 1.2;
}

.offer-description {
  font-family: 'Merriweather', serif;
  font-size: 18px;
  color: #f8f9fa;
  line-height: 1.8;
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.offer-card {
  background: #fff;
  border-radius: 20px;
  padding: 50px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  margin-top: 40px;
}

.deadline-section {
  background: linear-gradient(135deg, hsl(112, 68%, 60%) 0%, hsl(112, 68%, 45%) 100%);
  border-radius: 15px;
  padding: 40px;
  margin-bottom: 40px;
  text-align: center;
}

.deadline-label {
  font-family: 'Lato', sans-serif;
  font-size: 18px;
  color: #fff;
  margin-bottom: 15px;
  font-weight: 600;
}

.deadline-date {
  font-family: 'Lato', sans-serif;
  font-size: 56px;
  font-weight: 700;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.calendar-icon {
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
}

.benefits-title {
  font-family: 'Lato', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: #222;
  margin-bottom: 30px;
  text-align: center;
}

.benefits-list {
  list-style: none;
  padding: 0;
  margin: 0 0 40px 0;
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 25px;
  padding: 20px;
  background: #f8f9fa;
  border-radius: 12px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-item:hover {
  transform: translateX(10px);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, hsl(112, 68%, 35%) 0%, hsl(112, 68%, 45%) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 24px;
  flex-shrink: 0;
}

.benefit-text {
  font-family: 'Merriweather', serif;
  font-size: 16px;
  color: #333;
  line-height: 1.6;
  margin: 0;
  padding-top: 8px;
}

.discount-badge {
  display: inline-block;
  background: hsl(112, 68%, 35%);
  color: #fff;
  font-family: 'Lato', sans-serif;
  font-size: 72px;
  font-weight: 700;
  padding: 30px 50px;
  border-radius: 20px;
  margin: 20px 0 40px 0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  position: relative;
}

.discount-badge::after {
  content: 'RABAT';
  position: absolute;
  top: -15px;
  right: -15px;
  background: hsl(112, 68%, 60%);
  color: #fff;
  font-size: 14px;
  padding: 5px 15px;
  border-radius: 20px;
  font-weight: 600;
}

.offer-cta {
  text-align: center;
}

.cta-button {
  display: inline-block;
  background: linear-gradient(135deg, hsl(112, 68%, 35%) 0%, hsl(112, 68%, 45%) 100%);
  color: #fff;
  font-family: 'Lato', sans-serif;
  font-size: 20px;
  font-weight: 700;
  padding: 18px 60px;
  border-radius: 50px;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
  color: #fff;
}

@media (max-width: 768px) {
  .offer-section {
    padding: 60px 0;
  }
  
  .offer-title {
    font-size: 36px;
  }
  
  .offer-description {
    font-size: 16px;
  }
  
  .offer-card {
    padding: 30px 20px;
  }
  
  .deadline-date {
    font-size: 36px;
    flex-direction: column;
  }
  
  .discount-badge {
    font-size: 48px;
    padding: 20px 30px;
  }
  
  .benefits-title {
    font-size: 24px;
  }
  
  .benefit-item {
    flex-direction: column;
    text-align: center;
  }
  
  .cta-button {
    font-size: 18px;
    padding: 15px 40px;
  }
}

#credentials {
    padding: 60px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    font-family: 'Merriweather', serif;
  }

  #credentials h2 {
    font-family: 'Lato', sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: #222;
    text-align: center;
    margin-bottom: 15px;
  }

  #credentials .subtitle {
    text-align: center;
    color: #666;
    font-size: 1rem;
    margin-bottom: 45px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
  }

  .credential-card {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 25px 15px;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .credential-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    border-color: hsl(112, 68%, 35%);
  }

  .credential-icon {
    font-size: 2.5rem;
    color: #28a745;
    margin-bottom: 15px;
  }

  .credential-card h5 {
    font-family: 'Lato', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: #333;
    margin: 0;
    line-height: 1.4;
  }

  @media (max-width: 991px) {
    #credentials {
      padding: 50px 0;
    }

    #credentials h2 {
      font-size: 1.9rem;
    }

    .credential-card {
      margin-bottom: 20px;
    }
  }

  @media (max-width: 767px) {
    #credentials {
      padding: 40px 0;
    }

    #credentials h2 {
      font-size: 1.7rem;
    }

    .credential-icon {
      font-size: 2.2rem;
    }

    .credential-card h5 {
      font-size: 0.95rem;
    }
  }

.disclaimer-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 80px 0;
  font-family: 'Merriweather', serif;
}

.disclaimer-section .container {
  max-width: 900px;
}

.disclaimer-icon {
  width: 80px;
  height: 80px;
  background: hsl(112, 68%, 35%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 30px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.disclaimer-icon i {
  font-size: 40px;
  color: #ffffff;
}

.disclaimer-title {
  font-family: 'Lato', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #222;
  text-align: center;
  margin-bottom: 40px;
}

.disclaimer-content {
  background: #ffffff;
  padding: 50px;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  border-left: 5px solid hsl(112, 68%, 35%);
}

.disclaimer-text {
  font-size: 1.05rem;
  line-height: 1.9;
  color: #333;
  text-align: justify;
  margin: 0;
}

@media (max-width: 768px) {
  .disclaimer-section {
    padding: 60px 0;
  }

  .disclaimer-title {
    font-size: 2rem;
  }

  .disclaimer-content {
    padding: 30px 25px;
  }

  .disclaimer-text {
    font-size: 1rem;
    text-align: left;
  }

  .disclaimer-icon {
    width: 65px;
    height: 65px;
  }

  .disclaimer-icon i {
    font-size: 32px;
  }
}

@import url('https://fonts.googleapis.com/css2?family=Lato:wght@400;700;900&family=Merriweather:wght@300;400;700&display=swap');

  :root {
    --primary-color: hsl(112, 68%, 35%);
    --secondary-color: hsl(112, 68%, 20%);
    --accent-color: hsl(112, 68%, 60%);
  }

  body {
    font-family: 'Merriweather', serif;
    color: #333;
    line-height: 1.8;
  }

  h1, h2, h3, h4, h5, h6 {
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    color: var(--secondary-color);
  }

  .policy-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 3rem 0;
    margin-bottom: 2rem;
    border-radius: 0.5rem;
  }

  .policy-header h1 {
    color: white;
    font-weight: 900;
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
  }

  .policy-header p {
    font-size: 1.1rem;
    opacity: 0.95;
  }

  .policy-content h2 {
    color: var(--primary-color);
    font-size: 2rem;
    margin-top: 2.5rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 3px solid var(--accent-color);
  }

  .policy-content h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
  }

  .policy-content p {
    margin-bottom: 1.2rem;
    text-align: justify;
  }

  .policy-content ul, .policy-content ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
  }

  .policy-content li {
    margin-bottom: 0.8rem;
  }

  .policy-content a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 700;
    transition: color 0.3s ease;
  }

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

  .contact-box {
    background-color: #f8f9fa;
    border-left: 5px solid var(--primary-color);
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 0.5rem;
  }

  .contact-box h3 {
    margin-top: 0;
    color: var(--secondary-color);
  }

  .highlight-box {
    background-color: rgba(112, 168, 60, 0.1);
    border: 2px solid var(--accent-color);
    padding: 1.5rem;
    margin: 1.5rem 0;
    border-radius: 0.5rem;
  }

  .effective-date {
    background-color: var(--accent-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 0.3rem;
    display: inline-block;
    font-weight: 700;
    margin-bottom: 1rem;
  }

@import url('https://fonts.googleapis.com/css2?family=Lato:wght@300;400;700;900&family=Merriweather:wght@300;400;700&display=swap');
    
    :root {
        --primary-color: hsl(112, 68%, 35%);
        --secondary-color: hsl(112, 68%, 20%);
        --accent-color: hsl(112, 68%, 60%);
    }
    
    .policy-content {
        font-family: 'Merriweather', serif;
        color: #333;
        line-height: 1.8;
    }
    
    .policy-content h1,
    .policy-content h2,
    .policy-content h3,
    .policy-content h4 {
        font-family: 'Lato', sans-serif;
        font-weight: 700;
        color: var(--secondary-color);
    }
    
    .policy-content h1 {
        font-size: 2.5rem;
        margin-bottom: 1.5rem;
        padding-bottom: 1rem;
        border-bottom: 4px solid var(--primary-color);
        font-weight: 900;
    }
    
    .policy-content h2 {
        font-size: 1.75rem;
        margin-top: 2.5rem;
        margin-bottom: 1.25rem;
        color: var(--primary-color);
        position: relative;
        padding-left: 20px;
    }
    
    .policy-content h2::before {
        content: '';
        position: absolute;
        left: 0;
        top: 50%;
        transform: translateY(-50%);
        width: 6px;
        height: 80%;
        background-color: var(--accent-color);
        border-radius: 3px;
    }
    
    .policy-content h3 {
        font-size: 1.35rem;
        margin-top: 1.75rem;
        margin-bottom: 1rem;
        color: var(--primary-color);
    }
    
    .policy-content p {
        margin-bottom: 1.25rem;
        text-align: justify;
    }
    
    .policy-content a {
        color: var(--primary-color);
        text-decoration: none;
        font-weight: 600;
        transition: all 0.3s ease;
        border-bottom: 2px solid transparent;
    }
    
    .policy-content a:hover {
        color: var(--accent-color);
        border-bottom: 2px solid var(--accent-color);
    }
    
    .policy-content ul,
    .policy-content ol {
        margin-bottom: 1.5rem;
        padding-left: 2rem;
    }
    
    .policy-content li {
        margin-bottom: 0.75rem;
    }
    
    .policy-content strong {
        color: var(--secondary-color);
        font-weight: 700;
    }
    
    .info-box {
        background-color: hsl(112, 68%, 95%);
        border-left: 5px solid var(--primary-color);
        padding: 1.5rem;
        margin: 2rem 0;
        border-radius: 0 8px 8px 0;
    }
    
    .contact-info {
        background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
        color: white;
        padding: 2rem;
        border-radius: 10px;
        margin-top: 3rem;
    }
    
    .contact-info h3 {
        color: white;
        margin-top: 0;
    }
    
    .contact-info a {
        color: var(--accent-color);
        border-bottom-color: var(--accent-color);
    }
    
    .contact-info a:hover {
        color: white;
        border-bottom-color: white;
    }
    
    .last-updated {
        font-style: italic;
        color: #666;
        font-size: 0.95rem;
        margin-top: 1rem;
    }