:root {
            --primary-color: hsl(108, 35%, 46%);
            --secondary-color: hsl(108, 35%, 31%);
            --accent-color: hsl(108, 35%, 71%);
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Nunito', sans-serif;
            color: #333;
            line-height: 1.6;
            overflow-x: hidden;
        }
        
        h1, h2, h3, h4, h5, h6 {
            font-family: 'Poppins', 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 {
            display: flex;
            align-items: center;
            gap: 12px;
            font-family: 'Poppins', sans-serif;
            font-weight: 600;
            font-size: 1.3rem;
            color: var(--secondary-color);
            transition: color 0.3s ease;
        }
        
        .navbar-brand:hover {
            color: var(--primary-color);
        }
        
        .navbar-brand img {
            transition: transform 0.3s ease;
        }
        
        .navbar-brand:hover img {
            transform: scale(1.05);
        }
        
        .navbar-nav {
            gap: 0.5rem;
        }
        
        .nav-link {
            font-family: 'Nunito', sans-serif;
            font-weight: 500;
            color: #333;
            padding: 0.5rem 1rem;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .nav-link::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 0;
            height: 2px;
            background-color: var(--primary-color);
            transition: width 0.3s ease;
        }
        
        .nav-link:hover {
            color: var(--primary-color);
        }
        
        .nav-link:hover::after {
            width: 80%;
        }
        
        .navbar-toggler {
            border: 2px solid var(--primary-color);
            padding: 0.5rem 0.75rem;
        }
        
        .navbar-toggler:focus {
            box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 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(108, 35%%, 46%%)' 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);
            }
            
            .nav-link {
                padding: 0.75rem 1rem;
            }
            
            .nav-link::after {
                display: none;
            }
        }

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

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

  #about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, hsla(108, 35%, 71%, 0.1) 0%, transparent 50%);
    pointer-events: none;
  }

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

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

  #about .section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, hsl(108, 35%, 46%), hsl(108, 35%, 71%));
    border-radius: 2px;
  }

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

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

  #about .story-block {
    background: #ffffff;
    border-radius: 16px;
    padding: 50px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    margin-bottom: 40px;
    border-left: 5px solid hsl(108, 35%, 46%);
  }

  #about .story-block h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.9rem;
    font-weight: 600;
    color: hsl(108, 35%, 31%);
    margin-bottom: 25px;
  }

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

  #about .story-block p:last-child {
    margin-bottom: 0;
  }

  #about .image-wrapper {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
    margin-bottom: 30px;
    height: 100%;
  }

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

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

  #about .image-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, hsla(108, 35%, 46%, 0.2) 0%, transparent 100%);
    pointer-events: none;
  }

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

  #about .value-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 35px 30px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    border-top: 4px solid hsl(108, 35%, 71%);
  }

  #about .value-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.12);
    border-top-color: hsl(108, 35%, 46%);
  }

  #about .value-card h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: hsl(108, 35%, 31%);
    margin-bottom: 15px;
  }

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

  #about .mission-vision {
    background: linear-gradient(135deg, hsl(108, 35%, 46%) 0%, hsl(108, 35%, 31%) 100%);
    border-radius: 16px;
    padding: 50px;
    margin-top: 50px;
    color: #ffffff;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
  }

  #about .mission-vision h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 30px;
    text-align: center;
  }

  #about .mission-vision-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
  }

  #about .mission-vision-item h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: hsl(108, 35%, 71%);
    margin-bottom: 15px;
  }

  #about .mission-vision-item p {
    font-size: 1.05rem;
    color: #f8f9fa;
    line-height: 1.8;
    margin: 0;
  }

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

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

    #about .story-block {
      padding: 35px 25px;
    }

    #about .story-block h3 {
      font-size: 1.6rem;
    }

    #about .mission-vision {
      padding: 35px 25px;
    }

    #about .mission-vision h3 {
      font-size: 1.7rem;
    }

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

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

    #about .story-block {
      padding: 25px 20px;
    }

    #about .value-card {
      padding: 25px 20px;
    }
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.portfolio-category {
  display: inline-block;
  padding: 5px 15px;
  background: hsl(108, 35%, 71%);
  color: hsl(108, 35%, 31%);
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 12px;
  font-family: 'Poppins', sans-serif;
}

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

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

