:root {
            --primary-color: hsl(163, 52%, 45%);
            --secondary-color: hsl(163, 52%, 30%);
            --accent-color: hsl(163, 52%, 70%);
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Libre Baskerville', serif;
            color: #333;
            line-height: 1.6;
        }
        
        h1, h2, h3, h4, h5, h6 {
            font-family: 'Quicksand', sans-serif;
            font-weight: 600;
        }
        
        .navbar {
            background-color: #fff;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            padding: 1rem 0;
        }
        
        .navbar-brand {
            display: flex;
            align-items: center;
            font-family: 'Quicksand', sans-serif;
            font-weight: 700;
            font-size: 1.5rem;
            color: var(--secondary-color);
            text-decoration: none;
        }
        
        .navbar-brand:hover {
            color: var(--primary-color);
        }
        
        .navbar-brand img {
            margin-right: 12px;
        }
        
        .navbar-nav .nav-link {
            font-family: 'Quicksand', sans-serif;
            font-weight: 500;
            color: #333;
            padding: 0.5rem 1rem;
            transition: color 0.3s ease;
        }
        
        .navbar-nav .nav-link:hover {
            color: var(--primary-color);
        }
        
        .navbar-toggler {
            border-color: var(--primary-color);
        }
        
        .navbar-toggler:focus {
            box-shadow: 0 0 0 0.25rem rgba(52, 168, 142, 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='rgba(52, 168, 142, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }

@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@400;600;700&family=Libre+Baskerville:wght@400;700&display=swap');

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

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

#about .section-header h2 {
  font-family: 'Quicksand', sans-serif;
  font-weight: 700;
  font-size: 2.8rem;
  color: hsl(163, 52%, 30%);
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
}

#about .section-header h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: hsl(163, 52%, 45%);
  border-radius: 2px;
}

#about .section-header p {
  font-size: 1.1rem;
  color: #555;
  max-width: 700px;
  margin: 30px auto 0;
  line-height: 1.8;
}

#about .about-content {
  margin-bottom: 50px;
}

#about .about-image {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  height: 100%;
  min-height: 350px;
}

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

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

#about .about-text {
  padding: 20px 0;
}

#about .about-text h3 {
  font-family: 'Quicksand', sans-serif;
  font-weight: 600;
  font-size: 1.9rem;
  color: hsl(163, 52%, 30%);
  margin-bottom: 25px;
}

#about .about-text p {
  font-size: 1.05rem;
  line-height: 1.9;
  color: #444;
  margin-bottom: 20px;
  text-align: justify;
}

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

#about .value-card {
  background: #ffffff;
  padding: 35px 25px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  border-left: 4px solid hsl(163, 52%, 45%);
}

#about .value-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

#about .value-card h4 {
  font-family: 'Quicksand', sans-serif;
  font-weight: 600;
  font-size: 1.4rem;
  color: hsl(163, 52%, 30%);
  margin-bottom: 15px;
}

#about .value-card p {
  font-size: 0.98rem;
  line-height: 1.7;
  color: #555;
  margin: 0;
}

#about .mission-box {
  background: hsl(163, 52%, 45%);
  color: #ffffff;
  padding: 45px;
  border-radius: 12px;
  margin-top: 50px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

#about .mission-box h3 {
  font-family: 'Quicksand', sans-serif;
  font-weight: 700;
  font-size: 2rem;
  margin-bottom: 20px;
  color: #ffffff;
}

