:root {
            --primary-color: hsl(129, 60%, 49%);
            --secondary-color: hsl(129, 60%, 34%);
            --accent-color: hsl(129, 60%, 74%);
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Crimson Text', serif;
            color: #333;
            line-height: 1.6;
        }
        
        h1, h2, h3, h4, h5, h6 {
            font-family: 'Work Sans', sans-serif;
            font-weight: 600;
        }
        
        .navbar {
            background-color: #fff;
            box-shadow: 0 2px 10px rgba(0,0,0,0.08);
            padding: 1rem 0;
        }
        
        .navbar-brand {
            display: flex;
            align-items: center;
            gap: 12px;
            font-family: 'Work Sans', sans-serif;
            font-weight: 700;
            font-size: 1.5rem;
            color: #222;
            text-decoration: none;
        }
        
        .navbar-brand:hover {
            color: var(--primary-color);
        }
        
        .navbar-nav .nav-link {
            font-family: 'Work Sans', sans-serif;
            color: #333;
            font-weight: 500;
            padding: 0.5rem 1rem;
            transition: color 0.3s ease;
        }
        
        .navbar-nav .nav-link:hover {
            color: var(--primary-color);
        }
        
        .navbar-toggler {
            border: 2px solid var(--primary-color);
            padding: 0.5rem 0.75rem;
        }
        
        .navbar-toggler:focus {
            box-shadow: 0 0 0 0.25rem rgba(76, 175, 80, 0.25);
        }
        
        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='hsl(129, 60%, 49%)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        @media (max-width: 991px) {
            .navbar-collapse {
                background-color: #fff;
                padding: 1rem;
                margin-top: 1rem;
                border-radius: 8px;
                box-shadow: 0 4px 12px rgba(0,0,0,0.1);
            }
            
            .navbar-nav .nav-link {
                padding: 0.75rem 1rem;
            }
        }

@import url('https://fonts.googleapis.com/css2?family=Work+Sans:wght@400;600;700&family=Crimson+Text:wght@400;600;700&display=swap');

  #about {
    font-family: 'Crimson Text', serif;
    background-color: #ffffff;
    padding: 80px 0;
  }

  #about h1,
  #about h2,
  #about h3,
  #about h4 {
    font-family: 'Work Sans', sans-serif;
    color: #222;
  }

  #about .about-hero {
    background: linear-gradient(135deg, hsl(129, 60%, 49%) 0%, hsl(129, 60%, 34%) 100%);
    padding: 60px 0;
    margin-bottom: 60px;
    border-radius: 0 0 50px 50px;
  }

  #about .about-hero h1 {
    color: #ffffff;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: center;
  }

  #about .about-hero p {
    color: #ffffff;
    font-size: 1.3rem;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
  }

  #about .story-section {
    margin-bottom: 70px;
  }

  #about .story-content {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-bottom: 50px;
  }

  #about .story-text {
    flex: 1;
  }

  #about .story-text h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: hsl(129, 60%, 34%);
    margin-bottom: 25px;
  }

  #about .story-text p {
    font-size: 1.15rem;
    color: #444;
    line-height: 1.8;
    margin-bottom: 20px;
  }

  #about .story-image {
    flex: 1;
  }

  #about .story-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  }

  #about .values-section {
    background-color: #f8f9fa;
    padding: 60px 0;
    margin: 70px 0;
    border-radius: 30px;
  }

  #about .values-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: hsl(129, 60%, 34%);
    text-align: center;
    margin-bottom: 50px;
  }

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

  #about .value-card {
    background: #ffffff;
    padding: 35px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

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

  #about .value-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: hsl(129, 60%, 49%);
    margin-bottom: 15px;
  }

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

  #about .mission-section {
    margin-top: 70px;
  }

  #about .mission-content {
    display: flex;
    align-items: center;
    gap: 50px;
    flex-direction: row-reverse;
  }

  #about .mission-text h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: hsl(129, 60%, 34%);
    margin-bottom: 25px;
  }

  #about .mission-text p {
    font-size: 1.15rem;
    color: #444;
    line-height: 1.8;
    margin-bottom: 20px;
  }

  #about .mission-image {
    flex: 1;
  }

  #about .mission-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  }

  #about .expertise-highlight {
    background: linear-gradient(135deg, hsl(129, 60%, 74%) 0%, hsl(129, 60%, 49%) 100%);
    padding: 40px;
    border-radius: 20px;
    margin-top: 50px;
    text-align: center;
  }

  #about .expertise-highlight h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
  }

  #about .expertise-highlight p {
    font-size: 1.2rem;
    color: #ffffff;
    line-height: 1.7;
    max-width: 900px;
    margin: 0 auto;
  }

  @media (max-width: 992px) {
    #about .story-content,
    #about .mission-content {
      flex-direction: column;
    }

    #about .about-hero h1 {
      font-size: 2.3rem;
    }

    #about .about-hero p {
      font-size: 1.1rem;
    }

    #about .story-text h2,
    #about .mission-text h2 {
      font-size: 1.9rem;
    }

    #about .values-section h2 {
      font-size: 2rem;
    }
  }

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

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

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

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

    #about .expertise-highlight {
      padding: 30px 20px;
    }
  }