.view-details-btn {
  display: inline-block;
  padding: 10px 25px;
  background: hsl(108, 35%, 46%);
  color: #fff;
  border: none;
  border-radius: 25px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  text-decoration: none;
}

.view-details-btn:hover {
  background: hsl(108, 35%, 31%);
  transform: translateX(5px);
  color: #fff;
}

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

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

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

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

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

.modal-body h5 {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  color: hsl(108, 35%, 31%);
  margin-top: 25px;
  margin-bottom: 15px;
  font-size: 1.3rem;
}

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

.modal-body ul {
  color: #555;
  line-height: 2;
  padding-left: 20px;
}

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

.btn-close {
  background: #fff;
  opacity: 1;
  border-radius: 50%;
  padding: 10px;
}

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

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

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

  .filter-buttons {
    gap: 10px;
  }

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

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

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

  #advantages::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: hsl(108, 35%, 71%, 0.1);
    border-radius: 50%;
    z-index: 0;
  }

  #advantages::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: hsl(108, 35%, 46%, 0.08);
    border-radius: 50%;
    z-index: 0;
  }

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

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

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

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

  #advantages .section-subtitle {
    font-family: 'Nunito', sans-serif;
    font-size: 1.1rem;
    color: #666;
    max-width: 700px;
    margin: 25px auto 0;
    line-height: 1.7;
  }

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

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

  #advantages .advantage-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    border-color: hsl(108, 35%, 71%);
  }

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

  #advantages .icon-wrapper {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, hsl(108, 35%, 46%), hsl(108, 35%, 31%));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.4s ease;
    position: relative;
  }

  #advantages .advantage-card:hover .icon-wrapper {
    transform: rotate(10deg) scale(1.1);
    box-shadow: 0 8px 25px rgba(108, 117, 125, 0.3);
  }

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

  #advantages .advantage-title {
    font-family: 'Poppins', sans-serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: #222;
    margin-bottom: 15px;
    text-align: center;
  }

  #advantages .advantage-description {
    font-family: 'Nunito', sans-serif;
    font-size: 1rem;
    color: #555;
    line-height: 1.7;
    text-align: center;
  }

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

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

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

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

    #advantages .icon-wrapper {
      width: 70px;
      height: 70px;
    }

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

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

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

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

  #statistics::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, hsl(108, 35%, 46%) 0%, hsl(108, 35%, 71%) 100%);
  }

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

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

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

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

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

  .stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, hsl(108, 35%, 46%), hsl(108, 35%, 71%));
    transform: scaleX(0);
    transition: transform 0.4s ease;
  }

  .stat-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
    border-color: hsl(108, 35%, 71%);
  }

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

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

  .stat-card:hover .stat-icon {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, hsl(108, 35%, 31%), hsl(108, 35%, 46%));
  }

  .stat-icon i {
    font-size: 32px;
    color: #ffffff;
  }

  .stat-number {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: hsl(108, 35%, 31%);
    margin-bottom: 10px;
    line-height: 1;
  }

  .stat-label {
    font-family: 'Nunito', sans-serif;
    font-size: 1rem;
    color: #666;
    font-weight: 600;
    margin-bottom: 8px;
  }

  .stat-context {
    font-family: 'Nunito', sans-serif;
    font-size: 0.85rem;
    color: #888;
    font-style: italic;
  }

  .statistics-row {
    margin-bottom: 30px;
  }

  @keyframes countUp {
    from {
      opacity: 0;
      transform: translateY(20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .stat-card.animate {
    animation: countUp 0.6s ease forwards;
  }

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

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

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

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

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

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

    .stat-icon i {
      font-size: 28px;
    }
  }

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

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

footer {
    background: linear-gradient(135deg, hsl(108, 35%, 31%) 0%, hsl(108, 35%, 26%) 100%);
    color: #f8f9fa;
    padding: 4rem 0 2rem;
    margin-top: 5rem;
    position: relative;
    overflow: hidden;
  }
  
  footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, hsl(108, 35%, 46%), hsl(108, 35%, 71%), hsl(108, 35%, 46%));
  }
  
  footer h5 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
    position: relative;
    padding-bottom: 0.75rem;
  }
  
  footer h5::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: hsl(108, 35%, 71%);
  }
  
  footer p, footer ul {
    font-family: 'Nunito', sans-serif;
    font-size: 0.95rem;
    line-height: 1.7;
    color: #e0e0e0;
  }
  
  footer ul {
    list-style: none;
    padding: 0;
  }
  
  footer ul li {
    margin-bottom: 0.7rem;
  }
  
  footer a {
    color: #e0e0e0;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
  }
  
  footer a:hover {
    color: hsl(108, 35%, 71%);
    transform: translateX(5px);
  }
  
  .footer-contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
    gap: 0.75rem;
  }
  
  .footer-contact-item i {
    color: hsl(108, 35%, 71%);
    margin-top: 0.25rem;
    font-size: 1.1rem;
  }
  
  .footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 3rem;
    padding-top: 2rem;
    text-align: center;
    color: #c0c0c0;
    font-size: 0.9rem;
  }
  
  .footer-policies {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
  }
  
  .footer-policies a {
    color: #c0c0c0;
    font-size: 0.9rem;
  }
  
  .footer-policies a:hover {
    color: hsl(108, 35%, 71%);
    transform: none;
  }
  
  #cookieNotice {
    position: fixed;
    bottom: 20px;
    right: 20px;
    max-width: 420px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    z-index: 9999;
    padding: 1.75rem;
    border: 1px solid #e0e0e0;
    animation: slideUp 0.4s ease-out;
  }
  
  @keyframes slideUp {
    from {
      transform: translateY(100px);
      opacity: 0;
    }
    to {
      transform: translateY(0);
      opacity: 1;
    }
  }
  
  #cookieNotice h5 {
    font-family: 'Poppins', sans-serif;
    color: #222;
    font-size: 1.25rem;
    margin-bottom: 1rem;
    font-weight: 600;
  }
  
  #cookieNotice p {
    font-family: 'Nunito', sans-serif;
    color: #555;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1.25rem;
  }
  
  .cookie-categories {
    margin: 1.25rem 0;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 8px;
  }
  
  .cookie-category {
    margin-bottom: 0.75rem;
    font-family: 'Nunito', sans-serif;
    font-size: 0.85rem;
    color: #333;
  }
  
  .cookie-category strong {
    color: #222;
    font-weight: 600;
  }
  
  .cookie-category.required {
    color: #666;
  }
  
  .cookie-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
  }
  
  .cookie-btn {
    font-family: 'Nunito', sans-serif;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    text-decoration: none;
    display: block;
  }
  
  .cookie-btn-primary {
    background: hsl(108, 35%, 46%);
    color: #ffffff;
  }
  
  .cookie-btn-primary:hover {
    background: hsl(108, 35%, 41%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  }
  
  .cookie-btn-secondary {
    background: #6c757d;
    color: #ffffff;
  }
  
  .cookie-btn-secondary:hover {
    background: #5a6268;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  }
  
  .cookie-btn-link {
    background: transparent;
    color: hsl(108, 35%, 46%);
    border: 1px solid hsl(108, 35%, 46%);
  }
  
  .cookie-btn-link:hover {
    background: hsl(108, 35%, 46%);
    color: #ffffff;
  }
  
  @media (max-width: 768px) {
    #cookieNotice {
      bottom: 0;
      right: 0;
      left: 0;
      max-width: 100%;
      border-radius: 12px 12px 0 0;
      margin: 0;
    }
    
    footer {
      padding: 3rem 0 1.5rem;
    }
    
    .footer-policies {
      flex-direction: column;
      gap: 0.75rem;
    }
  }

.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: Nunito, sans-serif; }
.article-header { margin-bottom: 3rem; border-bottom: 2px solid hsl(108, 35%, 46%)20; padding-bottom: 2rem; }
.article-header h1 { font-size: 2.5rem; margin-bottom: 1rem; font-family: Poppins, sans-serif; color: hsl(108, 35%, 31%); }
.article-meta { color: #666; font-size: 0.95rem; margin-bottom: 1.5rem; }
.article-meta i { color: hsl(108, 35%, 46%); }
.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(108, 35%, 31%); font-family: Poppins, sans-serif; margin-top: 2rem; }
.blog-article h3 { color: hsl(108, 35%, 31%); font-family: Poppins, sans-serif; }
.blog-article a { color: hsl(108, 35%, 46%); }
.blog-article a:hover { color: hsl(108, 35%, 71%); }
.blog-article ul, .blog-article ol { margin: 1rem 0; padding-left: 1.5rem; }
.blog-article blockquote { border-left: 4px solid hsl(108, 35%, 46%); padding-left: 1rem; margin: 1.5rem 0; font-style: italic; color: #555; }

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

.contact-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, hsl(108, 35%, 46%) 0%, hsl(108, 35%, 71%) 100%);
}

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

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