#about .mission-box p {
  font-size: 1.1rem;
  line-height: 1.9;
  margin: 0;
  color: #ffffff;
}

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

  #about .section-header h2 {
    font-size: 2.2rem;
  }

  #about .about-text {
    margin-top: 30px;
  }

  #about .about-image {
    min-height: 250px;
  }

  #about .mission-box {
    padding: 30px 20px;
  }

  #about .values-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@400;500;600;700&family=Libre+Baskerville:wght@400;700&display=swap');

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

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

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

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

  #portfolio .section-subtitle {
    font-size: 1.1rem;
    color: #666;
    max-width: 700px;
    margin: 30px auto 0;
    line-height: 1.7;
  }

  #portfolio .filter-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 50px;
  }

  #portfolio .filter-btn {
    font-family: 'Quicksand', sans-serif;
    font-weight: 600;
    padding: 12px 28px;
    border: 2px solid hsl(163, 52%, 45%);
    background: transparent;
    color: hsl(163, 52%, 30%);
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.95rem;
  }

  #portfolio .filter-btn:hover,
  #portfolio .filter-btn.active {
    background: hsl(163, 52%, 45%);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(59, 156, 130, 0.3);
  }

  #portfolio .portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
  }

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

  #portfolio .portfolio-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(59, 156, 130, 0.2);
  }

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

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

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

  #portfolio .portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(59, 156, 130, 0.7), rgba(40, 106, 88, 0.9));
    opacity: 0;
    transition: opacity 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
  }

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

  #portfolio .overlay-icon {
    width: 60px;
    height: 60px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: hsl(163, 52%, 45%);
    transform: scale(0);
    transition: transform 0.3s ease 0.1s;
  }

  #portfolio .portfolio-item:hover .overlay-icon {
    transform: scale(1);
  }

  #portfolio .portfolio-content {
    padding: 25px;
  }

  #portfolio .portfolio-category {
    font-family: 'Quicksand', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    color: hsl(163, 52%, 45%);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
  }

  #portfolio .portfolio-title {
    font-family: 'Quicksand', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 12px;
    line-height: 1.3;
  }

  #portfolio .portfolio-description {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
    margin: 0;
  }

  #portfolio .modal-content {
    border: none;
    border-radius: 15px;
    overflow: hidden;
  }

  #portfolio .modal-header {
    background: linear-gradient(135deg, hsl(163, 52%, 45%), hsl(163, 52%, 30%));
    color: #fff;
    border: none;
    padding: 25px 30px;
  }

  #portfolio .modal-title {
    font-family: 'Quicksand', sans-serif;
    font-weight: 700;
    font-size: 1.8rem;
  }

  #portfolio .btn-close {
    filter: brightness(0) invert(1);
    opacity: 1;
  }

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

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

  #portfolio .modal-category {
    font-family: 'Quicksand', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    color: hsl(163, 52%, 45%);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
  }

  #portfolio .modal-text {
    font-size: 1rem;
    color: #444;
    line-height: 1.8;
    margin-bottom: 20px;
  }

  #portfolio .project-details {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    margin-top: 20px;
  }

  #portfolio .project-details h5 {
    font-family: 'Quicksand', sans-serif;
    font-weight: 700;
    color: #222;
    margin-bottom: 15px;
    font-size: 1.2rem;
  }

  #portfolio .project-details ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  #portfolio .project-details li {
    padding: 8px 0;
    color: #555;
    border-bottom: 1px solid #e0e0e0;
  }

  #portfolio .project-details li:last-child {
    border-bottom: none;
  }

  #portfolio .project-details strong {
    color: #222;
    font-weight: 600;
    display: inline-block;
    min-width: 120px;
  }

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

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

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

    #portfolio .filter-buttons {
      gap: 10px;
    }

    #portfolio .filter-btn {
      padding: 10px 20px;
      font-size: 0.9rem;
    }

    #portfolio .portfolio-image {
      height: 240px;
    }

    #portfolio .modal-title {
      font-size: 1.5rem;
    }
  }

@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@400;600;700&family=Libre+Baskerville:wght@400;700&display=swap');
@import url('https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css');

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

#advantages::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: hsl(163, 52%, 70%);
  opacity: 0.08;
  border-radius: 50%;
  z-index: 0;
}

#advantages::after {
  content: '';
  position: absolute;
  bottom: -30%;
  right: -5%;
  width: 400px;
  height: 400px;
  background: hsl(163, 52%, 45%);
  opacity: 0.06;
  border-radius: 50%;
  z-index: 0;
}

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

.advantages-header {
  text-align: center;
  margin-bottom: 60px;
}

.advantages-header h2 {
  font-family: 'Quicksand', sans-serif;
  font-weight: 700;
  font-size: 2.8rem;
  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: linear-gradient(90deg, hsl(163, 52%, 45%), hsl(163, 52%, 70%));
  border-radius: 2px;
}

.advantages-header p {
  font-family: 'Libre Baskerville', 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 15px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.advantage-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, hsl(163, 52%, 45%), hsl(163, 52%, 70%));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

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

.advantage-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 12px 35px rgba(47, 152, 125, 0.2);
  border-color: hsl(163, 52%, 70%);
}

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

.advantage-icon::after {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 22px;
  background: linear-gradient(135deg, hsl(163, 52%, 70%), hsl(163, 52%, 45%));
  z-index: -1;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.advantage-card:hover .advantage-icon {
  transform: rotateY(360deg) scale(1.1);
}

.advantage-card:hover .advantage-icon::after {
  opacity: 1;
}

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

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

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

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

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

  .advantages-header h2 {
    font-size: 2.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.3rem;
  }
}

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

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

@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@400;500;600;700&family=Libre+Baskerville:wght@400;700&display=swap');

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

  #statistics::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, hsl(163, 52%, 45%) 0%, hsl(163, 52%, 70%) 100%);
  }

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

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

  .statistics-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: hsl(163, 52%, 45%);
  }

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

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

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

  .stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, hsl(163, 52%, 45%) 0%, hsl(163, 52%, 70%) 100%);
    transform: scaleX(0);
    transition: transform 0.4s ease;
  }

  .stat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
  }

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

  .stat-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, hsl(163, 52%, 45%) 0%, hsl(163, 52%, 70%) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
  }

  .stat-card:hover .stat-icon {
    transform: scale(1.1) rotate(5deg);
  }

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

  .stat-number {
    font-family: 'Quicksand', sans-serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: hsl(163, 52%, 30%);
    margin-bottom: 10px;
    display: block;
    line-height: 1.2;
  }

  .stat-label {
    font-family: 'Libre Baskerville', serif;
    font-size: 1rem;
    color: #555;
    font-weight: 400;
    line-height: 1.5;
  }

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

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

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

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

    .stats-grid {
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 20px;
    }

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

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

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

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

  @media (max-width: 576px) {
    .stats-grid {
      grid-template-columns: 1fr;
    }
  }

footer {
  background: linear-gradient(135deg, hsl(163, 52%, 30%) 0%, hsl(163, 52%, 45%) 100%);
  color: #ffffff;
  padding: 60px 0 20px;
  margin-top: 80px;
  font-family: 'Libre Baskerville', serif;
}