@import url('https://fonts.googleapis.com/css2?family=Work+Sans:wght@400;500;600;700&family=Crimson+Text:wght@400;600;700&display=swap');

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

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

  #portfolio .section-title {
    font-family: 'Work Sans', sans-serif;
    font-size: 2.8rem;
    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(129, 60%, 49%);
    border-radius: 2px;
  }

  #portfolio .section-subtitle {
    font-size: 1.2rem;
    color: #555;
    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: 'Work Sans', sans-serif;
    padding: 12px 30px;
    border: 2px solid hsl(129, 60%, 49%);
    background: transparent;
    color: #333;
    font-weight: 600;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
  }

  #portfolio .filter-btn:hover,
  #portfolio .filter-btn.active {
    background: hsl(129, 60%, 49%);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(72, 187, 120, 0.3);
  }

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

  #portfolio .portfolio-item {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 25px 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(0, 0, 0, 0.15);
  }

  #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(135deg, rgba(72, 187, 120, 0.9), rgba(46, 125, 50, 0.9));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
  }

  #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(129, 60%, 49%);
    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: 'Work Sans', sans-serif;
    font-size: 0.85rem;
    color: hsl(129, 60%, 49%);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
  }

  #portfolio .portfolio-title {
    font-family: 'Work Sans', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 15px;
    line-height: 1.3;
  }

  #portfolio .portfolio-description {
    font-size: 1.05rem;
    color: #666;
    line-height: 1.7;
    margin-bottom: 0;
  }

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

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

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

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

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

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

  #portfolio .modal-category {
    font-family: 'Work Sans', sans-serif;
    display: inline-block;
    padding: 8px 20px;
    background: hsl(129, 60%, 74%);
    color: #222;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
  }

  #portfolio .modal-description {
    font-size: 1.1rem;
    color: #444;
    line-height: 1.8;
    margin-bottom: 25px;
  }

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

  #portfolio .project-details h5 {
    font-family: 'Work Sans', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 20px;
  }

  #portfolio .detail-item {
    display: flex;
    margin-bottom: 15px;
    font-size: 1.05rem;
  }

  #portfolio .detail-label {
    font-family: 'Work Sans', sans-serif;
    font-weight: 600;
    color: #333;
    min-width: 140px;
  }

  #portfolio .detail-value {
    color: #666;
  }

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

    #portfolio .section-title {
      font-size: 2.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-body {
      padding: 25px;
    }

    #portfolio .detail-item {
      flex-direction: column;
      gap: 5px;
    }

    #portfolio .detail-label {
      min-width: auto;
    }
  }

  @media (max-width: 480px) {
    #portfolio .section-title {
      font-size: 1.8rem;
    }

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

    #portfolio .filter-btn {
      padding: 8px 16px;
      font-size: 0.85rem;
    }
  }

@import url('https://fonts.googleapis.com/css2?family=Work+Sans:wght@400;600;700&family=Crimson+Text:wght@400;600;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%);
  font-family: 'Crimson Text', serif;
}

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

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

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

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

#advantages .advantage-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 35px 25px;
  height: 100%;
  transition: all 0.4s ease;
  border: 2px solid #f0f0f0;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  position: relative;
  overflow: hidden;
}

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

#advantages .advantage-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.12);
  border-color: hsl(129, 60%, 74%);
}

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

#advantages .icon-wrapper {
  width: 75px;
  height: 75px;
  background: linear-gradient(135deg, hsl(129, 60%, 49%) 0%, hsl(129, 60%, 34%) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  transition: all 0.4s ease;
  box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
}

#advantages .advantage-card:hover .icon-wrapper {
  transform: rotate(360deg) scale(1.1);
  box-shadow: 0 6px 25px rgba(76, 175, 80, 0.5);
}

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

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

#advantages .advantage-card:hover h3 {
  color: hsl(129, 60%, 34%);
}

#advantages .advantage-card p {
  font-size: 1.05rem;
  color: #666;
  line-height: 1.7;
  text-align: center;
  margin: 0;
}

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

@media (max-width: 767px) {
  #advantages {
    padding: 50px 0;
  }
  
  #advantages .section-header h2 {
    font-size: 1.75rem;
  }
  
  #advantages .section-header p {
    font-size: 1rem;
  }
  
  #advantages .advantage-card {
    padding: 30px 20px;
  }
  
  #advantages .icon-wrapper {
    width: 65px;
    height: 65px;
  }
  
  #advantages .icon-wrapper i {
    font-size: 1.75rem;
  }
  
  #advantages .advantage-card h3 {
    font-size: 1.25rem;
  }
}