.contact-form-wrapper {
  background: #ffffff;
  border-radius: 12px;
  padding: 40px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.08);
  border: 1px solid #e9ecef;
}

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

.contact-form .form-label {
  font-weight: 600;
  color: #333;
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

.contact-form .form-control,
.contact-form .form-select {
  border: 2px solid #e9ecef;
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 1rem;
  color: #333;
  background: #ffffff;
  transition: all 0.3s ease;
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
  border-color: hsl(108, 35%, 46%);
  box-shadow: 0 0 0 0.2rem rgba(108, 146, 86, 0.15);
  outline: none;
}

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

.contact-form .btn-submit {
  background: hsl(108, 35%, 46%);
  color: #ffffff;
  border: none;
  padding: 14px 40px;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.3s ease;
  width: 100%;
  margin-top: 1rem;
}

.contact-form .btn-submit:hover {
  background: hsl(108, 35%, 31%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(108, 146, 86, 0.3);
}

.contact-info-wrapper {
  background: linear-gradient(135deg, hsl(108, 35%, 46%) 0%, hsl(108, 35%, 31%) 100%);
  border-radius: 12px;
  padding: 40px;
  color: #ffffff;
  height: 100%;
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.contact-info-wrapper h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.8rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 1.5rem;
}

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

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

.contact-icon {
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  backdrop-filter: blur(10px);
}

.contact-icon svg {
  width: 22px;
  height: 22px;
  fill: #ffffff;
}

.contact-info-content h4 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 0.5rem;
}

.contact-info-content p {
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
  line-height: 1.6;
}

.contact-info-content a {
  color: #ffffff;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}

.contact-info-content a:hover {
  color: hsl(108, 35%, 71%);
  transform: translateX(3px);
}

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

.working-hours-list li {
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

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

.day-label {
  font-weight: 600;
}

.time-label {
  color: rgba(255, 255, 255, 0.85);
}

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

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

  .contact-form-wrapper,
  .contact-info-wrapper {
    padding: 30px;
    margin-bottom: 30px;
  }

  .contact-info-wrapper {
    margin-bottom: 0;
  }
}

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

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

  .contact-form-wrapper h3,
  .contact-info-wrapper h3 {
    font-size: 1.5rem;
  }

  .working-hours-list li {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }
}

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

  :root {
    --primary-color: hsl(108, 35%, 46%);
    --secondary-color: hsl(108, 35%, 31%);
    --accent-color: hsl(108, 35%, 71%);
  }

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

  .policy-content h1,
  .policy-content h2,
  .policy-content h3,
  .policy-content h4 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    color: var(--secondary-color);
    margin-top: 2rem;
    margin-bottom: 1rem;
  }

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

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

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

  .policy-content h3 {
    font-size: 1.4rem;
    color: var(--secondary-color);
  }

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

  .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;
    font-size: 1.05rem;
  }

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

  .contact-card {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 2rem;
    border-radius: 12px;
    margin: 2rem 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  }

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

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

  .cookie-table {
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    margin: 1.5rem 0;
  }

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

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

  .badge-custom {
    background-color: var(--accent-color);
    color: var(--secondary-color);
    font-weight: 600;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
  }

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

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

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

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

  .faq-accordion .accordion-item {
    border: none;
    margin-bottom: 1rem;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
  }

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

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

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

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

  .faq-accordion .accordion-button::after {
    background-size: 1.25rem;
    transition: transform 0.3s ease;
  }

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

  .faq-accordion .accordion-body {
    padding: 1.5rem 1.75rem;
    background-color: #ffffff;
    color: #333;
    font-size: 1rem;
    line-height: 1.7;
    border-top: 1px solid hsl(108, 35%, 71%);
  }

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

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

  .faq-accordion .accordion-body ul {
    margin: 0.75rem 0;
    padding-left: 1.5rem;
  }

  .faq-accordion .accordion-body li {
    margin-bottom: 0.5rem;
    color: #444;
  }

  .faq-cta-box {
    background: linear-gradient(135deg, hsl(108, 35%, 46%) 0%, hsl(108, 35%, 31%) 100%);
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    margin-top: 3rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  }

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

  .faq-cta-box p {
    font-size: 1.1rem;
    color: #f8f9fa;
    margin-bottom: 1.5rem;
  }

  .faq-cta-btn {
    background-color: #ffffff;
    color: hsl(108, 35%, 31%);
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    padding: 0.875rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  }

  .faq-cta-btn:hover {
    background-color: hsl(108, 35%, 71%);
    color: #222;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
  }

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

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

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

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

    .faq-cta-box {
      padding: 2rem 1.5rem;
    }

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

