:root {
            --primary-color: hsl(144, 44%, 33%);
            --secondary-color: hsl(144, 44%, 18%);
            --accent-color: hsl(144, 44%, 58%);
        }
        
        body {
            font-family: 'Libre Baskerville', serif;
            color: #333;
            line-height: 1.7;
        }
        
        h1, h2, h3, h4, h5, h6 {
            font-family: 'Quicksand', sans-serif;
            font-weight: 600;
            color: #222;
        }
        
        .navbar {
            background-color: #fff;
            box-shadow: 0 2px 10px rgba(0,0,0,0.08);
            padding: 1rem 0;
        }
        
        .navbar-brand {
            font-family: 'Quicksand', sans-serif;
            font-weight: 700;
            font-size: 1.5rem;
            color: var(--primary-color);
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }
        
        .navbar-brand:hover {
            color: var(--secondary-color);
        }
        
        .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(72, 123, 92, 0.25);
        }

.about-section {
  font-family: 'Libre Baskerville', serif;
  background: #ffffff;
  padding: 80px 0;
}

.about-section h1,
.about-section h2,
.about-section h3 {
  font-family: 'Quicksand', sans-serif;
  color: hsl(144, 44%, 18%);
  font-weight: 700;
}

.about-section h1 {
  font-size: 2.8rem;
  margin-bottom: 1.5rem;
  color: hsl(144, 44%, 33%);
}

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

.about-section h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: hsl(144, 44%, 33%);
}

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

.about-intro {
  background: linear-gradient(135deg, hsl(144, 44%, 33%) 0%, hsl(144, 44%, 18%) 100%);
  padding: 60px 0;
  margin-bottom: 60px;
  color: #fff;
}

.about-intro h1 {
  color: #fff;
  text-align: center;
}

.about-intro .lead {
  color: #f8f9fa;
  text-align: center;
  font-size: 1.2rem;
  max-width: 800px;
  margin: 0 auto;
}

.about-image {
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  width: 100%;
  height: auto;
  margin-bottom: 30px;
}

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

.value-card {
  background: #f8f9fa;
  padding: 30px;
  border-radius: 10px;
  border-left: 4px solid hsl(144, 44%, 33%);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.value-card h3 {
  margin-top: 0;
  margin-bottom: 15px;
}

.value-card p {
  margin-bottom: 0;
  font-size: 1rem;
}

.stats-row {
  background: hsl(144, 44%, 58%);
  padding: 50px 0;
  margin: 60px 0;
  border-radius: 12px;
}

.stat-item {
  text-align: center;
  padding: 20px;
}

.stat-number {
  font-family: 'Quicksand', sans-serif;
  font-size: 3rem;
  font-weight: 700;
  color: #fff;
  display: block;
  margin-bottom: 10px;
}

.stat-label {
  color: #fff;
  font-size: 1.1rem;
  font-weight: 500;
}

.timeline-section {
  margin-top: 50px;
  padding: 40px 0;
}

.timeline-item {
  display: flex;
  gap: 30px;
  margin-bottom: 40px;
  align-items: flex-start;
}

.timeline-year {
  font-family: 'Quicksand', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: hsl(144, 44%, 33%);
  min-width: 100px;
}

.timeline-content {
  flex: 1;
}

.timeline-content h4 {
  font-family: 'Quicksand', sans-serif;
  color: hsl(144, 44%, 18%);
  margin-bottom: 10px;
  font-size: 1.3rem;
}

.timeline-content p {
  margin-bottom: 0;
}

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

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

  .about-section h2 {
    font-size: 1.7rem;
  }

  .about-intro {
    padding: 40px 0;
    margin-bottom: 40px;
  }

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

  .timeline-item {
    flex-direction: column;
    gap: 15px;
  }

  .timeline-year {
    min-width: auto;
  }

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

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

.portfolio-section h2 {
  font-family: 'Quicksand', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: hsl(144, 44%, 18%);
  margin-bottom: 1rem;
  text-align: center;
}

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

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

.filter-btn {
  background: #fff;
  border: 2px solid hsl(144, 44%, 33%);
  color: hsl(144, 44%, 33%);
  padding: 0.6rem 1.5rem;
  border-radius: 50px;
  font-family: 'Quicksand', sans-serif;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
  background: hsl(144, 44%, 33%);
  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(350px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.portfolio-item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  background: #fff;
}

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

.portfolio-image {
  width: 100%;
  height: 300px;
  object-fit: cover;
  display: block;
}

.portfolio-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}

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

.portfolio-content {
  padding: 1.5rem;
}

.portfolio-category {
  display: inline-block;
  background: hsl(144, 44%, 58%);
  color: #fff;
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-family: 'Quicksand', sans-serif;
  font-weight: 600;
  margin-bottom: 0.8rem;
}

.portfolio-item h3 {
  font-family: 'Quicksand', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: hsl(144, 44%, 18%);
  margin-bottom: 0.8rem;
}

.portfolio-overlay h3 {
  color: #fff;
  margin-bottom: 0.5rem;
  font-size: 1.5rem;
}

.portfolio-description {
  color: #555;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.portfolio-overlay .portfolio-description {
  color: #f8f9fa;
}

.view-details {
  display: inline-block;
  color: hsl(144, 44%, 33%);
  font-family: 'Quicksand', sans-serif;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.view-details:hover {
  color: hsl(144, 44%, 58%);
}

.portfolio-overlay .view-details {
  color: hsl(144, 44%, 58%);
  border: 2px solid hsl(144, 44%, 58%);
  padding: 0.5rem 1.2rem;
  border-radius: 25px;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(5px);
}

.portfolio-overlay .view-details:hover {
  background: hsl(144, 44%, 58%);
  color: #fff;
}

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

.modal-header {
  background: hsl(144, 44%, 33%);
  color: #fff;
  border-radius: 12px 12px 0 0;
  padding: 1.5rem;
}

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

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

.modal-body {
  padding: 2rem;
  color: #333;
}

.modal-body img {
  width: 100%;
  border-radius: 8px;
  margin-bottom: 1.5rem;
}

.modal-body h5 {
  font-family: 'Quicksand', sans-serif;
  font-weight: 700;
  color: hsl(144, 44%, 18%);
  margin-top: 1.5rem;
  margin-bottom: 1rem;
}

.modal-body p {
  line-height: 1.8;
  margin-bottom: 1rem;
}

.project-details-list {
  list-style: none;
  padding: 0;
}

.project-details-list li {
  padding: 0.5rem 0;
  border-bottom: 1px solid #e9ecef;
  display: flex;
  justify-content: space-between;
}

.project-details-list li strong {
  color: hsl(144, 44%, 33%);
  font-family: 'Quicksand', sans-serif;
}

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

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

  .portfolio-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .filter-buttons {
    gap: 0.5rem;
  }

  .filter-btn {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
  }
}

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

.advantages-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: hsl(144, 44%, 58%, 0.1);
  border-radius: 50%;
  z-index: 0;
}