footer h5 {
  font-family: 'Quicksand', sans-serif;
  font-weight: 600;
  font-size: 1.3rem;
  margin-bottom: 20px;
  color: #ffffff;
}

footer p, footer a, footer li {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.95rem;
  line-height: 1.8;
}

footer a {
  text-decoration: none;
  transition: color 0.3s ease, padding-left 0.3s ease;
  display: inline-block;
}

footer a:hover {
  color: hsl(163, 52%, 70%);
  padding-left: 5px;
}

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

footer ul li {
  margin-bottom: 10px;
}

.footer-description {
  margin-bottom: 25px;
  line-height: 1.7;
}

.contact-info-item {
  margin-bottom: 15px;
  display: flex;
  align-items: flex-start;
}

.contact-info-item i {
  margin-right: 10px;
  color: hsl(163, 52%, 70%);
  margin-top: 3px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  margin-top: 40px;
  padding-top: 25px;
  text-align: center;
}

.footer-bottom p {
  margin: 0;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
}

#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: 30px 0;
  border-top: 4px solid hsl(163, 52%, 45%);
  animation: slideUp 0.5s ease-out;
}

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

#cookieNotice h4 {
  font-family: 'Quicksand', sans-serif;
  font-weight: 600;
  color: #222;
  margin-bottom: 15px;
  font-size: 1.5rem;
}

#cookieNotice p {
  font-family: 'Libre Baskerville', serif;
  color: #555;
  margin-bottom: 20px;
  line-height: 1.6;
}

.cookie-categories {
  background: #f8f9fa;
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 25px;
}

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

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

.cookie-category-title {
  font-family: 'Quicksand', sans-serif;
  font-weight: 600;
  color: #333;
  font-size: 1rem;
  margin-bottom: 5px;
}

.cookie-category-required {
  display: inline-block;
  background: hsl(163, 52%, 45%);
  color: #ffffff;
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 0.75rem;
  margin-left: 8px;
}

.cookie-category-optional {
  display: inline-block;
  background: #6c757d;
  color: #ffffff;
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 0.75rem;
  margin-left: 8px;
}

.cookie-category-desc {
  font-family: 'Libre Baskerville', serif;
  color: #666;
  font-size: 0.85rem;
  margin: 0;
  line-height: 1.5;
}

.cookie-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.btn-accept-all {
  background: hsl(163, 52%, 45%);
  color: #ffffff;
  border: none;
  padding: 12px 30px;
  border-radius: 6px;
  font-family: 'Quicksand', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.btn-accept-all:hover {
  background: hsl(163, 52%, 40%);
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

.btn-reject-optional {
  background: #6c757d;
  color: #ffffff;
  border: none;
  padding: 12px 30px;
  border-radius: 6px;
  font-family: 'Quicksand', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-reject-optional:hover {
  background: #5a6268;
  transform: translateY(-2px);
}

.btn-manage-settings {
  background: transparent;
  color: hsl(163, 52%, 45%);
  border: 2px solid hsl(163, 52%, 45%);
  padding: 10px 28px;
  border-radius: 6px;
  font-family: 'Quicksand', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
}

.btn-manage-settings:hover {
  background: hsl(163, 52%, 45%);
  color: #ffffff;
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  footer {
    padding: 40px 0 20px;
    margin-top: 60px;
  }

  footer h5 {
    font-size: 1.1rem;
    margin-bottom: 15px;
  }

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

  .btn-accept-all,
  .btn-reject-optional,
  .btn-manage-settings {
    width: 100%;
    text-align: center;
  }

  #cookieNotice {
    padding: 20px 0;
  }

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

.article-content { max-width: 900px; margin: 0 auto; padding: 4rem 2rem; font-family: Libre Baskerville, sans-serif; }
.article-header { margin-bottom: 3rem; border-bottom: 2px solid hsl(163, 52%, 45%)20; padding-bottom: 2rem; }
.article-header h1 { font-size: 2.5rem; margin-bottom: 1rem; font-family: Quicksand, sans-serif; color: hsl(163, 52%, 30%); }
.article-meta { color: #666; font-size: 0.95rem; margin-bottom: 1.5rem; }
.article-meta i { color: hsl(163, 52%, 45%); }
.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(163, 52%, 30%); font-family: Quicksand, sans-serif; margin-top: 2rem; }
.blog-article h3 { color: hsl(163, 52%, 30%); font-family: Quicksand, sans-serif; }
.blog-article a { color: hsl(163, 52%, 45%); }
.blog-article a:hover { color: hsl(163, 52%, 70%); }
.blog-article ul, .blog-article ol { margin: 1rem 0; padding-left: 1.5rem; }
.blog-article blockquote { border-left: 4px solid hsl(163, 52%, 45%); padding-left: 1rem; margin: 1.5rem 0; font-style: italic; color: #555; }

.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; }

@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@400;500;600;700&family=Libre+Baskerville:wght@400;700&display=swap');

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

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

#contact .section-header h2 {
    font-family: 'Quicksand', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 15px;
}

#contact .section-header p {
    font-size: 1.1rem;
    color: #555;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

#contact .contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

#contact .contact-form-container {
    background: #ffffff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.08);
}

#contact .contact-form-container h3 {
    font-family: 'Quicksand', sans-serif;
    font-size: 1.8rem;
    font-weight: 600;
    color: #222;
    margin-bottom: 25px;
}