#newsletter {
    padding: 80px 0;
    background: linear-gradient(135deg, hsl(108, 35%, 46%) 0%, hsl(108, 35%, 31%) 100%);
    position: relative;
    overflow: hidden;
  }

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

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

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

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

  .newsletter-icon {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    backdrop-filter: blur(10px);
  }

  .newsletter-icon svg {
    width: 35px;
    height: 35px;
    fill: #ffffff;
  }

  .newsletter-heading {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.2;
  }

  .newsletter-description {
    font-family: 'Nunito', sans-serif;
    font-size: 1.1rem;
    color: #f8f9fa;
    margin-bottom: 40px;
    line-height: 1.6;
  }

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

  .newsletter-input-group {
    display: flex;
    gap: 12px;
    margin-bottom: 15px;
  }

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

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

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

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

  .newsletter-submit:hover {
    background: hsl(108, 35%, 71%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  }

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

  .newsletter-privacy {
    font-family: 'Nunito', sans-serif;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.85);
    margin-top: 15px;
  }

  .newsletter-privacy a {
    color: #ffffff;
    text-decoration: underline;
  }

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

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

  .newsletter-benefit svg {
    width: 20px;
    height: 20px;
    fill: hsl(108, 35%, 71%);
    flex-shrink: 0;
  }

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

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

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

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

    .newsletter-submit {
      width: 100%;
    }

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

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

    .newsletter-icon {
      width: 60px;
      height: 60px;
    }

    .newsletter-icon svg {
      width: 30px;
      height: 30px;
    }
  }

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

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

  .hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: hsl(108, 35%, 71%);
    opacity: 0.1;
    border-radius: 50%;
    z-index: 0;
  }

  .hero-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: hsl(108, 35%, 46%);
    opacity: 0.08;
    border-radius: 50%;
    z-index: 0;
  }

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

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

  .hero-section h2 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 1.8rem;
    color: hsl(108, 35%, 31%);
    margin-bottom: 2rem;
    line-height: 1.4;
  }

  .hero-description {
    font-family: 'Nunito', sans-serif;
    font-size: 1.1rem;
    color: #444;
    line-height: 1.8;
    margin-bottom: 2.5rem;
    text-align: justify;
  }

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

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

  .hero-advantages li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.4rem;
    width: 1.5rem;
    height: 1.5rem;
    background: hsl(108, 35%, 46%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .hero-advantages li::after {
    content: '✓';
    position: absolute;
    left: 0.45rem;
    top: 0.3rem;
    color: #fff;
    font-weight: bold;
    font-size: 0.9rem;
  }

  .hero-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    transform: translateY(0);
    transition: transform 0.4s ease;
  }

  .hero-image-wrapper:hover {
    transform: translateY(-10px);
  }

  .hero-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
  }

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

  .hero-btn-primary {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    padding: 1rem 2.5rem;
    background: hsl(108, 35%, 46%);
    color: #fff;
    border: none;
    border-radius: 50px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(95, 142, 77, 0.3);
  }

  .hero-btn-primary:hover {
    background: hsl(108, 35%, 31%);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(95, 142, 77, 0.4);
  }

  .hero-btn-secondary {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    padding: 1rem 2.5rem;
    background: transparent;
    color: hsl(108, 35%, 31%);
    border: 2px solid hsl(108, 35%, 46%);
    border-radius: 50px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
  }

  .hero-btn-secondary:hover {
    background: hsl(108, 35%, 46%);
    color: #fff;
    border-color: hsl(108, 35%, 46%);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(95, 142, 77, 0.3);
  }

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

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

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

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

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

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

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

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

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

    .hero-btn-primary,
    .hero-btn-secondary {
      width: 100%;
      justify-content: center;
      padding: 0.9rem 2rem;
      font-size: 1rem;
    }
  }

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

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

  .testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, hsl(108, 35%, 46%), hsl(108, 35%, 71%));
  }

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

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

  .testimonial-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #e8e8e8;
    height: 100%;
    display: flex;
    flex-direction: column;
  }

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

  .testimonial-card.featured {
    background: linear-gradient(135deg, hsl(108, 35%, 46%) 0%, hsl(108, 35%, 31%) 100%);
    color: #ffffff;
    border: none;
  }

  .testimonial-card.featured .testimonial-text,
  .testimonial-card.featured .customer-name,
  .testimonial-card.featured .customer-location {
    color: #ffffff;
  }

  .testimonial-card.featured .star-rating i {
    color: #ffd700;
  }

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

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

  .testimonial-card.featured .customer-avatar {
    background: #ffffff;
    color: hsl(108, 35%, 46%);
  }

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

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

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

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

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

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

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

  .testimonial-date {
    color: #999;
    font-size: 0.85rem;
    text-align: right;
    margin-top: auto;
  }

  .testimonial-card.featured .testimonial-date {
    color: rgba(255, 255, 255, 0.8);
  }

  .testimonial-compact {
    padding: 1.5rem;
  }

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

  .testimonial-detailed {
    padding: 2.5rem;
  }

  .testimonial-badge {
    display: inline-block;
    background: hsl(108, 35%, 71%);
    color: hsl(108, 35%, 31%);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-top: 1rem;
  }

  .testimonial-card.featured .testimonial-badge {
    background: #ffffff;
    color: hsl(108, 35%, 46%);
  }

  .review-highlight {
    background: hsl(108, 35%, 95%);
    padding: 1rem;
    border-radius: 8px;
    margin-top: 1rem;
    font-size: 0.95rem;
    color: #444;
    border-left: 3px solid hsl(108, 35%, 46%);
  }

  .testimonial-card.featured .review-highlight {
    background: rgba(255, 255, 255, 0.15);
    border-left-color: #ffffff;
    color: #ffffff;
  }

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

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

    .testimonial-card {
      padding: 1.5rem;
    }

    .customer-avatar {
      width: 50px;
      height: 50px;
      font-size: 1.2rem;
    }
  }

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

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

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

  .blog-card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: 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.12);
  }

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

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

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

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

  .blog-meta-divider {
    width: 4px;
    height: 4px;
    background: hsl(108, 35%, 46%);
    border-radius: 50%;
  }

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

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

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

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

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

  .blog-read-more:hover {
    gap: 0.8rem;
    color: hsl(108, 35%, 31%);
  }

  .blog-view-all-container {
    text-align: center;
    margin-top: 3rem;
  }

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

  .btn-view-all:hover {
    background: hsl(108, 35%, 31%);
    color: #ffffff;
    transform: translateY(-2px);
  }

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

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

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

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

    .blog-card-body {
      padding: 1.5rem;
    }
  }

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

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

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

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

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(108, 132, 88, 0.15);
  border-color: hsl(108, 35%, 46%);
}