@import url('https://fonts.googleapis.com/css2?family=Work+Sans:wght@400;600;700&family=Crimson+Text:wght@400;600;700&display=swap');

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

  #statistics::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, hsl(129, 60%, 49%) 0%, hsl(129, 60%, 34%) 100%);
  }

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

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

  #statistics .section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: hsl(129, 60%, 49%);
  }

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

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

  #statistics .stat-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 35px 25px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
  }

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

  #statistics .stat-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    border-color: hsl(129, 60%, 74%);
  }

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

  #statistics .stat-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, hsl(129, 60%, 49%) 0%, hsl(129, 60%, 34%) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
  }

  #statistics .stat-card:hover .stat-icon {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, hsl(129, 60%, 34%) 0%, hsl(129, 60%, 49%) 100%);
  }

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

  #statistics .stat-number {
    font-family: 'Work Sans', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: hsl(129, 60%, 34%);
    margin: 15px 0 8px;
    line-height: 1.2;
  }

  #statistics .stat-label {
    font-size: 1.1rem;
    color: #555;
    font-weight: 600;
    margin-bottom: 8px;
  }

  #statistics .stat-context {
    font-size: 0.95rem;
    color: #777;
    line-height: 1.5;
  }

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

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

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

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

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

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

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

footer {
  background: linear-gradient(135deg, hsl(129, 60%, 34%) 0%, hsl(129, 60%, 49%) 100%);
  color: #ffffff;
  padding: 60px 0 0;
  font-family: 'Crimson Text', serif;
  margin-top: 80px;
}

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

footer p, footer a, footer li {
  color: #f8f9fa;
  font-size: 1rem;
  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(129, 60%, 74%);
  padding-left: 5px;
}

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

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

.footer-description {
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 25px;
}

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

.contact-info-item i {
  margin-right: 10px;
  color: hsl(129, 60%, 74%);
  margin-top: 5px;
}

.footer-bottom {
  background-color: hsl(129, 60%, 29%);
  padding: 20px 0;
  margin-top: 50px;
  text-align: center;
  color: #f8f9fa;
  font-size: 0.95rem;
}

.footer-links-section {
  margin-bottom: 30px;
}

#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(129, 60%, 49%);
  font-family: 'Crimson Text', serif;
}

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

#cookieNotice p {
  color: #555;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

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

.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: 'Work Sans', sans-serif;
  font-weight: 600;
  color: #333;
  font-size: 1.05rem;
  margin-bottom: 5px;
}

.cookie-category-required {
  color: hsl(129, 60%, 49%);
  font-size: 0.85rem;
  font-weight: 600;
}

.cookie-category-optional {
  color: #6c757d;
  font-size: 0.85rem;
  font-weight: 600;
}

.cookie-category-desc {
  color: #666;
  font-size: 0.95rem;
  margin-top: 5px;
}

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

.btn-accept-all {
  background-color: hsl(129, 60%, 49%);
  color: #ffffff;
  border: none;
  padding: 12px 30px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
  font-family: 'Work Sans', sans-serif;
}

.btn-accept-all:hover {
  background-color: hsl(129, 60%, 34%);
  transform: translateY(-2px);
}

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

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

.btn-manage-settings {
  background-color: transparent;
  color: hsl(129, 60%, 34%);
  border: 2px solid hsl(129, 60%, 49%);
  padding: 10px 28px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Work Sans', sans-serif;
  text-decoration: none;
  display: inline-block;
}

.btn-manage-settings:hover {
  background-color: hsl(129, 60%, 49%);
  color: #ffffff;
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  footer {
    padding: 40px 0 0;
    text-align: center;
  }

  .footer-links-section {
    margin-bottom: 30px;
  }

  .contact-info-item {
    justify-content: center;
  }

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

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

  #cookieNotice {
    padding: 20px 0;
  }
}

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

.article-content { max-width: 900px; margin: 0 auto; padding: 4rem 2rem; font-family: Crimson Text, sans-serif; }
.article-header { margin-bottom: 3rem; border-bottom: 2px solid hsl(129, 60%, 49%)20; padding-bottom: 2rem; }
.article-header h1 { font-size: 2.5rem; margin-bottom: 1rem; font-family: Work Sans, sans-serif; color: hsl(129, 60%, 34%); }
.article-meta { color: #666; font-size: 0.95rem; margin-bottom: 1.5rem; }
.article-meta i { color: hsl(129, 60%, 49%); }
.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(129, 60%, 34%); font-family: Work Sans, sans-serif; margin-top: 2rem; }
.blog-article h3 { color: hsl(129, 60%, 34%); font-family: Work Sans, sans-serif; }
.blog-article a { color: hsl(129, 60%, 49%); }
.blog-article a:hover { color: hsl(129, 60%, 74%); }
.blog-article ul, .blog-article ol { margin: 1rem 0; padding-left: 1.5rem; }
.blog-article blockquote { border-left: 4px solid hsl(129, 60%, 49%); padding-left: 1rem; margin: 1.5rem 0; font-style: italic; color: #555; }

@import url('https://fonts.googleapis.com/css2?family=Work+Sans:wght@400;500;600;700&family=Crimson+Text:wght@400;600;700&display=swap');

.contact-section {
  font-family: 'Crimson Text', 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(129, 60%, 74%);
  opacity: 0.1;
  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: 'Work Sans', sans-serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: #222;
  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(129, 60%, 49%);
  border-radius: 2px;
}

.contact-header p {
  font-size: 1.2rem;
  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: 12px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.08);
  border: 1px solid hsl(129, 60%, 90%);
}