#contact .form-group {
    margin-bottom: 25px;
}

#contact .form-group label {
    display: block;
    font-size: 0.95rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
    font-family: 'Quicksand', sans-serif;
}

#contact .form-group input,
#contact .form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    font-family: 'Libre Baskerville', serif;
    color: #333;
    transition: all 0.3s ease;
    background: #fafafa;
}

#contact .form-group input:focus,
#contact .form-group textarea:focus {
    outline: none;
    border-color: hsl(163, 52%, 45%);
    background: #ffffff;
    box-shadow: 0 0 0 4px hsla(163, 52%, 45%, 0.1);
}

#contact .form-group textarea {
    resize: vertical;
    min-height: 150px;
}

#contact .form-group input::placeholder,
#contact .form-group textarea::placeholder {
    color: #999;
}

#contact .submit-btn {
    width: 100%;
    padding: 16px;
    background: hsl(163, 52%, 45%);
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    font-family: 'Quicksand', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

#contact .submit-btn:hover {
    background: hsl(163, 52%, 30%);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

#contact .contact-info-container {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

#contact .info-card {
    background: #ffffff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.08);
    border-left: 4px solid hsl(163, 52%, 45%);
}

#contact .info-card h4 {
    font-family: 'Quicksand', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: #222;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

#contact .info-card h4 i {
    color: hsl(163, 52%, 45%);
    font-size: 1.5rem;
}

#contact .info-item {
    margin-bottom: 15px;
}

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

#contact .info-item strong {
    display: block;
    font-family: 'Quicksand', sans-serif;
    font-size: 0.95rem;
    color: #555;
    margin-bottom: 5px;
}

#contact .info-item a {
    color: hsl(163, 52%, 35%);
    text-decoration: none;
    font-size: 1.05rem;
    transition: color 0.3s ease;
    word-break: break-word;
}

#contact .info-item a:hover {
    color: hsl(163, 52%, 45%);
    text-decoration: underline;
}

#contact .info-item p {
    color: #333;
    font-size: 1rem;
    margin: 0;
    line-height: 1.6;
}

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

#contact .hours-list li {
    padding: 8px 0;
    color: #333;
    font-size: 0.95rem;
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #f0f0f0;
}

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

#contact .hours-list li span:first-child {
    font-weight: 600;
    color: #222;
}

#contact .required-note {
    font-size: 0.9rem;
    color: #666;
    margin-top: 15px;
    font-style: italic;
}

@media (max-width: 992px) {
    #contact .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    #contact .section-header h2 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    #contact {
        padding: 60px 0;
    }
    
    #contact .contact-form-container,
    #contact .info-card {
        padding: 25px;
    }
    
    #contact .section-header h2 {
        font-size: 1.8rem;
    }
    
    #contact .section-header p {
        font-size: 1rem;
    }
    
    #contact .hours-list li {
        flex-direction: column;
        gap: 5px;
    }
}

@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@400;500;600;700&family=Libre+Baskerville:wght@400;700&display=swap');

  :root {
    --primary-color: hsl(163, 52%, 45%);
    --secondary-color: hsl(163, 52%, 30%);
    --accent-color: hsl(163, 52%, 70%);
  }

  .policy-content {
    font-family: 'Libre Baskerville', serif;
    color: #2c3e50;
    line-height: 1.8;
  }

  .policy-content h1,
  .policy-content h2,
  .policy-content h3,
  .policy-content h4 {
    font-family: 'Quicksand', sans-serif;
    font-weight: 600;
    color: var(--secondary-color);
  }

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

  .policy-content h2 {
    font-size: 1.8rem;
    margin-top: 2.5rem;
    margin-bottom: 1.2rem;
    color: var(--primary-color);
  }

  .policy-content h3 {
    font-size: 1.3rem;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
  }

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

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

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

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

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

  .intro-box {
    background-color: rgba(163, 52%, 45%, 0.05);
    border-left: 4px solid var(--primary-color);
    padding: 1.5rem;
    margin-bottom: 2rem;
    border-radius: 0.5rem;
  }

  .contact-box {
    background-color: var(--accent-color);
    color: #fff;
    padding: 2rem;
    border-radius: 0.5rem;
    margin-top: 3rem;
  }

  .contact-box h3 {
    color: #fff;
  }

  .contact-box a {
    color: #fff;
    text-decoration: underline;
  }

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

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

  .last-updated {
    font-style: italic;
    color: #7f8c8d;
    margin-bottom: 2rem;
  }