.service-icon {
  flex-shrink: 0;
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, hsl(108, 35%, 46%) 0%, hsl(108, 35%, 31%) 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: #ffffff;
  transition: all 0.3s ease;
}

.service-card:hover .service-icon {
  transform: scale(1.1) rotate(5deg);
  background: linear-gradient(135deg, hsl(108, 35%, 31%) 0%, hsl(108, 35%, 46%) 100%);
}

.service-content {
  flex: 1;
}

.service-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 12px;
  flex-wrap: wrap;
  gap: 10px;
}

.service-card h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: #222;
  margin: 0;
}

.service-price {
  font-family: 'Poppins', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: hsl(108, 35%, 46%);
  white-space: nowrap;
}

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

.service-duration {
  display: inline-block;
  background: hsl(108, 35%, 71%);
  color: hsl(108, 35%, 31%);
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
}

@media (max-width: 768px) {
  .services-section {
    padding: 60px 0;
  }
  
  .services-section h2 {
    font-size: 2rem;
  }
  
  .service-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 25px 20px;
  }
  
  .service-icon {
    width: 60px;
    height: 60px;
    font-size: 1.7rem;
  }
  
  .service-header {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  .service-card h3 {
    font-size: 1.2rem;
  }
  
  .service-price {
    font-size: 1.2rem;
  }
}