.advantages-section::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: hsl(144, 44%, 33%, 0.05);
  border-radius: 50%;
  z-index: 0;
}

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

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

.advantages-header h2 {
  font-family: 'Quicksand', sans-serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: hsl(144, 44%, 18%);
  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(144, 44%, 58%);
  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.8;
}

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

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

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

.advantage-card:hover {
  transform: translateY(-10px);
  border-color: hsl(144, 44%, 58%, 0.3);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

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

.advantage-icon::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: hsl(144, 44%, 58%);
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.4s ease;
}

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

.advantage-card:hover .advantage-icon::after {
  opacity: 0.3;
  transform: scale(1.5);
}

.advantage-icon i {
  font-size: 2.2rem;
  color: #ffffff;
  position: relative;
  z-index: 1;
}

.advantage-card h3 {
  font-family: 'Quicksand', sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: hsl(144, 44%, 18%);
  margin-bottom: 18px;
  text-align: center;
  transition: color 0.3s ease;
}

.advantage-card:hover h3 {
  color: hsl(144, 44%, 33%);
}

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

@media (max-width: 991px) {
  .advantages-section {
    padding: 60px 0;
  }
  
  .advantages-header h2 {
    font-size: 2.2rem;
  }
  
  .advantage-card {
    margin-bottom: 30px;
  }
}

@media (max-width: 767px) {
  .advantages-header h2 {
    font-size: 1.9rem;
  }
  
  .advantages-header p {
    font-size: 1rem;
  }
  
  .advantage-card {
    padding: 35px 25px;
  }
  
  .advantage-icon {
    width: 70px;
    height: 70px;
  }
  
  .advantage-icon i {
    font-size: 1.9rem;
  }
}