@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@400;600;700&family=Libre+Baskerville:wght@400;700&display=swap');

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

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

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

  #faq .section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: hsl(163, 52%, 45%);
    border-radius: 2px;
  }

  #faq .section-header p {
    font-size: 1.1rem;
    color: #555;
    max-width: 700px;
    margin: 25px auto 0;
    line-height: 1.7;
  }

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

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

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

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

  #faq .accordion-button:not(.collapsed) {
    background-color: hsl(163, 52%, 45%);
    color: #ffffff;
    box-shadow: none;
  }

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

  #faq .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;
    width: 1.5rem;
    height: 1.5rem;
  }

  #faq .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-body {
    padding: 28px;
    background-color: #ffffff;
    color: #444;
    font-size: 1rem;
    line-height: 1.8;
    border-top: 1px solid rgba(163, 52, 45, 0.1);
  }

  #faq .accordion-body p {
    margin-bottom: 12px;
  }

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

  #faq .accordion-body strong {
    color: hsl(163, 52%, 30%);
    font-weight: 700;
  }

  #faq .faq-categories {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 50px;
  }

  #faq .category-badge {
    font-family: 'Quicksand', sans-serif;
    padding: 10px 24px;
    background: linear-gradient(135deg, hsl(163, 52%, 70%) 0%, hsl(163, 52%, 45%) 100%);
    color: #ffffff;
    border-radius: 25px;
    font-size: 0.95rem;
    font-weight: 600;
    box-shadow: 0 2px 10px rgba(53, 133, 110, 0.2);
  }

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

    #faq .section-header h2 {
      font-size: 2.2rem;
    }

    #faq .section-header p {
      font-size: 1rem;
    }

    #faq .accordion-button {
      font-size: 1.05rem;
      padding: 20px 22px;
    }

    #faq .accordion-body {
      padding: 22px;
      font-size: 0.95rem;
    }

    #faq .category-badge {
      font-size: 0.9rem;
      padding: 8px 18px;
    }
  }

@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@400;500;600;700&family=Libre+Baskerville:wght@400;700&display=swap');

  #newsletter {
    background: linear-gradient(135deg, hsl(163, 52%, 45%) 0%, hsl(163, 52%, 30%) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
  }

  #newsletter::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
    opacity: 0.3;
  }

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

  .newsletter-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
  }

  .newsletter-heading {
    font-family: 'Quicksand', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
  }

  .newsletter-description {
    font-family: 'Libre Baskerville', serif;
    font-size: 1.1rem;
    color: #ffffff;
    margin-bottom: 40px;
    line-height: 1.7;
    opacity: 0.95;
  }

  .newsletter-form {
    display: flex;
    gap: 15px;
    max-width: 550px;
    margin: 0 auto;
    flex-wrap: wrap;
    justify-content: center;
  }

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

  .newsletter-input:focus {
    outline: none;
    border-color: #ffffff;
    background: #ffffff;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
  }

  .newsletter-input::placeholder {
    color: #999;
  }

  .newsletter-submit {
    padding: 16px 40px;
    background: #ffffff;
    color: hsl(163, 52%, 30%);
    border: none;
    border-radius: 50px;
    font-family: 'Quicksand', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  }

  .newsletter-submit:hover {
    background: hsl(163, 52%, 70%);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(0,0,0,0.25);
  }

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

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

  .benefit-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #ffffff;
    font-family: 'Libre Baskerville', serif;
    font-size: 0.95rem;
  }

  .benefit-icon {
    width: 20px;
    height: 20px;
    background: rgba(255,255,255,0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
  }

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

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

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

    .newsletter-form {
      flex-direction: column;
      gap: 12px;
    }

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

    .newsletter-submit {
      width: 100%;
    }

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

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

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

    .newsletter-input,
    .newsletter-submit {
      padding: 14px 20px;
    }
  }