.credentials-section {
  padding: 60px 0;
  background-color: #ffffff;
  font-family: 'Nunito', sans-serif;
}

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

.credential-card {
  background: #f8f9fa;
  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%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.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: 12px;
}

.credential-title {
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: #333;
  margin: 0;
  line-height: 1.3;
}

@media (max-width: 767px) {
  .credentials-section {
    padding: 40px 0;
  }
  
  .credentials-section .section-title {
    font-size: 1.6rem;
    margin-bottom: 30px;
  }
  
  .credential-card {
    margin-bottom: 15px;
  }
}

.offer-section {
  background: linear-gradient(135deg, hsl(108, 35%, 46%) 0%, hsl(108, 35%, 31%) 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.05);
  border-radius: 50%;
}

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

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

.offer-badge {
  display: inline-block;
  background: hsl(108, 35%, 71%);
  color: hsl(108, 35%, 31%);
  padding: 8px 24px;
  border-radius: 50px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

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

.offer-description {
  font-family: 'Nunito', sans-serif;
  font-size: 18px;
  color: #f8f9fa;
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 700px;
}

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

.deadline-wrapper {
  text-align: center;
  margin-bottom: 40px;
  padding: 30px;
  background: linear-gradient(135deg, hsl(108, 35%, 71%) 0%, hsl(108, 35%, 46%) 100%);
  border-radius: 15px;
}

.deadline-label {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  color: hsl(108, 35%, 31%);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 15px;
}

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

.calendar-icon {
  width: 50px;
  height: 50px;
  background: #ffffff;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: hsl(108, 35%, 46%);
  font-size: 28px;
}

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

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

.benefit-item:hover {
  background: hsl(108, 35%, 71%);
  transform: translateX(10px);
}

.benefit-icon {
  flex-shrink: 0;
  width: 45px;
  height: 45px;
  background: hsl(108, 35%, 46%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 20px;
}

.benefit-text {
  font-family: 'Nunito', sans-serif;
  font-size: 17px;
  color: #333333;
  line-height: 1.6;
  margin: 0;
  padding-top: 8px;
}

.discount-badge {
  display: inline-block;
  background: hsl(108, 35%, 46%);
  color: #ffffff;
  padding: 15px 30px;
  border-radius: 50px;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 28px;
  margin-bottom: 30px;
}

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

.cta-button {
  display: inline-block;
  background: hsl(108, 35%, 46%);
  color: #ffffff;
  padding: 18px 50px;
  border-radius: 50px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 18px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.cta-button:hover {
  background: hsl(108, 35%, 31%);
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
}

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

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

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

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

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

  .benefit-item {
    padding: 15px;
  }

  .benefit-text {
    font-size: 15px;
  }

  .discount-badge {
    font-size: 24px;
    padding: 12px 25px;
  }

  .cta-button {
    padding: 15px 40px;
    font-size: 16px;
  }
}

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

.disclaimer-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 15px;
}

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

.disclaimer-icon {
  font-size: 64px;
  color: hsl(108, 35%, 46%);
  display: inline-block;
  animation: iconPulse 2s ease-in-out infinite;
}

@keyframes iconPulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

.disclaimer-title {
  font-family: 'Poppins', sans-serif;
  font-size: 42px;
  font-weight: 700;
  color: #222;
  text-align: center;
  margin-bottom: 40px;
  letter-spacing: -0.5px;
}

.disclaimer-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 50px 45px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  border-left: 5px solid hsl(108, 35%, 46%);
}

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