.contact-form-wrapper h3 {
  font-family: 'Work Sans', sans-serif;
  font-size: 1.8rem;
  font-weight: 600;
  color: #222;
  margin-bottom: 30px;
}

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

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

.contact-form label .required {
  color: hsl(129, 60%, 49%);
  margin-left: 3px;
}

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

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

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

.contact-form .submit-btn {
  width: 100%;
  padding: 16px 30px;
  background: hsl(129, 60%, 49%);
  color: #ffffff;
  border: none;
  border-radius: 8px;
  font-family: 'Work Sans', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 10px;
}

.contact-form .submit-btn:hover {
  background: hsl(129, 60%, 34%);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(56, 142, 60, 0.3);
}

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

.info-card {
  background: #ffffff;
  padding: 35px;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.06);
  border-left: 5px solid hsl(129, 60%, 49%);
  transition: all 0.3s ease;
}

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

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

.info-card h4 .icon {
  width: 40px;
  height: 40px;
  background: hsl(129, 60%, 74%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: hsl(129, 60%, 34%);
  font-size: 1.2rem;
  flex-shrink: 0;
}

.info-card p {
  font-size: 1.1rem;
  color: #555;
  line-height: 1.8;
  margin-bottom: 8px;
}

.info-card a {
  color: hsl(129, 60%, 34%);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.info-card a:hover {
  color: hsl(129, 60%, 49%);
  text-decoration: underline;
}

.info-card .address-text {
  margin-bottom: 5px;
}

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

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

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

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

.hours-list .time {
  color: hsl(129, 60%, 34%);
  font-weight: 600;
}

.additional-info {
  background: linear-gradient(135deg, hsl(129, 60%, 49%) 0%, hsl(129, 60%, 34%) 100%);
  padding: 40px;
  border-radius: 12px;
  color: #ffffff;
  text-align: center;
}

.additional-info h4 {
  font-family: 'Work Sans', sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 15px;
}

.additional-info p {
  font-size: 1.05rem;
  line-height: 1.7;
  opacity: 0.95;
}

@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: 768px) {
  .contact-section {
    padding: 60px 0;
  }
  
  .contact-header {
    margin-bottom: 40px;
  }
  
  .contact-header h2 {
    font-size: 2rem;
  }
  
  .contact-header p {
    font-size: 1.1rem;
  }
  
  .contact-form-wrapper {
    padding: 30px 20px;
  }
  
  .info-card {
    padding: 25px;
  }
  
  .additional-info {
    padding: 30px 20px;
  }
}

@media (max-width: 576px) {
  .contact-header h2 {
    font-size: 1.8rem;
  }
  
  .contact-form-wrapper h3 {
    font-size: 1.5rem;
  }
  
  .info-card h4 {
    font-size: 1.2rem;
  }
  
  .hours-list li {
    flex-direction: column;
    gap: 5px;
  }
}

@import url('https://fonts.googleapis.com/css2?family=Work+Sans:wght@400;600;700&family=Crimson+Text:wght@400;600;700&display=swap');

  .policy-content {
    font-family: 'Crimson Text', serif;
    color: #2c3e50;
    line-height: 1.8;
    font-size: 1.1rem;
  }

  .policy-content h1,
  .policy-content h2,
  .policy-content h3 {
    font-family: 'Work Sans', sans-serif;
    font-weight: 700;
    color: hsl(129, 60%, 34%);
    margin-top: 2rem;
    margin-bottom: 1rem;
  }

  .policy-content h1 {
    color: hsl(129, 60%, 49%);
    font-size: 2.75rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 4px solid hsl(129, 60%, 74%);
  }

  .policy-content h2 {
    font-size: 2rem;
    margin-top: 2.5rem;
    padding-left: 1rem;
    border-left: 5px solid hsl(129, 60%, 49%);
  }

  .policy-content h3 {
    font-size: 1.5rem;
    color: hsl(129, 60%, 49%);
  }

  .policy-content a {
    color: hsl(129, 60%, 49%);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
  }

  .policy-content a:hover {
    color: hsl(129, 60%, 34%);
    text-decoration: underline;
  }

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

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

  .policy-content strong {
    color: hsl(129, 60%, 34%);
    font-weight: 700;
  }

  .info-box {
    background: linear-gradient(135deg, hsl(129, 60%, 97%) 0%, hsl(129, 60%, 94%) 100%);
    border-left: 5px solid hsl(129, 60%, 49%);
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 0.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  }

  .contact-section {
    background: hsl(129, 60%, 49%);
    color: white;
    padding: 2rem;
    border-radius: 0.5rem;
    margin-top: 3rem;
  }

  .contact-section h2 {
    color: white;
    border-left: 5px solid white;
  }

  .contact-section a {
    color: white;
    text-decoration: underline;
  }

  .contact-section a:hover {
    color: hsl(129, 60%, 94%);
  }

  .last-updated {
    font-style: italic;
    color: #6c757d;
    margin-top: 1rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 0.5rem;
    text-align: center;
  }

  .cookie-type {
    background: white;
    padding: 1.5rem;
    margin: 1.5rem 0;
    border-radius: 0.5rem;
    border: 2px solid hsl(129, 60%, 74%);
    transition: all 0.3s ease;
  }

  .cookie-type:hover {
    border-color: hsl(129, 60%, 49%);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  }

@import url('https://fonts.googleapis.com/css2?family=Work+Sans:wght@400;500;600;700&family=Crimson+Text:wght@400;600;700&display=swap');

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

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

  #faq .section-header h2 {
    font-family: 'Work Sans', sans-serif;
    font-size: 2.8rem;
    font-weight: 700;
    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(129, 60%, 49%);
    border-radius: 2px;
  }

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

  #faq .accordion {
    max-width: 900px;
    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;
    background: #ffffff;
  }

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

  #faq .accordion-button {
    font-family: 'Work Sans', sans-serif;
    font-size: 1.15rem;
    font-weight: 600;
    color: #222;
    background: #ffffff;
    padding: 25px 30px;
    border: none;
    box-shadow: none;
    transition: all 0.3s ease;
  }

  #faq .accordion-button:not(.collapsed) {
    background: hsl(129, 60%, 49%);
    color: #ffffff;
    box-shadow: none;
  }

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

  #faq .accordion-button::after {
    width: 1.5rem;
    height: 1.5rem;
    background-size: 1.5rem;
    transition: transform 0.3s ease;
  }

  #faq .accordion-button:not(.collapsed)::after {
    filter: brightness(0) invert(1);
  }

  #faq .accordion-body {
    padding: 30px;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #444;
    background: #ffffff;
    border-top: 2px solid hsl(129, 60%, 74%);
  }

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

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

  #faq .accordion-body strong {
    color: hsl(129, 60%, 34%);
    font-weight: 600;
  }

  #faq .accordion-body ul {
    margin: 15px 0;
    padding-left: 25px;
  }

  #faq .accordion-body ul li {
    margin-bottom: 10px;
    color: #444;
  }

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

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

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

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

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

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

    #faq .accordion-button {
      font-size: 1rem;
      padding: 18px 15px;
    }

    #faq .accordion-body {
      font-size: 1rem;
      padding: 18px 15px;
    }
  }