@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: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: hsl(144, 44%, 58%, 0.08);
    border-radius: 50%;
    z-index: 0;
  }

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

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

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

  .statistics-header h2 {
    font-family: 'Quicksand', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: hsl(144, 44%, 18%);
    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: 4px;
    background: hsl(144, 44%, 58%);
    border-radius: 2px;
  }

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

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

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

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

  .stat-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
    border-color: hsl(144, 44%, 58%, 0.3);
  }

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

  .stat-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, hsl(144, 44%, 33%), hsl(144, 44%, 58%));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #ffffff;
    transition: all 0.4s ease;
  }

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

  .stat-number {
    font-family: 'Quicksand', sans-serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: hsl(144, 44%, 18%);
    margin-bottom: 12px;
    line-height: 1;
  }

  .stat-label {
    font-family: 'Libre Baskerville', serif;
    font-size: 0.95rem;
    color: #666;
    line-height: 1.5;
    margin-bottom: 8px;
  }

  .stat-context {
    font-family: 'Libre Baskerville', serif;
    font-size: 0.8rem;
    color: #888;
    font-style: italic;
  }

  .stats-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
    margin-top: 40px;
  }

  .stat-card-compact {
    background: #ffffff;
    padding: 30px 20px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
    border-left: 4px solid hsl(144, 44%, 58%);
  }

  .stat-card-compact:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border-left-color: hsl(144, 44%, 33%);
  }

  .stat-card-compact .stat-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 15px;
    font-size: 1.5rem;
  }

  .stat-card-compact .stat-number {
    font-size: 2.2rem;
    margin-bottom: 8px;
  }

  .stat-card-compact .stat-label {
    font-size: 0.85rem;
    margin-bottom: 5px;
  }

  .stat-card-compact .stat-context {
    font-size: 0.75rem;
  }

  @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(200px, 1fr));
      gap: 20px;
    }

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

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

    .stat-icon {
      width: 60px;
      height: 60px;
      font-size: 1.7rem;
    }

    .stats-row {
      grid-template-columns: 1fr;
      gap: 15px;
    }
  }

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

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

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

footer {
  background: linear-gradient(135deg, hsl(144, 44%, 18%) 0%, hsl(144, 44%, 25%) 100%);
  color: #f8f9fa;
  padding: 4rem 0 1.5rem;
  margin-top: 5rem;
  font-family: 'Libre Baskerville', serif;
}

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

footer p, footer ul, footer address {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #e9ecef;
}

footer a {
  color: hsl(144, 44%, 75%);
  text-decoration: none;
  transition: color 0.3s ease;
}

footer a:hover {
  color: hsl(144, 44%, 85%);
  text-decoration: underline;
}

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

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

footer .contact-info i {
  color: hsl(144, 44%, 58%);
  margin-right: 0.5rem;
  width: 20px;
}

footer address {
  font-style: normal;
  margin-bottom: 1rem;
}

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

.footer-logo {
  font-family: 'Quicksand', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
}

#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: 1.5rem 0;
  border-top: 3px solid hsl(144, 44%, 33%);
}

#cookieNotice .cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

#cookieNotice h5 {
  font-family: 'Quicksand', sans-serif;
  font-weight: 600;
  color: #222;
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

#cookieNotice p {
  font-family: 'Libre Baskerville', serif;
  color: #444;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

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

#cookieNotice .cookie-category {
  margin-bottom: 0.8rem;
  font-size: 0.9rem;
  color: #333;
}

#cookieNotice .cookie-category strong {
  color: hsl(144, 44%, 25%);
  font-weight: 600;
}

#cookieNotice .cookie-category.required {
  color: #666;
}

#cookieNotice .btn-accept-all {
  background: hsl(144, 44%, 33%);
  border: none;
  color: #ffffff;
  padding: 0.75rem 2rem;
  font-family: 'Quicksand', sans-serif;
  font-weight: 600;
  border-radius: 6px;
  transition: all 0.3s ease;
  margin-right: 0.75rem;
  margin-bottom: 0.5rem;
}

#cookieNotice .btn-accept-all:hover {
  background: hsl(144, 44%, 28%);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

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

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

#cookieNotice .btn-manage {
  background: transparent;
  border: 2px solid hsl(144, 44%, 33%);
  color: hsl(144, 44%, 33%);
  padding: 0.7rem 1.8rem;
  font-family: 'Quicksand', sans-serif;
  font-weight: 600;
  border-radius: 6px;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  margin-bottom: 0.5rem;
}

#cookieNotice .btn-manage:hover {
  background: hsl(144, 44%, 33%);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  footer {
    padding: 3rem 0 1rem;
  }
  
  footer h5 {
    margin-top: 2rem;
  }
  
  footer h5:first-child {
    margin-top: 0;
  }
  
  #cookieNotice {
    padding: 1rem 0;
  }
  
  #cookieNotice .btn-accept-all,
  #cookieNotice .btn-reject,
  #cookieNotice .btn-manage {
    width: 100%;
    margin-right: 0;
    margin-bottom: 0.75rem;
  }
}