.disclaimer-text strong {
  color: hsl(108, 35%, 31%);
  font-weight: 600;
}

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

  .disclaimer-title {
    font-size: 32px;
    margin-bottom: 30px;
  }

  .disclaimer-card {
    padding: 35px 25px;
    border-radius: 12px;
  }

  .disclaimer-text {
    font-size: 16px;
    line-height: 1.8;
    text-align: left;
  }

  .disclaimer-icon {
    font-size: 52px;
  }
}

@media (max-width: 576px) {
  .disclaimer-title {
    font-size: 28px;
  }

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

  .disclaimer-text {
    font-size: 15px;
  }
}

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

  :root {
    --primary-color: hsl(108, 35%, 46%);
    --secondary-color: hsl(108, 35%, 31%);
    --accent-color: hsl(108, 35%, 71%);
  }

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

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

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

  .policy-content h2 {
    color: var(--primary-color);
    margin-top: 2.5rem;
    margin-bottom: 1.25rem;
    font-weight: 600;
    font-size: 1.75rem;
  }

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

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

  .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: 1.5rem;
  }

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

  .info-box {
    background-color: rgba(108, 160, 89, 0.08);
    border-left: 5px solid var(--primary-color);
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 0 8px 8px 0;
  }

  .contact-card {
    background: linear-gradient(135deg, var(--accent-color) 0%, rgba(108, 160, 89, 0.2) 100%);
    padding: 2rem;
    border-radius: 12px;
    margin-top: 2rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  }

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

  .last-updated {
    background-color: var(--accent-color);
    color: var(--secondary-color);
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    display: inline-block;
    margin-bottom: 2rem;
    font-weight: 600;
  }

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

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

  :root {
    --primary-color: hsl(108, 35%, 46%);
    --secondary-color: hsl(108, 35%, 31%);
    --accent-color: hsl(108, 35%, 71%);
  }

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

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

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

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

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

  .policy-content h3 {
    font-size: 1.35rem;
    margin-top: 1.75rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
  }

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

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

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

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

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

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

  .contact-box {
    background: linear-gradient(135deg, var(--accent-color) 0%, hsl(108, 35%, 85%) 100%);
    border-left: 5px solid var(--primary-color);
    padding: 1.5rem;
    border-radius: 8px;
    margin: 2rem 0;
  }

  .contact-box p {
    margin-bottom: 0.5rem;
    color: var(--secondary-color);
  }

  .intro-section {
    background-color: hsl(108, 35%, 96%);
    padding: 2rem;
    border-radius: 10px;
    margin-bottom: 2.5rem;
    border: 2px solid var(--accent-color);
  }

  .effective-date {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    margin-bottom: 1.5rem;
  }