.newsletter-section {
    background: linear-gradient(135deg, hsl(129, 60%, 49%) 0%, hsl(129, 60%, 34%) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

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

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

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

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

.newsletter-description {
    font-family: 'Crimson Text', serif;
    font-size: 1.15rem;
    color: #ffffff;
    text-align: center;
    max-width: 600px;
    margin: 0 auto 2.5rem;
    line-height: 1.7;
}

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

.newsletter-form-group {
    position: relative;
    margin-bottom: 1rem;
}

.newsletter-input {
    width: 100%;
    padding: 16px 20px;
    font-family: 'Crimson Text', serif;
    font-size: 1.05rem;
    color: #333333;
    background: #ffffff;
    border: 2px solid transparent;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.newsletter-input:focus {
    outline: none;
    border-color: hsl(129, 60%, 74%);
    box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.1);
}

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

.newsletter-submit {
    width: 100%;
    padding: 16px 20px;
    font-family: 'Work Sans', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: hsl(129, 60%, 34%);
    background: #ffffff;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.newsletter-submit:hover {
    background: hsl(129, 60%, 74%);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

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

.newsletter-benefits {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 2.5rem;
}

.newsletter-benefit-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #ffffff;
    font-family: 'Crimson Text', serif;
    font-size: 1rem;
}

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

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

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

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

    .newsletter-description {
        font-size: 1.05rem;
        margin-bottom: 2rem;
    }

    .newsletter-benefits {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .newsletter-input,
    .newsletter-submit {
        font-size: 1rem;
        padding: 14px 18px;
    }
}

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

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

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

@import url('https://fonts.googleapis.com/css2?family=Work+Sans:wght@400;600;700&family=Crimson+Text:wght@400;600;700&display=swap');

  .hero-section {
    font-family: 'Crimson Text', serif;
    background-color: #ffffff;
    padding: 80px 0 60px;
  }

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

  .hero-section h2 {
    font-family: 'Work Sans', sans-serif;
    font-weight: 600;
    font-size: 1.75rem;
    color: hsl(129, 60%, 34%);
    margin-bottom: 2rem;
    line-height: 1.4;
  }

  .hero-description {
    font-size: 1.125rem;
    color: #444;
    line-height: 1.8;
    margin-bottom: 2rem;
    text-align: justify;
  }

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

  .hero-advantages li {
    font-size: 1.1rem;
    color: #333;
    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(129, 60%, 49%);
    font-size: 1.3rem;
  }

  .hero-cta {
    margin: 2.5rem 0 3rem;
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
  }

  .hero-btn-primary {
    background-color: hsl(129, 60%, 49%);
    color: #ffffff;
    font-family: 'Work Sans', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    padding: 14px 36px;
    border: none;
    border-radius: 6px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  }

  .hero-btn-primary:hover {
    background-color: hsl(129, 60%, 34%);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
  }

  .hero-btn-secondary {
    background-color: transparent;
    color: hsl(129, 60%, 34%);
    font-family: 'Work Sans', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    padding: 14px 36px;
    border: 2px solid hsl(129, 60%, 49%);
    border-radius: 6px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
  }

  .hero-btn-secondary:hover {
    background-color: hsl(129, 60%, 74%);
    color: #222;
    border-color: hsl(129, 60%, 74%);
    transform: translateY(-2px);
  }

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

  .hero-image-wrapper img {
    width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
  }

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

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

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

    .hero-description {
      font-size: 1.05rem;
      text-align: left;
    }

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

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

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

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

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

@import url('https://fonts.googleapis.com/css2?family=Work+Sans:wght@400;600;700&family=Crimson+Text:wght@400;600;700&display=swap');

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

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

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

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

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

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

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

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

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

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

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

  #blog .blog-meta {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 15px;
    flex-wrap: wrap;
  }

  #blog .meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.9rem;
    color: #666;
  }

  #blog .meta-icon {
    color: hsl(129, 60%, 49%);
    font-size: 1rem;
  }

  #blog .blog-title {
    font-family: 'Work Sans', sans-serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: #222;
    margin-bottom: 15px;
    line-height: 1.4;
    transition: color 0.3s ease;
  }

  #blog .blog-card:hover .blog-title {
    color: hsl(129, 60%, 49%);
  }

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

  #blog .read-more-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: hsl(129, 60%, 34%);
    font-weight: 600;
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.3s ease;
    margin-top: auto;
  }

  #blog .read-more-link:hover {
    color: hsl(129, 60%, 49%);
    gap: 12px;
  }

  #blog .read-more-arrow {
    transition: transform 0.3s ease;
  }

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

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

  #blog .btn-view-all {
    display: inline-block;
    padding: 16px 45px;
    background: hsl(129, 60%, 49%);
    color: #ffffff;
    font-family: 'Work Sans', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(74, 194, 107, 0.3);
  }

  #blog .btn-view-all:hover {
    background: hsl(129, 60%, 34%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(74, 194, 107, 0.4);
    color: #ffffff;
  }

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

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

    #blog .section-subtitle {
      font-size: 1.1rem;
    }

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

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

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

    #blog .blog-excerpt {
      font-size: 1rem;
    }

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