@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@400;600;700&family=Libre+Baskerville:wght@400;700&display=swap');

  .hero-section {
    background-color: #f8f9fa;
    padding: 80px 0;
    overflow: hidden;
  }

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

  .hero-section h2 {
    font-family: 'Quicksand', sans-serif;
    font-weight: 600;
    color: hsl(163, 52%, 45%);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
  }

  .hero-section p {
    font-family: 'Libre Baskerville', serif;
    color: #444;
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
  }

  .hero-image-wrapper {
    position: relative;
    height: 100%;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .hero-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  }

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

  .hero-advantages li {
    font-family: 'Libre Baskerville', serif;
    color: #333;
    font-size: 1rem;
    margin-bottom: 1rem;
    padding-left: 2rem;
    position: relative;
    line-height: 1.6;
  }

  .hero-advantages li i {
    position: absolute;
    left: 0;
    top: 2px;
    color: hsl(163, 52%, 45%);
    font-size: 1.2rem;
  }

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

  .hero-btn-primary {
    font-family: 'Quicksand', sans-serif;
    font-weight: 600;
    background-color: hsl(163, 52%, 45%);
    color: #fff;
    padding: 14px 32px;
    border-radius: 8px;
    text-decoration: none;
    border: 2px solid hsl(163, 52%, 45%);
    transition: all 0.3s ease;
    display: inline-block;
    font-size: 1rem;
  }

  .hero-btn-primary:hover {
    background-color: hsl(163, 52%, 30%);
    border-color: hsl(163, 52%, 30%);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(48, 147, 122, 0.3);
  }

  .hero-btn-secondary {
    font-family: 'Quicksand', sans-serif;
    font-weight: 600;
    background-color: transparent;
    color: hsl(163, 52%, 45%);
    padding: 14px 32px;
    border-radius: 8px;
    text-decoration: none;
    border: 2px solid hsl(163, 52%, 45%);
    transition: all 0.3s ease;
    display: inline-block;
    font-size: 1rem;
  }

  .hero-btn-secondary:hover {
    background-color: hsl(163, 52%, 45%);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(48, 147, 122, 0.3);
  }

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

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

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

    .hero-image-wrapper {
      min-height: 400px;
      margin-bottom: 2rem;
    }

    .hero-cta-buttons {
      justify-content: center;
    }
  }

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

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

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

    .hero-image-wrapper {
      min-height: 300px;
    }

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

    .hero-btn-primary,
    .hero-btn-secondary {
      width: 100%;
      text-align: center;
    }
  }

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

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

  .services-section .section-title {
    font-family: 'Quicksand', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 15px;
  }

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

  .service-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    border: 1px solid #e9ecef;
    display: flex;
    align-items: flex-start;
    gap: 25px;
  }

  .service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(45, 138, 115, 0.2);
    border-color: hsl(163, 52%, 45%);
  }

  .service-icon {
    flex-shrink: 0;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, hsl(163, 52%, 45%) 0%, hsl(163, 52%, 30%) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: #ffffff;
    transition: all 0.4s ease;
  }

  .service-card:hover .service-icon {
    transform: rotate(10deg) scale(1.1);
    background: linear-gradient(135deg, hsl(163, 52%, 30%) 0%, hsl(163, 52%, 45%) 100%);
  }

  .service-content {
    flex: 1;
  }

  .service-title {
    font-family: 'Quicksand', sans-serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: #222;
    margin-bottom: 12px;
  }

  .service-description {
    font-family: 'Libre Baskerville', serif;
    font-size: 0.95rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 15px;
  }

  .service-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    padding-top: 15px;
    border-top: 1px solid #e9ecef;
  }

  .service-price {
    font-family: 'Quicksand', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: hsl(163, 52%, 30%);
  }

  .service-term {
    font-family: 'Libre Baskerville', serif;
    font-size: 0.85rem;
    color: #777;
    font-style: italic;
  }

  .service-badge {
    display: inline-block;
    background: hsl(163, 52%, 70%);
    color: #222;
    padding: 4px 12px;
    border-radius: 20px;
    font-family: 'Quicksand', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
  }

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

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

    .service-card {
      flex-direction: column;
      padding: 25px;
    }

    .service-icon {
      width: 60px;
      height: 60px;
      font-size: 28px;
    }

    .service-footer {
      flex-direction: column;
      align-items: flex-start;
    }
  }

@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@400;600;700&family=Libre+Baskerville:wght@400;700&display=swap');

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

  #testimonials::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 300px;
    height: 300px;
    background: hsl(163, 52%, 70%);
    opacity: 0.1;
    border-radius: 50%;
  }

  #testimonials::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 400px;
    height: 400px;
    background: hsl(163, 52%, 45%);
    opacity: 0.05;
    border-radius: 50%;
  }

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

  .testimonials-header h2 {
    font-family: 'Quicksand', sans-serif;
    font-weight: 700;
    font-size: 2.8rem;
    color: #222;
    margin-bottom: 15px;
  }

  .testimonials-header p {
    font-family: 'Libre Baskerville', serif;
    font-size: 1.1rem;
    color: #555;
    max-width: 700px;
    margin: 0 auto;
  }

  .testimonials-grid {
    position: relative;
    z-index: 2;
  }

  .testimonial-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border-left: 4px solid hsl(163, 52%, 45%);
    height: 100%;
    display: flex;
    flex-direction: column;
  }

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

  .testimonial-card.style-2 {
    border-left: none;
    border-top: 4px solid hsl(163, 52%, 45%);
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  }

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

  .testimonial-rating {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    gap: 5px;
  }

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

  .star.empty {
    color: #ddd;
  }

  .testimonial-text {
    font-family: 'Libre Baskerville', serif;
    font-size: 0.95rem;
    line-height: 1.7;
    color: #333;
    margin-bottom: 20px;
    flex-grow: 1;
  }

  .testimonial-text.short {
    font-size: 1.05rem;
    font-weight: 600;
    color: #222;
  }

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

  .testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-top: 15px;
    border-top: 1px solid #eee;
  }

  .author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, hsl(163, 52%, 45%) 0%, hsl(163, 52%, 30%) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Quicksand', sans-serif;
    font-weight: 700;
    font-size: 1.2rem;
    color: #ffffff;
    flex-shrink: 0;
  }

  .author-info {
    flex-grow: 1;
  }

  .author-name {
    font-family: 'Quicksand', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    color: #222;
    margin-bottom: 3px;
  }

  .author-location {
    font-family: 'Libre Baskerville', serif;
    font-size: 0.85rem;
    color: #777;
  }

  .testimonial-badge {
    display: inline-block;
    background: hsl(163, 52%, 45%);
    color: #ffffff;
    padding: 5px 12px;
    border-radius: 20px;
    font-family: 'Quicksand', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 15px;
  }

  .testimonial-badge.verified {
    background: hsl(163, 52%, 30%);
  }

  .quote-icon {
    font-size: 2.5rem;
    color: hsl(163, 52%, 70%);
    opacity: 0.3;
    line-height: 1;
    margin-bottom: 10px;
  }

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

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

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

    .testimonial-card {
      padding: 25px;
      margin-bottom: 20px;
    }

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