.thank-you-section {
    font-family: 'Nunito', sans-serif;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem 1rem;
    background: linear-gradient(135deg, hsl(108, 35%, 96%) 0%, hsl(108, 35%, 92%) 100%);
  }

  .thank-you-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    padding: 3rem 2rem;
    max-width: 600px;
    width: 100%;
    text-align: center;
  }

  .success-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 2rem;
    background: hsl(108, 35%, 46%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: scaleIn 0.5s ease-out;
  }

  .success-icon svg {
    width: 60px;
    height: 60px;
    stroke: white;
    stroke-width: 3;
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none;
    animation: checkmark 0.8s ease-out 0.3s both;
  }

  @keyframes scaleIn {
    from {
      transform: scale(0);
      opacity: 0;
    }
    to {
      transform: scale(1);
      opacity: 1;
    }
  }

  @keyframes checkmark {
    0% {
      stroke-dasharray: 100;
      stroke-dashoffset: 100;
    }
    100% {
      stroke-dasharray: 100;
      stroke-dashoffset: 0;
    }
  }

  .thank-you-heading {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: hsl(108, 35%, 31%);
    margin-bottom: 1rem;
  }

  .thank-you-subheading {
    font-family: 'Poppins', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: hsl(108, 35%, 46%);
    margin-bottom: 1.5rem;
  }

  .thank-you-message {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 2rem;
  }

  .info-boxes {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 2.5rem;
  }

  .info-box {
    background: hsl(108, 35%, 96%);
    border-left: 4px solid hsl(108, 35%, 46%);
    padding: 1rem 1.25rem;
    border-radius: 8px;
    text-align: left;
  }

  .info-box-icon {
    color: hsl(108, 35%, 46%);
    font-size: 1.5rem;
    margin-right: 0.75rem;
  }

  .info-box-text {
    font-size: 0.95rem;
    color: #666;
    margin: 0;
  }

  .btn-home {
    background-color: hsl(108, 35%, 46%);
    border: none;
    color: white;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    padding: 0.875rem 2.5rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
  }

  .btn-home:hover {
    background-color: hsl(108, 35%, 31%);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    color: white;
  }

  @media (max-width: 576px) {
    .thank-you-card {
      padding: 2rem 1.5rem;
    }

    .thank-you-heading {
      font-size: 2rem;
    }

    .thank-you-subheading {
      font-size: 1.1rem;
    }

    .thank-you-message {
      font-size: 1rem;
    }

    .success-icon {
      width: 80px;
      height: 80px;
    }

    .success-icon svg {
      width: 50px;
      height: 50px;
    }
  }