@import url('https://fonts.googleapis.com/css2?family=Work+Sans:wght@400;600;700&family=Crimson+Text:wght@400;600&display=swap');

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

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

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

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

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

  #credentials .trust-text {
    font-family: 'Work Sans', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    color: #333;
    margin: 0;
    line-height: 1.4;
  }

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

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

    #credentials .trust-card {
      padding: 20px 15px;
      margin-bottom: 15px;
    }

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

.offer-section {
  background: linear-gradient(135deg, hsl(129, 60%, 49%) 0%, hsl(129, 60%, 34%) 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: #fff;
  color: hsl(129, 60%, 34%);
  padding: 8px 24px;
  border-radius: 50px;
  font-family: 'Work Sans', sans-serif;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

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

.offer-description {
  font-family: 'Crimson Text', serif;
  font-size: 20px;
  color: #fff;
  margin-bottom: 40px;
  line-height: 1.7;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

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

.deadline-label {
  font-family: 'Work Sans', sans-serif;
  font-size: 18px;
  color: #333;
  margin-bottom: 16px;
  font-weight: 500;
}

.deadline-date {
  font-family: 'Work Sans', sans-serif;
  font-size: 42px;
  font-weight: 700;
  color: hsl(129, 60%, 34%);
  margin-bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.calendar-icon {
  width: 48px;
  height: 48px;
  background: hsl(129, 60%, 74%);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.calendar-icon svg {
  width: 28px;
  height: 28px;
  fill: hsl(129, 60%, 34%);
}

.offer-benefits {
  list-style: none;
  padding: 0;
  margin: 50px 0;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.offer-benefits li {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 12px;
  padding: 24px 28px;
  margin-bottom: 16px;
  font-family: 'Crimson Text', serif;
  font-size: 19px;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 20px;
  transition: all 0.3s ease;
}

.offer-benefits li:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateX(10px);
}

.benefit-icon {
  width: 50px;
  height: 50px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.benefit-icon svg {
  width: 24px;
  height: 24px;
  fill: hsl(129, 60%, 34%);
}

.offer-cta-button {
  display: inline-block;
  background: #fff;
  color: hsl(129, 60%, 34%);
  font-family: 'Work Sans', sans-serif;
  font-size: 18px;
  font-weight: 600;
  padding: 18px 48px;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.offer-cta-button:hover {
  background: hsl(129, 60%, 74%);
  color: hsl(129, 60%, 34%);
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

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

.discount-percentage {
  font-size: 36px;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 4px;
}

.discount-text {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
}

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

  .offer-heading {
    font-size: 36px;
  }

  .offer-description {
    font-size: 18px;
  }

  .offer-deadline-box {
    padding: 30px 20px;
  }

  .deadline-date {
    font-size: 32px;
    flex-direction: column;
    gap: 12px;
  }

  .offer-benefits li {
    padding: 20px;
    font-size: 17px;
  }

  .discount-badge {
    width: 100px;
    height: 100px;
    top: 10px;
    right: 10px;
  }

  .discount-percentage {
    font-size: 28px;
  }

  .discount-text {
    font-size: 12px;
  }

  .offer-cta-button {
    padding: 16px 36px;
    font-size: 16px;
  }
}

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

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

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

.testimonial-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  border-left: 4px solid hsl(129, 60%, 49%);
}

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

.testimonial-card.featured {
  background: linear-gradient(135deg, hsl(129, 60%, 74%) 0%, #ffffff 100%);
  border-left: 4px solid hsl(129, 60%, 34%);
}

.testimonial-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1.2rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.customer-info {
  flex: 1;
}

.customer-name {
  font-family: 'Work Sans', sans-serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: #222;
  margin-bottom: 0.3rem;
}

.customer-location {
  font-size: 1rem;
  color: #666;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.customer-location svg {
  width: 16px;
  height: 16px;
  fill: hsl(129, 60%, 49%);
}

.rating {
  display: flex;
  gap: 0.3rem;
  align-items: center;
}

.rating svg {
  width: 20px;
  height: 20px;
  fill: #ffc107;
}

.rating svg.empty {
  fill: #e0e0e0;
}

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

.testimonial-text.short {
  font-size: 1.15rem;
  font-weight: 500;
}

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

.testimonial-date {
  font-size: 0.95rem;
  color: #999;
  font-style: italic;
}

.testimonial-highlight {
  background: hsl(129, 60%, 95%);
  border-left: 3px solid hsl(129, 60%, 49%);
  padding: 1rem 1.5rem;
  margin: 1rem 0;
  font-style: italic;
  color: #333;
}

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

@media (max-width: 768px) {
  .testimonials-section {
    padding: 60px 0;
  }
  
  .testimonials-section h2 {
    font-size: 2rem;
  }
  
  .testimonial-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .testimonial-card {
    padding: 1.5rem;
  }
}

@media (max-width: 400px) {
  .customer-name {
    font-size: 1.1rem;
  }
  
  .testimonial-text {
    font-size: 1rem;
  }
}

@import url('https://fonts.googleapis.com/css2?family=Work+Sans:wght@400;500;600;700&family=Crimson+Text:wght@400;600;700&display=swap');

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

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

  .services-intro {
    font-size: 1.15rem;
    color: #555;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    line-height: 1.7;
  }

  .services-tabs {
    margin-bottom: 3rem;
  }

  .nav-tabs {
    border: none;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.5rem;
  }

  .nav-tabs .nav-link {
    font-family: 'Work Sans', sans-serif;
    font-weight: 500;
    color: #333;
    background: #fff;
    border: 2px solid #e0e0e0;
    border-radius: 50px;
    padding: 12px 28px;
    margin: 0 5px 10px;
    transition: all 0.3s ease;
    font-size: 1rem;
  }

  .nav-tabs .nav-link:hover {
    background: hsl(129, 60%, 74%);
    border-color: hsl(129, 60%, 49%);
    color: #222;
    transform: translateY(-2px);
  }

  .nav-tabs .nav-link.active {
    background: hsl(129, 60%, 49%);
    border-color: hsl(129, 60%, 49%);
    color: #fff;
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
  }

  .tab-content {
    padding: 2rem 0;
  }

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

  .service-card {
    background: #fff;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
  }

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

  .service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(76, 175, 80, 0.2);
    border-color: hsl(129, 60%, 49%);
  }

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

  .service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, hsl(129, 60%, 49%), hsl(129, 60%, 34%));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
  }

  .service-card:hover .service-icon {
    transform: rotate(5deg) scale(1.1);
    box-shadow: 0 8px 20px rgba(76, 175, 80, 0.3);
  }

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

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

  .service-description {
    color: #555;
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
  }

  .service-price {
    font-family: 'Work Sans', sans-serif;
    font-weight: 700;
    font-size: 1.8rem;
    color: hsl(129, 60%, 34%);
    margin-bottom: 0.5rem;
  }

  .service-terms {
    font-size: 0.95rem;
    color: #777;
    font-style: italic;
  }

  .service-features {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
  }

  .service-features li {
    padding: 0.5rem 0;
    color: #555;
    font-size: 1rem;
    position: relative;
    padding-left: 1.5rem;
  }

  .service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: hsl(129, 60%, 49%);
    font-weight: bold;
  }

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

    .services-section h2 {
      font-size: 2.2rem;
    }

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

    .nav-tabs .nav-link {
      padding: 10px 20px;
      font-size: 0.95rem;
    }
  }

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

    .service-card {
      padding: 1.5rem;
    }

    .service-price {
      font-size: 1.5rem;
    }
  }

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

.disclaimer-section .section-title {
  font-family: 'Work Sans', 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 .icon-wrapper i {
  font-size: 4rem;
  color: hsl(129, 60%, 49%);
  opacity: 0.9;
}

.disclaimer-content {
  max-width: 900px;
  margin: 0 auto;
  background: #ffffff;
  padding: 3rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.disclaimer-content p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #444;
  margin-bottom: 1.5rem;
  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: 2rem 1.5rem;
  }

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

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

@import url('https://fonts.googleapis.com/css2?family=Work+Sans:wght@400;600;700&family=Crimson+Text:wght@400;600;700&display=swap');
  
  :root {
    --primary-color: hsl(129, 60%, 49%);
    --secondary-color: hsl(129, 60%, 34%);
    --accent-color: hsl(129, 60%, 74%);
  }
  
  .policy-content {
    font-family: 'Crimson Text', serif;
    font-size: 1.125rem;
    line-height: 1.8;
    color: #333;
  }
  
  .policy-content h1,
  .policy-content h2,
  .policy-content h3 {
    font-family: 'Work Sans', sans-serif;
    font-weight: 700;
    color: var(--secondary-color);
    margin-top: 2rem;
    margin-bottom: 1.25rem;
  }
  
  .policy-content h1 {
    font-size: 2.75rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 4px solid var(--accent-color);
  }
  
  .policy-content h2 {
    font-size: 2rem;
    padding-left: 1rem;
    border-left: 5px solid var(--primary-color);
    margin-top: 2.5rem;
  }
  
  .policy-content h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
  }
  
  .policy-content a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
  }
  
  .policy-content a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
  }
  
  .policy-content ul,
  .policy-content ol {
    margin: 1.25rem 0;
    padding-left: 2rem;
  }
  
  .policy-content li {
    margin-bottom: 0.75rem;
  }
  
  .policy-content p {
    margin-bottom: 1.25rem;
  }
  
  .last-updated {
    background-color: var(--accent-color);
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    color: var(--secondary-color);
    display: inline-block;
    margin-bottom: 2rem;
  }
  
  .contact-box {
    background: linear-gradient(135deg, var(--accent-color) 0%, rgba(129, 199, 132, 0.3) 100%);
    padding: 2rem;
    border-radius: 12px;
    border-left: 6px solid var(--primary-color);
    margin: 2rem 0;
  }
  
  .contact-box h3 {
    margin-top: 0;
  }
  
  .section-highlight {
    background-color: rgba(129, 199, 132, 0.1);
    padding: 1.5rem;
    border-radius: 8px;
    margin: 1.5rem 0;
  }