.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(144, 44%, 33%)20; padding-bottom: 2rem; }
.article-header h1 { font-size: 2.5rem; margin-bottom: 1rem; font-family: Quicksand, sans-serif; color: hsl(144, 44%, 18%); }
.article-meta { color: #666; font-size: 0.95rem; margin-bottom: 1.5rem; }
.article-meta i { color: hsl(144, 44%, 33%); }
.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(144, 44%, 18%); font-family: Quicksand, sans-serif; margin-top: 2rem; }
.blog-article h3 { color: hsl(144, 44%, 18%); font-family: Quicksand, sans-serif; }
.blog-article a { color: hsl(144, 44%, 33%); }
.blog-article a:hover { color: hsl(144, 44%, 58%); }
.blog-article ul, .blog-article ol { margin: 1rem 0; padding-left: 1.5rem; }
.blog-article blockquote { border-left: 4px solid hsl(144, 44%, 33%); 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; }

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

.contact-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: hsl(144, 44%, 58%, 0.1);
  border-radius: 50%;
  z-index: 0;
}

.contact-section::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: hsl(144, 44%, 33%, 0.05);
  border-radius: 50%;
  z-index: 0;
}

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

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

.contact-header h2 {
  font-family: 'Quicksand', sans-serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: hsl(144, 44%, 18%);
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
}

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

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

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

.contact-form-wrapper {
  background: #ffffff;
  padding: 45px;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(144, 44%, 58%, 0.1);
}

.contact-form-wrapper h3 {
  font-family: 'Quicksand', sans-serif;
  font-size: 1.8rem;
  font-weight: 600;
  color: hsl(144, 44%, 18%);
  margin-bottom: 30px;
}

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

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

.contact-form label span {
  color: hsl(144, 44%, 33%);
}

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

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: hsl(144, 44%, 58%);
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(144, 44%, 58%, 0.1);
}

.contact-form textarea {
  min-height: 140px;
  resize: vertical;
}

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

.contact-form button:hover {
  background: hsl(144, 44%, 18%);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

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

.contact-info-card {
  background: #ffffff;
  padding: 35px;
  border-radius: 12px;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.06);
  border-left: 4px solid hsl(144, 44%, 58%);
  transition: all 0.3s ease;
}