@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@400;600;700&family=Libre+Baskerville:wght@400;700&display=swap');

  #credentials {
    padding: 50px 0;
    background-color: #f8f9fa;
  }

  #credentials .section-title {
    font-family: 'Quicksand', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: #222;
    text-align: center;
    margin-bottom: 40px;
  }

  #credentials .credential-card {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 25px 15px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    margin-bottom: 20px;
  }

  #credentials .credential-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  }

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

  #credentials .credential-title {
    font-family: 'Quicksand', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: #333;
    margin: 0;
  }

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

    #credentials .section-title {
      font-size: 1.6rem;
      margin-bottom: 30px;
    }

    #credentials .credential-card {
      padding: 20px 15px;
    }

    #credentials .credential-icon {
      font-size: 2rem;
    }
  }

.offer-section {
  background: linear-gradient(135deg, hsl(163, 52%, 45%) 0%, hsl(163, 52%, 30%) 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

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

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

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

.offer-badge {
  display: inline-block;
  background: hsl(163, 52%, 70%);
  color: #222;
  padding: 8px 24px;
  border-radius: 50px;
  font-family: 'Quicksand', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.offer-heading {
  font-family: 'Quicksand', sans-serif;
  color: #fff;
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 25px;
  line-height: 1.2;
}

.offer-description {
  font-family: 'Libre Baskerville', serif;
  color: #f8f9fa;
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.offer-card {
  background: #fff;
  border-radius: 20px;
  padding: 50px 40px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
  max-width: 900px;
  margin: 0 auto;
}

.deadline-block {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border-radius: 15px;
  padding: 35px;
  margin-bottom: 40px;
  text-align: center;
  border: 3px solid hsl(163, 52%, 70%);
}

.deadline-label {
  font-family: 'Quicksand', sans-serif;
  color: #555;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 15px;
  font-weight: 600;
}

.deadline-date {
  font-family: 'Quicksand', sans-serif;
  color: hsl(163, 52%, 30%);
  font-size: 2.8rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.calendar-icon {
  width: 50px;
  height: 50px;
  background: hsl(163, 52%, 45%);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.5rem;
}

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

.benefits-list li {
  font-family: 'Libre Baskerville', serif;
  color: #333;
  font-size: 1.05rem;
  padding: 18px 0;
  border-bottom: 1px solid #e9ecef;
  display: flex;
  align-items: center;
  gap: 20px;
}

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

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

.discount-highlight {
  background: hsl(163, 52%, 45%);
  color: #fff;
  padding: 25px;
  border-radius: 15px;
  text-align: center;
  margin-bottom: 35px;
}

.discount-percentage {
  font-family: 'Quicksand', sans-serif;
  font-size: 4rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 10px;
}

.discount-text {
  font-family: 'Libre Baskerville', serif;
  font-size: 1.1rem;
  opacity: 0.95;
}

.offer-cta {
  text-align: center;
  margin-top: 40px;
}

.btn-offer {
  font-family: 'Quicksand', sans-serif;
  background: hsl(163, 52%, 45%);
  color: #fff;
  padding: 18px 50px;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: none;
  transition: all 0.3s ease;
  box-shadow: 0 8px 20px rgba(42, 138, 113, 0.3);
  text-decoration: none;
  display: inline-block;
}

.btn-offer:hover {
  background: hsl(163, 52%, 30%);
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(42, 138, 113, 0.4);
  color: #fff;
}

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

  .offer-heading {
    font-size: 2.2rem;
  }

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

  .offer-card {
    padding: 35px 25px;
  }

  .deadline-date {
    font-size: 2rem;
    flex-direction: column;
    gap: 10px;
  }

  .discount-percentage {
    font-size: 3rem;
  }

  .benefits-list li {
    font-size: 0.95rem;
  }

  .btn-offer {
    padding: 15px 35px;
    font-size: 1rem;
  }
}

@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@400;500;600;700&family=Libre+Baskerville:wght@400;700&display=swap');

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

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

  #blog .section-header h2 {
    font-family: 'Quicksand', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 15px;
  }

  #blog .section-header p {
    font-size: 1.1rem;
    color: #555;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
  }

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

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

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

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

  #blog .blog-card:hover .blog-image img {
    transform: scale(1.08);
  }

  #blog .blog-meta {
    position: absolute;
    bottom: 15px;
    left: 15px;
    display: flex;
    gap: 15px;
    z-index: 2;
  }

  #blog .meta-badge {
    background: rgba(255, 255, 255, 0.95);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.85rem;
    color: #333;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  }

  #blog .meta-badge i {
    color: hsl(163, 52%, 45%);
    font-size: 0.9rem;
  }

  #blog .blog-content {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
  }

  #blog .blog-title {
    font-family: 'Quicksand', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #222;
    margin-bottom: 15px;
    line-height: 1.4;
  }

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

  #blog .blog-title a:hover {
    color: hsl(163, 52%, 45%);
  }

  #blog .blog-excerpt {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.7;
    margin-bottom: 20px;
    flex-grow: 1;
  }

  #blog .read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: hsl(163, 52%, 45%);
    font-weight: 600;
    text-decoration: none;
    font-size: 0.95rem;
    transition: gap 0.3s ease;
  }

  #blog .read-more:hover {
    gap: 12px;
    color: hsl(163, 52%, 30%);
  }

  #blog .read-more i {
    font-size: 0.9rem;
  }

  #blog .view-all-container {
    text-align: center;
    margin-top: 50px;
  }

  #blog .btn-view-all {
    display: inline-block;
    padding: 14px 40px;
    background: hsl(163, 52%, 45%);
    color: #ffffff;
    font-family: 'Quicksand', sans-serif;
    font-size: 1.05rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 30px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(42, 157, 128, 0.3);
  }

  #blog .btn-view-all:hover {
    background: hsl(163, 52%, 30%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(42, 157, 128, 0.4);
    color: #ffffff;
  }

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

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

    #blog .section-header {
      margin-bottom: 40px;
    }

    #blog .blog-image {
      height: 220px;
    }

    #blog .blog-content {
      padding: 25px;
    }

    #blog .blog-title {
      font-size: 1.3rem;
    }

    #blog .view-all-container {
      margin-top: 40px;
    }
  }