@import url('https://fonts.googleapis.com/css2?family=Work+Sans:wght@400;600;700&family=Crimson+Text:wght@400;600;700&display=swap');
  
  :root {
    --primary-color: hsl(129, 60%, 49%);
    --secondary-color: hsl(129, 60%, 34%);
    --accent-color: hsl(129, 60%, 74%);
  }
  
  .policy-content {
    font-family: 'Crimson Text', serif;
    font-size: 1.125rem;
    line-height: 1.8;
    color: #333;
  }
  
  .policy-content h1,
  .policy-content h2,
  .policy-content h3,
  .policy-content h4 {
    font-family: 'Work Sans', sans-serif;
    font-weight: 700;
    color: var(--secondary-color);
  }
  
  .policy-content h1 {
    font-size: 2.75rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 4px solid var(--primary-color);
  }
  
  .policy-content h2 {
    font-size: 2rem;
    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: 5px;
    height: 80%;
    background-color: var(--accent-color);
  }
  
  .policy-content h3 {
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
  }
  
  .policy-content a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: all 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.75rem;
  }
  
  .policy-content p {
    margin-bottom: 1.25rem;
  }
  
  .policy-content strong {
    color: var(--secondary-color);
    font-weight: 700;
  }
  
  .last-updated {
    background-color: var(--accent-color);
    padding: 1rem 1.5rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    font-weight: 600;
    color: var(--secondary-color);
  }
  
  .contact-box {
    background-color: #f8f9fa;
    border-left: 5px solid var(--primary-color);
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 5px;
  }
  
  .contact-box p {
    margin-bottom: 0.5rem;
  }
  
  .section-divider {
    height: 2px;
    background: linear-gradient(to right, var(--primary-color), var(--accent-color));
    margin: 2.5rem 0;
    border: none;
  }