.contact-info-card:hover {
  transform: translateX(5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.contact-info-card h4 {
  font-family: 'Quicksand', sans-serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: hsl(144, 44%, 18%);
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.contact-info-card h4::before {
  content: '';
  width: 8px;
  height: 8px;
  background: hsl(144, 44%, 58%);
  border-radius: 50%;
}

.contact-info-card p {
  color: #555;
  font-size: 1rem;
  line-height: 1.7;
  margin: 0;
}

.contact-info-card a {
  color: hsl(144, 44%, 33%);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.contact-info-card a:hover {
  color: hsl(144, 44%, 18%);
  text-decoration: underline;
}

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

.working-hours-list li {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid #f0f0f0;
  color: #555;
}

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

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

.location-highlight {
  background: hsl(144, 44%, 58%, 0.1);
  padding: 25px;
  border-radius: 10px;
  margin-top: 30px;
  text-align: center;
}

.location-highlight p {
  font-family: 'Quicksand', sans-serif;
  color: hsl(144, 44%, 18%);
  font-size: 1.05rem;
  font-weight: 600;
  margin: 0;
}

@media (max-width: 992px) {
  .contact-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contact-header h2 {
    font-size: 2.3rem;
  }

  .contact-form-wrapper {
    padding: 35px;
  }
}

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

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

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

  .contact-form-wrapper {
    padding: 25px;
  }

  .contact-info-card {
    padding: 25px;
  }

  .contact-form button {
    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');

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

  .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(--accent-color);
  }

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

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

  .policy-content h3 {
    font-size: 1.35rem;
    margin-top: 1.75rem;
    margin-bottom: 1rem;
    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: 700;
    transition: color 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.75rem;
  }

  .policy-content strong {
    color: var(--secondary-color);
    font-weight: 700;
  }

  .last-updated {
    background-color: hsl(144, 44%, 95%);
    border-left: 4px solid var(--accent-color);
    padding: 1rem 1.5rem;
    margin-bottom: 2rem;
    font-style: italic;
  }

  .contact-box {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 2rem;
    border-radius: 10px;
    margin-top: 3rem;
  }

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

  .contact-box a {
    color: var(--accent-color);
    font-weight: 700;
  }

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

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

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

  .cookie-table td {
    font-size: 0.95rem;
  }

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

.faq-section h2 {
  font-family: 'Quicksand', sans-serif;
  font-weight: 700;
  color: hsl(144, 44%, 18%);
  font-size: 2.5rem;
  margin-bottom: 1rem;
  text-align: center;
}

.faq-intro {
  text-align: center;
  color: #555;
  font-size: 1.1rem;
  margin-bottom: 3rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

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

.faq-accordion .accordion-item {
  border: 1px solid #e0e0e0;
  margin-bottom: 1rem;
  border-radius: 8px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.faq-accordion .accordion-item:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.faq-accordion .accordion-button {
  font-family: 'Quicksand', sans-serif;
  font-weight: 600;
  font-size: 1.15rem;
  color: hsl(144, 44%, 18%);
  background-color: #ffffff;
  padding: 1.25rem 1.5rem;
  border: none;
  transition: all 0.3s ease;
}

.faq-accordion .accordion-button:not(.collapsed) {
  background-color: hsl(144, 44%, 33%);
  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='%23396d4a'%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.5rem;
  color: #444;
  font-size: 1rem;
  line-height: 1.8;
  background-color: #fafafa;
}

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

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

.faq-accordion .accordion-body strong {
  color: hsl(144, 44%, 18%);
  font-weight: 600;
}

.faq-cta {
  text-align: center;
  margin-top: 3rem;
  padding: 2rem;
  background: linear-gradient(135deg, hsl(144, 44%, 33%) 0%, hsl(144, 44%, 18%) 100%);
  border-radius: 12px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.faq-cta h3 {
  font-family: 'Quicksand', sans-serif;
  color: #ffffff;
  font-size: 1.75rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.faq-cta p {
  color: #f0f0f0;
  font-size: 1.05rem;
  margin-bottom: 1.5rem;
}

.faq-cta-btn {
  display: inline-block;
  padding: 0.9rem 2.5rem;
  background-color: #ffffff;
  color: hsl(144, 44%, 18%);
  font-family: 'Quicksand', sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
  text-decoration: none;
  border-radius: 50px;
  transition: all 0.3s ease;
  border: 2px solid #ffffff;
}

.faq-cta-btn:hover {
  background-color: transparent;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

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

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

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

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

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

  .faq-cta h3 {
    font-size: 1.5rem;
  }

  .faq-cta p {
    font-size: 1rem;
  }

  .faq-cta-btn {
    padding: 0.8rem 2rem;
    font-size: 1rem;
  }
}

.newsletter-section {
    background: linear-gradient(135deg, hsl(144, 44%, 33%) 0%, hsl(144, 44%, 18%) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.newsletter-section::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-content {
    position: relative;
    z-index: 2;
}

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

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

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

.newsletter-form-wrapper {
    display: flex;
    gap: 15px;
    align-items: stretch;
}

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

.newsletter-input:focus {
    outline: none;
    border-color: hsl(144, 44%, 58%);
    background: #ffffff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

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

.newsletter-submit {
    padding: 16px 40px;
    font-family: 'Quicksand', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: #ffffff;
    background: hsl(144, 44%, 58%);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.newsletter-submit:hover {
    background: hsl(144, 54%, 65%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

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

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

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

.newsletter-benefit-icon {
    width: 20px;
    height: 20px;
    background: hsl(144, 44%, 58%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.newsletter-benefit-icon::before {
    content: '✓';
    color: #ffffff;
    font-weight: bold;
    font-size: 0.85rem;
}

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

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

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

    .newsletter-form-wrapper {
        flex-direction: column;
    }

    .newsletter-submit {
        width: 100%;
    }

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

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

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

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

    .newsletter-submit {
        padding: 14px 30px;
    }
}

@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@400;500;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: hsl(144, 44%, 18%);
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
  }

  .hero-section h2 {
    font-family: 'Quicksand', sans-serif;
    font-weight: 500;
    color: hsl(144, 44%, 33%);
    font-size: 1.8rem;
    margin-bottom: 2rem;
  }

  .hero-description {
    font-family: 'Libre Baskerville', serif;
    font-size: 1.05rem;
    color: #333;
    line-height: 1.8;
    margin-bottom: 2rem;
    text-align: left;
  }

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

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

  .hero-advantages li i {
    position: absolute;
    left: 0;
    top: 3px;
    color: hsl(144, 44%, 33%);
    font-size: 1.3rem;
  }

  .hero-image-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
  }

  .hero-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 15px;
    transition: transform 0.4s ease;
  }

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

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

  .btn-hero-primary {
    font-family: 'Quicksand', sans-serif;
    font-weight: 600;
    background-color: hsl(144, 44%, 33%);
    color: #fff;
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    border: 2px solid hsl(144, 44%, 33%);
    font-size: 1.1rem;
  }

  .btn-hero-primary:hover {
    background-color: hsl(144, 44%, 18%);
    border-color: hsl(144, 44%, 18%);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
  }

  .btn-hero-secondary {
    font-family: 'Quicksand', sans-serif;
    font-weight: 600;
    background-color: transparent;
    color: hsl(144, 44%, 33%);
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    border: 2px solid hsl(144, 44%, 33%);
    font-size: 1.1rem;
  }

  .btn-hero-secondary:hover {
    background-color: hsl(144, 44%, 33%);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
  }

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

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

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

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

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

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

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

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

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

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

.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: hsl(144, 44%, 18%);
    margin-bottom: 20px;
}

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

.service-card {
    background: #ffffff;
    border-radius: 15px;
    padding: 40px 30px;
    margin-bottom: 30px;
    box-shadow: 0 5px 20px 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(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    border-color: hsl(144, 44%, 58%);
}

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

.service-card:hover .service-icon {
    background: linear-gradient(135deg, hsl(144, 44%, 58%) 0%, hsl(144, 44%, 33%) 100%);
    transform: rotate(360deg);
}

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

.service-title {
    font-family: 'Quicksand', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: hsl(144, 44%, 18%);
    margin-bottom: 20px;
    text-align: center;
}

.service-description {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 25px;
    text-align: center;
    flex-grow: 1;
}

.service-price {
    font-family: 'Quicksand', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: hsl(144, 44%, 33%);
    text-align: center;
    margin-bottom: 20px;
}

.service-price span {
    font-size: 1rem;
    color: #888;
    font-weight: 400;
}

.service-terms {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 15px;
    margin-top: 20px;
}

.service-terms ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-terms li {
    font-size: 0.9rem;
    color: #555;
    padding: 8px 0;
    border-bottom: 1px solid #e0e0e0;
    position: relative;
    padding-left: 25px;
}

.service-terms li:last-child {
    border-bottom: none;
}

.service-terms li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: hsl(144, 44%, 33%);
    font-weight: bold;
}

.service-btn {
    background: hsl(144, 44%, 33%);
    color: #ffffff;
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    font-family: 'Quicksand', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    margin-top: 15px;
}

.service-btn:hover {
    background: hsl(144, 44%, 18%);
    color: #ffffff;
    transform: scale(1.05);
}

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

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

.blog-section h2 {
  font-family: 'Quicksand', sans-serif;
  font-weight: 700;
  color: hsl(144, 44%, 18%);
  font-size: 2.5rem;
  margin-bottom: 1rem;
  text-align: center;
}

.blog-section .section-subtitle {
  font-size: 1.1rem;
  color: #555;
  text-align: center;
  margin-bottom: 50px;
  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: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

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

.blog-card-img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
}

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

.blog-meta {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
  font-size: 0.85rem;
  color: #666;
}

.blog-meta span {
  display: flex;
  align-items: center;
  gap: 5px;
}

.blog-card h3 {
  font-family: 'Quicksand', sans-serif;
  font-weight: 600;
  font-size: 1.4rem;
  color: hsl(144, 44%, 18%);
  margin-bottom: 15px;
  line-height: 1.4;
}

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

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

.blog-read-more:hover {
  color: hsl(144, 44%, 28%);
  gap: 12px;
}

.view-all-btn {
  display: inline-block;
  margin-top: 50px;
  padding: 14px 40px;
  background: hsl(144, 44%, 33%);
  color: #ffffff;
  text-decoration: none;
  border-radius: 8px;
  font-family: 'Quicksand', sans-serif;
  font-weight: 600;
  font-size: 1.05rem;
  transition: background 0.3s ease, transform 0.2s ease;
  border: none;
}

.view-all-btn:hover {
  background: hsl(144, 44%, 28%);
  color: #ffffff;
  transform: scale(1.05);
}

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

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

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

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

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

  .blog-card-body {
    padding: 20px;
  }
}

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

.testimonials-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: hsl(144, 44%, 58%, 0.1);
  border-radius: 50%;
  z-index: 0;
}

.testimonials-section::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: hsl(144, 44%, 33%, 0.05);
  border-radius: 50%;
  z-index: 0;
}

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

.section-title-testimonials {
  font-family: 'Quicksand', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: hsl(144, 44%, 18%);
  text-align: center;
  margin-bottom: 1rem;
}

.section-subtitle-testimonials {
  font-family: 'Libre Baskerville', serif;
  font-size: 1.1rem;
  color: #555;
  text-align: center;
  margin-bottom: 50px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

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

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

.testimonial-card-alt {
  background: linear-gradient(135deg, hsl(144, 44%, 33%) 0%, hsl(144, 44%, 18%) 100%);
  border-left: 4px solid hsl(144, 44%, 58%);
}

.testimonial-card-alt .testimonial-text,
.testimonial-card-alt .customer-name,
.testimonial-card-alt .customer-location,
.testimonial-card-alt .testimonial-date {
  color: #ffffff !important;
}

.testimonial-card-alt .star-rating i {
  color: hsl(144, 44%, 58%) !important;
}

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

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

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

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

.customer-location {
  font-family: 'Libre Baskerville', serif;
  font-size: 0.9rem;
  color: #666;
  display: flex;
  align-items: center;
  gap: 5px;
}

.customer-location i {
  color: hsl(144, 44%, 58%);
  font-size: 0.85rem;
}

.star-rating {
  display: flex;
  gap: 3px;
  margin-bottom: 15px;
}

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

.star-rating i.far {
  color: #ddd;
}

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

.testimonial-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 15px;
  border-top: 1px solid #eee;
  margin-top: auto;
}

.testimonial-card-alt .testimonial-footer {
  border-top-color: rgba(255,255,255,0.2);
}

.testimonial-date {
  font-family: 'Libre Baskerville', serif;
  font-size: 0.85rem;
  color: #888;
}

.verified-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: hsl(144, 44%, 58%, 0.15);
  color: hsl(144, 44%, 33%);
  padding: 5px 12px;
  border-radius: 20px;
  font-family: 'Quicksand', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
}

.verified-badge i {
  font-size: 0.9rem;
}

.testimonial-card-alt .verified-badge {
  background: rgba(255,255,255,0.2);
  color: #ffffff;
}

.testimonial-highlight {
  background: hsl(144, 44%, 58%, 0.1);
  border-left: 3px solid hsl(144, 44%, 58%);
  padding: 20px;
  border-radius: 8px;
  margin-bottom: 15px;
}

.testimonial-highlight-text {
  font-family: 'Quicksand', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: hsl(144, 44%, 18%);
  font-style: italic;
}

.testimonial-card-compact {
  padding: 25px;
}

.testimonial-card-compact .testimonial-text {
  font-size: 0.95rem;
}

@media (max-width: 768px) {
  .testimonials-section {
    padding: 60px 0;
  }
  
  .section-title-testimonials {
    font-size: 2rem;
  }
  
  .section-subtitle-testimonials {
    font-size: 1rem;
    margin-bottom: 40px;
  }
  
  .testimonial-card {
    padding: 25px;
  }
  
  .customer-avatar {
    width: 50px;
    height: 50px;
    font-size: 1.3rem;
  }
  
  .customer-name {
    font-size: 1.1rem;
  }
  
  .testimonial-text {
    font-size: 0.95rem;
  }
}

.offer-section {
  background: linear-gradient(135deg, hsl(144, 44%, 33%) 0%, hsl(144, 44%, 18%) 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

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

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

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

.offer-badge {
  display: inline-block;
  background: hsl(144, 44%, 58%);
  color: #fff;
  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;
  font-size: 3rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 25px;
  line-height: 1.2;
}

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

.offer-deadline-wrapper {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 40px;
  margin: 50px 0;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

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

.deadline-date {
  font-family: 'Quicksand', sans-serif;
  font-size: 3.5rem;
  font-weight: 700;
  color: hsl(144, 44%, 58%);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.calendar-icon {
  width: 60px;
  height: 60px;
  background: #fff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: hsl(144, 44%, 33%);
}

.offer-benefits {
  margin: 50px 0;
}

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

.benefit-item {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 15px;
  padding: 25px;
  display: flex;
  align-items: flex-start;
  gap: 15px;
  transition: all 0.3s ease;
}

.benefit-item:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.benefit-icon {
  width: 50px;
  height: 50px;
  background: hsl(144, 44%, 58%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.5rem;
  color: #fff;
}

.benefit-text {
  font-family: 'Libre Baskerville', serif;
  font-size: 1rem;
  color: #f8f9fa;
  line-height: 1.6;
  margin: 0;
}

.offer-cta-wrapper {
  margin-top: 50px;
}

.offer-cta-btn {
  display: inline-block;
  background: hsl(144, 44%, 58%);
  color: #fff;
  font-family: 'Quicksand', sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  padding: 18px 50px;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.offer-cta-btn:hover {
  background: hsl(144, 44%, 48%);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.discount-badge {
  position: absolute;
  top: 30px;
  right: 30px;
  background: hsl(144, 44%, 58%);
  color: #fff;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: 'Quicksand', sans-serif;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  transform: rotate(15deg);
}

.discount-percentage {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
}

.discount-text {
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
}

@media (max-width: 768px) {
  .offer-heading {
    font-size: 2rem;
  }
  
  .deadline-date {
    font-size: 2.5rem;
    flex-direction: column;
    gap: 10px;
  }
  
  .calendar-icon {
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
  }
  
  .benefits-grid {
    grid-template-columns: 1fr;
  }
  
  .discount-badge {
    width: 90px;
    height: 90px;
    top: 20px;
    right: 20px;
  }
  
  .discount-percentage {
    font-size: 1.8rem;
  }
  
  .discount-text {
    font-size: 0.7rem;
  }
  
  .offer-deadline-wrapper {
    padding: 25px;
  }
}

.credentials-section {
    padding: 60px 0;
    background-color: #f8f9fa;
  }

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

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

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

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

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

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

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

    .credential-card {
      padding: 20px 10px;
    }

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

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

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

.disclaimer-section .icon-wrapper {
  text-align: center;
  margin-bottom: 2rem;
}

.disclaimer-section .info-icon {
  font-size: 4rem;
  color: hsl(144, 44%, 33%);
  opacity: 0.9;
}

.disclaimer-content {
  background: #ffffff;
  border-left: 4px solid hsl(144, 44%, 33%);
  padding: 2.5rem;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  max-width: 900px;
  margin: 0 auto;
}

.disclaimer-content p {
  font-size: 1rem;
  line-height: 1.8;
  color: #333;
  margin-bottom: 1.2rem;
  text-align: justify;
}

.disclaimer-content p:last-child {
  margin-bottom: 0;
}

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

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

  .disclaimer-content {
    padding: 1.5rem;
  }

  .disclaimer-content p {
    font-size: 0.95rem;
  }

  .disclaimer-section .info-icon {
    font-size: 3rem;
  }
}

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

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

  .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(--accent-color);
  }

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

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

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

  .policy-content a {
    color: var(--primary-color);
    text-decoration: none;
    border-bottom: 1px solid var(--accent-color);
    transition: all 0.3s ease;
  }

  .policy-content a:hover {
    color: var(--accent-color);
    border-bottom-color: var(--primary-color);
  }

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

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

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

  .effective-date {
    background-color: hsl(144, 44%, 95%);
    padding: 1rem 1.5rem;
    border-left: 4px solid var(--primary-color);
    margin-bottom: 2rem;
    font-style: italic;
  }

  .contact-box {
    background-color: hsl(144, 44%, 97%);
    border: 2px solid var(--accent-color);
    border-radius: 8px;
    padding: 2rem;
    margin-top: 2rem;
  }

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

  .contact-box p {
    margin-bottom: 0.5rem;
  }

  .highlight-section {
    background-color: hsl(144, 44%, 98%);
    padding: 1.5rem;
    border-radius: 6px;
    margin: 1.5rem 0;
  }

@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(144, 44%, 33%);
    --secondary-color: hsl(144, 44%, 18%);
    --accent-color: hsl(144, 44%, 58%);
  }
  
  .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;
    color: var(--primary-color);
    font-weight: 600;
  }
  
  .policy-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 3px solid var(--accent-color);
  }
  
  .policy-content h2 {
    font-size: 1.75rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: var(--secondary-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;
    border-bottom: 1px solid var(--accent-color);
    transition: all 0.3s ease;
  }
  
  .policy-content a:hover {
    color: var(--accent-color);
    border-bottom-color: var(--primary-color);
  }
  
  .policy-content ul,
  .policy-content ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
  }
  
  .policy-content li {
    margin-bottom: 0.75rem;
  }
  
  .policy-content p {
    margin-bottom: 1.25rem;
  }
  
  .last-updated {
    background-color: #f8f9fa;
    padding: 1rem;
    border-left: 4px solid var(--accent-color);
    margin-bottom: 2rem;
    font-style: italic;
  }
  
  .contact-box {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 2rem;
    border-radius: 10px;
    margin-top: 3rem;
  }
  
  .contact-box h3 {
    color: white;
    margin-top: 0;
  }
  
  .contact-box a {
    color: var(--accent-color);
    border-bottom-color: white;
  }
  
  .contact-box a:hover {
    color: white;
  }
  
  .section-divider {
    height: 2px;
    background: linear-gradient(to right, var(--accent-color), transparent);
    margin: 2rem 0;
  }