@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@400;600;700&family=Libre+Baskerville:wght@400;700&display=swap');

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

  #disclaimer .disclaimer-container {
    max-width: 900px;
    margin: 0 auto;
    background: #ffffff;
    border-radius: 12px;
    padding: 50px 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border-left: 5px solid hsl(163, 52%, 45%);
  }

  #disclaimer .disclaimer-icon {
    text-align: center;
    margin-bottom: 30px;
  }

  #disclaimer .disclaimer-icon i {
    font-size: 48px;
    color: hsl(163, 52%, 45%);
  }

  #disclaimer h2 {
    font-family: 'Quicksand', sans-serif;
    font-weight: 700;
    font-size: 2.2rem;
    color: #222;
    text-align: center;
    margin-bottom: 35px;
    letter-spacing: 0.5px;
  }

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

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

    #disclaimer .disclaimer-container {
      padding: 40px 25px;
      margin: 0 15px;
    }

    #disclaimer h2 {
      font-size: 1.8rem;
      margin-bottom: 25px;
    }

    #disclaimer .disclaimer-text {
      font-size: 0.95rem;
      line-height: 1.8;
    }

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

  @media (max-width: 576px) {
    #disclaimer h2 {
      font-size: 1.6rem;
    }

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

@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@400;500;600;700&family=Libre+Baskerville:wght@400;700&display=swap');

  :root {
    --primary-color: hsl(163, 52%, 45%);
    --secondary-color: hsl(163, 52%, 30%);
    --accent-color: hsl(163, 52%, 70%);
  }

  .policy-content {
    font-family: 'Libre Baskerville', serif;
    color: #333;
    line-height: 1.8;
  }

  .policy-content h1,
  .policy-content h2,
  .policy-content h3,
  .policy-content h4 {
    font-family: 'Quicksand', sans-serif;
    font-weight: 600;
    color: var(--secondary-color);
  }

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

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

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

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

  .policy-content p {
    margin-bottom: 1rem;
    font-size: 1rem;
  }

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

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

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

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

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

  .policy-header h1 {
    color: white;
    border-bottom: none;
    margin-bottom: 0.5rem;
  }

  .last-updated {
    background-color: var(--accent-color);
    color: var(--secondary-color);
    padding: 0.75rem 1.5rem;
    border-radius: 5px;
    display: inline-block;
    font-family: 'Quicksand', sans-serif;
    font-weight: 500;
    margin-bottom: 2rem;
  }

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

  .contact-box h3 {
    margin-top: 0;
  }

  .info-highlight {
    background-color: rgba(163, 52%, 45%, 0.1);
    padding: 1.5rem;
    border-radius: 8px;
    margin: 1.5rem 0;
  }

@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@400;600;700&family=Libre+Baskerville:wght@400;700&display=swap');

  :root {
    --primary-color: hsl(163, 52%, 45%);
    --secondary-color: hsl(163, 52%, 30%);
    --accent-color: hsl(163, 52%, 70%);
  }

  .policy-content {
    font-family: 'Libre Baskerville', serif;
    color: #333;
    line-height: 1.8;
  }

  .policy-content h1,
  .policy-content h2,
  .policy-content h3,
  .policy-content h4 {
    font-family: 'Quicksand', 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: 3px solid var(--primary-color);
  }

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

  .policy-content h3 {
    font-size: 1.3rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
  }

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

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

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

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

  .policy-content p {
    margin-bottom: 1.25rem;
    font-size: 1rem;
  }

  .info-box {
    background-color: rgba(163, 52%, 70%, 0.1);
    border-left: 4px solid var(--primary-color);
    padding: 1.25rem;
    margin: 1.5rem 0;
    border-radius: 0.25rem;
  }

  .section-divider {
    height: 2px;
    background: linear-gradient(to right, var(--primary-color), var(--accent-color), transparent);
    margin: 2rem 0;
    border: none;
  }

  .contact-info {
    background-color: var(--secondary-color);
    color: white;
    padding: 2rem;
    border-radius: 0.5rem;
    margin-top: 2rem;
  }

  .contact-info h3 {
    color: white;
    margin-top: 0;
  }

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

  .contact-info a:hover {
    color: white;
  }

  .last-updated {
    font-style: italic;
    color: #666;
    font-size: 0.9rem;
    margin-top: 1rem;
  }