:root {
            --primary-color: hsl(93, 47%, 38%);
            --secondary-color: hsl(93, 47%, 23%);
            --accent-color: hsl(93, 47%, 63%);
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Nunito', sans-serif;
            color: #333;
            line-height: 1.6;
        }
        
        h1, h2, h3, h4, h5, h6 {
            font-family: 'Poppins', sans-serif;
            font-weight: 600;
        }
        
        .navbar {
            background-color: #ffffff;
            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: 700;
            font-size: 1.5rem;
            color: var(--primary-color);
            text-decoration: none;
        }
        
        .navbar-brand:hover {
            color: var(--secondary-color);
        }
        
        .navbar-nav .nav-link {
            font-family: 'Nunito', sans-serif;
            font-weight: 600;
            color: #333;
            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(93, 138, 57, 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(93, 47%, 38%)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        @media (max-width: 991px) {
            .navbar-collapse {
                padding: 1rem 0;
            }
            
            .navbar-nav .nav-link {
                padding: 0.75rem 1rem;
            }
        }

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

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

  #about .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: hsl(93, 47%, 38%);
    margin-bottom: 20px;
    text-align: center;
  }

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

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

  #about .content-block h2 {
    font-size: 1.8rem;
    font-weight: 600;
    color: hsl(93, 47%, 23%);
    margin-bottom: 20px;
  }

  #about .content-block p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #333;
    margin-bottom: 15px;
  }

  #about .about-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    margin-bottom: 30px;
  }

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

  #about .value-card {
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 8px;
    border-left: 4px solid hsl(93, 47%, 38%);
    transition: transform 0.3s ease;
  }

  #about .value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
  }

  #about .value-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: hsl(93, 47%, 23%);
    margin-bottom: 12px;
  }

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

  #about .highlight-box {
    background-color: hsl(93, 47%, 63%);
    padding: 40px;
    border-radius: 8px;
    margin: 40px 0;
  }

  #about .highlight-box h2 {
    color: #222;
    margin-bottom: 20px;
  }

  #about .highlight-box p {
    color: #333;
    font-size: 1.05rem;
  }

  #about .stats-row {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    margin-top: 50px;
    padding: 40px 0;
    background-color: #f5f5f5;
    border-radius: 8px;
  }

  #about .stat-item {
    text-align: center;
    padding: 20px;
    min-width: 200px;
  }

  #about .stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: hsl(93, 47%, 38%);
    font-family: 'Poppins', sans-serif;
  }

  #about .stat-label {
    font-size: 1.1rem;
    color: #555;
    margin-top: 10px;
  }

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

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

    #about .about-image {
      height: 300px;
    }

    #about .content-block h2 {
      font-size: 1.5rem;
    }

    #about .stat-number {
      font-size: 2.5rem;
    }
  }

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

  .portfolio-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, hsl(93, 47%, 38%) 0%, hsl(93, 47%, 63%) 100%);
  }

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

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

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

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

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

  .filter-btn {
    font-family: 'Nunito', sans-serif;
    padding: 12px 28px;
    border: 2px solid hsl(93, 47%, 38%);
    background: transparent;
    color: hsl(93, 47%, 38%);
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }

  .filter-btn:hover,
  .filter-btn.active {
    background: hsl(93, 47%, 38%);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(93, 138, 56, 0.3);
  }

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

  .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 40px rgba(0, 0, 0, 0.15);
  }

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

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

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

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

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

  .overlay-badge {
    background: hsl(93, 47%, 38%);
    color: #fff;
    padding: 6px 16px;
    border-radius: 20px;
    font-family: 'Nunito', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }

  .portfolio-content {
    padding: 25px;
  }

  .portfolio-category {
    display: inline-block;
    background: hsl(93, 47%, 63%);
    color: hsl(93, 47%, 23%);
    padding: 5px 15px;
    border-radius: 15px;
    font-family: 'Nunito', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
  }

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

  .portfolio-item p {
    font-family: 'Nunito', sans-serif;
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 0;
  }

  .view-details {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 15px;
    color: hsl(93, 47%, 38%);
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    transition: gap 0.3s ease;
  }

  .view-details:hover {
    gap: 12px;
    color: hsl(93, 47%, 23%);
  }

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

  .modal-header {
    background: linear-gradient(135deg, hsl(93, 47%, 38%) 0%, hsl(93, 47%, 23%) 100%);
    color: #fff;
    border: none;
    padding: 25px 30px;
  }

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

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

  .modal-body {
    padding: 30px;
  }

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

  .modal-detail-category {
    display: inline-block;
    background: hsl(93, 47%, 63%);
    color: hsl(93, 47%, 23%);
    padding: 8px 20px;
    border-radius: 20px;
    font-family: 'Nunito', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 20px;
  }

  .modal-body h6 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: #222;
    margin-top: 25px;
    margin-bottom: 15px;
  }

  .modal-body p {
    font-family: 'Nunito', sans-serif;
    font-size: 1rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 15px;
  }

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

  .project-specs ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .project-specs li {
    font-family: 'Nunito', sans-serif;
    font-size: 0.95rem;
    color: #444;
    padding: 8px 0;
    border-bottom: 1px solid #e0e0e0;
    display: flex;
    justify-content: space-between;
  }

  .project-specs li:last-child {
    border-bottom: none;
  }

  .spec-label {
    font-weight: 700;
    color: hsl(93, 47%, 38%);
  }

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

    .portfolio-header h2 {
      font-size: 2.2rem;
    }

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

    .filter-buttons {
      gap: 10px;
    }

    .filter-btn {
      padding: 10px 20px;
      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(93, 47%, 63%, 0.1);
    border-radius: 50%;
    z-index: 0;
  }

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

  #advantages .section-header h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 15px;
    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(93, 47%, 38%);
    border-radius: 2px;
  }

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

  #advantages .advantage-card {
    background: #ffffff;
    border-radius: 15px;
    padding: 35px 25px;
    margin-bottom: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 1;
  }

  #advantages .advantage-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, hsl(93, 47%, 38%) 0%, hsl(93, 47%, 63%) 100%);
    border-radius: 15px 15px 0 0;
    opacity: 0;
    transition: opacity 0.4s ease;
  }

  #advantages .advantage-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    border-color: hsl(93, 47%, 63%);
  }

  #advantages .advantage-card:hover::before {
    opacity: 1;
  }

  #advantages .icon-wrapper {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, hsl(93, 47%, 38%) 0%, hsl(93, 47%, 23%) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: all 0.4s ease;
    position: relative;
  }

  #advantages .advantage-card:hover .icon-wrapper {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, hsl(93, 47%, 63%) 0%, hsl(93, 47%, 38%) 100%);
  }

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

  #advantages .advantage-card h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.35rem;
    font-weight: 600;
    color: #222;
    margin-bottom: 15px;
    transition: color 0.3s ease;
  }

  #advantages .advantage-card:hover h3 {
    color: hsl(93, 47%, 38%);
  }

  #advantages .advantage-card p {
    font-family: 'Nunito', sans-serif;
    font-size: 1rem;
    color: #666;
    line-height: 1.7;
    margin: 0;
    flex-grow: 1;
  }

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

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

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

    #advantages .advantage-card {
      padding: 30px 20px;
      margin-bottom: 20px;
    }

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

    #advantages .icon-wrapper i {
      font-size: 28px;
    }

    #advantages .advantage-card h3 {
      font-size: 1.2rem;
    }
  }

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

    #advantages .advantage-card {
      padding: 25px 18px;
    }
  }

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@600;700&family=Nunito:wght@400;600&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(93, 47%, 38%) 0%, hsl(93, 47%, 63%) 100%);
  }

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

  .statistics-header h2 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 2.5rem;
    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(93, 47%, 38%);
  }

  .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: 40px 25px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    margin-bottom: 30px;
    border: 2px solid transparent;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .stat-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.12);
    border-color: hsl(93, 47%, 63%);
  }

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

  .stat-card:hover .stat-icon {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, hsl(93, 47%, 63%) 0%, hsl(93, 47%, 38%) 100%);
  }

  .stat-number {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 2.8rem;
    color: hsl(93, 47%, 38%);
    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;
  }

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

  .stat-card.animate .stat-number {
    animation: countUp 0.8s ease-out forwards;
  }

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

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

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

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

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

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

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

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

footer {
  background: linear-gradient(135deg, hsl(93, 47%, 23%) 0%, hsl(93, 47%, 38%) 100%);
  color: #ffffff;
  padding: 60px 0 20px;
  font-family: 'Nunito', sans-serif;
  margin-top: 80px;
}

footer h5 {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 1.2rem;
  margin-bottom: 20px;
  color: hsl(93, 47%, 63%);
}

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

footer a {
  text-decoration: none;
  transition: color 0.3s ease;
}

footer a:hover {
  color: hsl(93, 47%, 63%);
}

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

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

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

footer .contact-item i {
  color: hsl(93, 47%, 63%);
  margin-right: 10px;
  margin-top: 3px;
  font-size: 1.1rem;
}

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

footer .company-description {
  color: #e8e8e8;
  margin-bottom: 25px;
  line-height: 1.8;
}

#cookieNotice {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #ffffff;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
  z-index: 9999;
  padding: 25px 0;
  border-top: 3px solid hsl(93, 47%, 38%);
}

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

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

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

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

#cookieNotice .cookie-category {
  margin-bottom: 12px;
  padding: 10px;
  border-left: 3px solid hsl(93, 47%, 63%);
  background: #ffffff;
}

#cookieNotice .cookie-category strong {
  color: #222;
  font-size: 0.95rem;
  display: block;
  margin-bottom: 5px;
}

#cookieNotice .cookie-category span {
  color: #666;
  font-size: 0.85rem;
}

#cookieNotice .cookie-category.required {
  border-left-color: hsl(93, 47%, 38%);
}

#cookieNotice .cookie-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

#cookieNotice .btn-accept-all {
  background: hsl(93, 47%, 38%);
  color: #ffffff;
  border: none;
  padding: 12px 30px;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Nunito', sans-serif;
}

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

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

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

#cookieNotice .btn-settings {
  background: transparent;
  color: hsl(93, 47%, 38%);
  border: 2px solid hsl(93, 47%, 38%);
  padding: 10px 28px;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  font-family: 'Nunito', sans-serif;
}

#cookieNotice .btn-settings:hover {
  background: hsl(93, 47%, 38%);
  color: #ffffff;
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  #cookieNotice .cookie-buttons {
    flex-direction: column;
  }
  
  #cookieNotice .btn-accept-all,
  #cookieNotice .btn-reject,
  #cookieNotice .btn-settings {
    width: 100%;
    text-align: center;
  }
  
  footer {
    padding: 40px 0 20px;
  }
}

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

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

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

.contact-section .section-subtitle {
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.contact-info-item {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e9ecef;
}

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

.contact-info-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, hsl(93, 47%, 38%), hsl(93, 47%, 63%));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    flex-shrink: 0;
}

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

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

.contact-info-text {
    color: #555;
    margin: 0;
    line-height: 1.8;
}

.contact-info-text a {
    color: hsl(93, 47%, 38%);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info-text a:hover {
    color: hsl(93, 47%, 23%);
    text-decoration: underline;
}

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

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

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

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

.form-control:focus, .form-select:focus {
    border-color: hsl(93, 47%, 38%);
    box-shadow: 0 0 0 0.2rem rgba(114, 158, 70, 0.15);
    outline: none;
}

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

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

.btn-submit {
    background: linear-gradient(135deg, hsl(93, 47%, 38%), hsl(93, 47%, 23%));
    color: #ffffff;
    border: none;
    padding: 1rem 3rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
    width: 100%;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(114, 158, 70, 0.3);
    background: linear-gradient(135deg, hsl(93, 47%, 23%), hsl(93, 47%, 38%));
    color: #ffffff;
}

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

.working-hours-list li {
    padding: 0.5rem 0;
    color: #555;
    display: flex;
    justify-content: space-between;
    border-bottom: 1px dashed #e9ecef;
}

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

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

.working-hours-list .time {
    color: hsl(93, 47%, 38%);
}

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

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

@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(93, 47%, 38%);
    --secondary-color: hsl(93, 47%, 23%);
    --accent-color: hsl(93, 47%, 63%);
  }

  .policy-content {
    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);
  }

  .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: 1rem;
    color: var(--primary-color);
    position: relative;
    padding-left: 1rem;
  }

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

  .policy-content h3 {
    font-size: 1.3rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--primary-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: color 0.3s ease;
  }

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

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

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

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

  .info-box {
    background-color: hsl(93, 47%, 95%);
    border-left: 4px solid var(--primary-color);
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 0.5rem;
  }

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

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

  .contact-section h2 {
    color: white;
  }

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

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

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

.faq-section h2 {
  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: 1px solid #e0e0e0;
  margin-bottom: 1rem;
  border-radius: 8px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
}

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

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

.faq-accordion .accordion-button:not(.collapsed) {
  background: hsl(93, 47%, 38%);
  color: #ffffff;
  box-shadow: none;
}

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

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

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

.faq-accordion .accordion-body {
  padding: 1.5rem;
  color: #333;
  font-size: 1rem;
  line-height: 1.7;
  background: #ffffff;
}

.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-number {
  display: inline-block;
  width: 28px;
  height: 28px;
  background: hsl(93, 47%, 63%);
  color: #222;
  border-radius: 50%;
  text-align: center;
  line-height: 28px;
  font-size: 0.85rem;
  font-weight: 700;
  margin-right: 0.75rem;
}

.faq-accordion .accordion-button:not(.collapsed) .faq-number {
  background: #ffffff;
  color: hsl(93, 47%, 38%);
}

@media (max-width: 768px) {
  .faq-section {
    padding: 60px 0;
  }
  
  .faq-section h2 {
    font-size: 2rem;
  }
  
  .faq-accordion .accordion-button {
    font-size: 1rem;
    padding: 1rem;
  }
  
  .faq-accordion .accordion-body {
    padding: 1rem;
    font-size: 0.95rem;
  }
}

.newsletter-section {
    padding: 80px 0;
    background: linear-gradient(135deg, hsl(93, 47%, 38%) 0%, hsl(93, 47%, 23%) 100%);
    position: relative;
    overflow: hidden;
}

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

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

.newsletter-heading {
    font-family: "Poppins", sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
    text-align: center;
}

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

.newsletter-form {
    max-width: 600px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.1);
    padding: 2.5rem;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.newsletter-input-group {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

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

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

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

.newsletter-submit-btn {
    padding: 1rem 2.5rem;
    font-family: "Poppins", sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: hsl(93, 47%, 23%);
    background: #ffffff;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.newsletter-submit-btn:hover {
    background: hsl(93, 47%, 63%);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

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

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

.newsletter-benefit-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: "Nunito", sans-serif;
    font-size: 0.95rem;
    color: #f8f9fa;
}

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

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

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

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

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

    .newsletter-form {
        padding: 2rem 1.5rem;
    }

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

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

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

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

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

    .newsletter-form {
        padding: 1.5rem 1rem;
    }
}

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

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

  .hero-section h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    font-weight: 500;
    color: hsl(93, 47%, 38%);
    margin-bottom: 1.5rem;
  }

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

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

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

  .hero-advantages li::before {
    content: "\f26b";
    font-family: 'bootstrap-icons';
    position: absolute;
    left: 0;
    color: hsl(93, 47%, 38%);
    font-size: 1.3rem;
    font-weight: bold;
  }

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

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

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

  .btn-hero-primary {
    font-family: 'Nunito', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    padding: 14px 35px;
    background-color: hsl(93, 47%, 38%);
    color: #ffffff;
    border: none;
    border-radius: 8px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(93, 138, 60, 0.3);
  }

  .btn-hero-primary:hover {
    background-color: hsl(93, 47%, 23%);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(93, 138, 60, 0.4);
  }

  .btn-hero-secondary {
    font-family: 'Nunito', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    padding: 14px 35px;
    background-color: transparent;
    color: hsl(93, 47%, 38%);
    border: 2px solid hsl(93, 47%, 38%);
    border-radius: 8px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
  }

  .btn-hero-secondary:hover {
    background-color: hsl(93, 47%, 38%);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(93, 138, 60, 0.3);
  }

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

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

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

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

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

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

    .hero-section p {
      font-size: 1rem;
    }

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

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

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

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

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

  .services-section .section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: hsl(93, 47%, 38%);
    border-radius: 2px;
  }

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

  .service-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 35px 25px;
    margin-bottom: 30px;
    transition: all 0.4s ease;
    border: 2px solid #f0f0f0;
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  }

  .service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(93, 137, 56, 0.15);
    border-color: hsl(93, 47%, 63%);
  }

  .service-icon-wrapper {
    width: 75px;
    height: 75px;
    background: linear-gradient(135deg, hsl(93, 47%, 38%) 0%, hsl(93, 47%, 23%) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: all 0.4s ease;
  }

  .service-card:hover .service-icon-wrapper {
    background: linear-gradient(135deg, hsl(93, 47%, 63%) 0%, hsl(93, 47%, 38%) 100%);
    transform: rotate(360deg);
  }

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

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

  .service-description {
    color: #555;
    font-size: 0.98rem;
    line-height: 1.8;
    margin-bottom: 25px;
    flex-grow: 1;
  }

  .service-price {
    font-family: 'Poppins', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: hsl(93, 47%, 38%);
    margin-bottom: 12px;
  }

  .service-price-note {
    font-size: 0.85rem;
    color: #777;
    margin-bottom: 20px;
  }

  .service-features {
    list-style: none;
    padding: 0;
    margin: 20px 0;
  }

  .service-features li {
    padding: 8px 0;
    color: #555;
    font-size: 0.95rem;
    position: relative;
    padding-left: 28px;
  }

  .service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: hsl(93, 47%, 38%);
    font-weight: bold;
    font-size: 1.1rem;
  }

  .service-btn {
    background: hsl(93, 47%, 38%);
    color: #ffffff;
    border: none;
    padding: 12px 28px;
    border-radius: 6px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    margin-top: auto;
  }

  .service-btn:hover {
    background: hsl(93, 47%, 23%);
    color: #ffffff;
    transform: translateX(5px);
  }

  .featured-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: hsl(93, 47%, 38%);
    color: #ffffff;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
  }

  .service-card {
    position: relative;
  }

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

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

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

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

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

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

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

.testimonial-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 30px;
  margin-bottom: 30px;
  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;
}

.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(93, 47%, 38%) 0%, hsl(93, 47%, 23%) 100%);
  color: #ffffff;
}

.testimonial-card.featured .testimonial-text {
  color: #ffffff;
}

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

.testimonial-card.featured .customer-location {
  color: rgba(255,255,255,0.85);
}

.testimonial-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 20px;
}

.customer-info {
  display: flex;
  align-items: center;
  gap: 15px;
}

.customer-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: hsl(93, 47%, 63%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Poppins', sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: #ffffff;
  flex-shrink: 0;
}

.testimonial-card.featured .customer-avatar {
  background: rgba(255,255,255,0.2);
}

.customer-details h4 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: #222;
  margin: 0 0 5px 0;
}

.testimonial-card.featured .customer-details h4 {
  color: #ffffff;
}

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

.rating {
  display: flex;
  gap: 3px;
}

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

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

.testimonial-card.featured .rating i.empty {
  color: rgba(255,255,255,0.3);
}

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

.testimonial-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 15px;
  border-top: 1px solid #eee;
  font-size: 0.85rem;
  color: #888;
}

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

.verified-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: hsl(93, 47%, 63%);
  color: #ffffff;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}

.testimonial-card.featured .verified-badge {
  background: rgba(255,255,255,0.2);
}

.testimonial-date {
  font-style: italic;
}

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

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

.testimonial-stats {
  background: #ffffff;
  border-radius: 12px;
  padding: 40px;
  margin-top: 50px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  text-align: center;
}

.stat-item h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: hsl(93, 47%, 38%);
  margin-bottom: 10px;
}

.stat-item p {
  color: #666;
  font-size: 1rem;
  margin: 0;
}

@media (max-width: 768px) {
  .testimonials-section {
    padding: 60px 0;
  }
  
  .testimonials-section h2 {
    font-size: 2rem;
  }
  
  .testimonial-card {
    padding: 25px;
  }
  
  .customer-avatar {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
  }
  
  .testimonial-stats {
    padding: 30px 20px;
  }
  
  .stat-item h3 {
    font-size: 2rem;
  }
}

.offer-section {
  background: linear-gradient(135deg, hsl(93, 47%, 38%) 0%, hsl(93, 47%, 23%) 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

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

.offer-section::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: hsl(93, 47%, 63%);
  opacity: 0.1;
  border-radius: 50%;
}

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

.offer-badge {
  display: inline-block;
  background: hsl(93, 47%, 63%);
  color: hsl(93, 47%, 23%);
  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.8;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.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(93, 47%, 63%) 0%, hsl(93, 47%, 48%) 100%);
  border-radius: 15px;
}

.deadline-label {
  font-family: 'Nunito', sans-serif;
  font-size: 16px;
  color: hsl(93, 47%, 23%);
  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(93, 47%, 38%);
  font-size: 28px;
}

.offer-benefits {
  margin-bottom: 40px;
}

.offer-benefits h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 28px;
  font-weight: 600;
  color: #222222;
  margin-bottom: 30px;
  text-align: center;
}

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

.benefit-item:hover {
  background: hsl(93, 47%, 95%);
  transform: translateX(10px);
}

.benefit-icon {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  background: hsl(93, 47%, 38%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 24px;
}

.benefit-content h4 {
  font-family: 'Poppins', sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: #222222;
  margin-bottom: 8px;
}

.benefit-content p {
  font-family: 'Nunito', sans-serif;
  font-size: 16px;
  color: #555555;
  margin: 0;
  line-height: 1.6;
}

.discount-highlight {
  text-align: center;
  padding: 30px;
  background: hsl(93, 47%, 38%);
  border-radius: 15px;
  margin-bottom: 40px;
}

.discount-percentage {
  font-family: 'Poppins', sans-serif;
  font-size: 72px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1;
  margin-bottom: 10px;
}

.discount-text {
  font-family: 'Nunito', sans-serif;
  font-size: 20px;
  color: hsl(93, 47%, 63%);
  font-weight: 600;
}

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

.offer-btn {
  display: inline-block;
  background: hsl(93, 47%, 38%);
  color: #ffffff;
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  font-weight: 600;
  padding: 18px 50px;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.offer-btn:hover {
  background: hsl(93, 47%, 23%);
  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-card {
    padding: 30px 20px;
  }

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

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

  .benefit-item {
    flex-direction: column;
    text-align: center;
  }

  .benefit-item:hover {
    transform: translateX(0);
  }

  .offer-btn {
    padding: 16px 40px;
    font-size: 16px;
  }
}

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

  .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: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 25px 15px;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

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

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

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

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

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

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

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

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

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

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

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

.blog-preview::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: hsl(93, 47%, 63%);
  opacity: 0.05;
  border-radius: 50%;
  z-index: 0;
}

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

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

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

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

.blog-preview .section-subtitle {
  font-family: 'Nunito', sans-serif;
  font-size: 1.1rem;
  color: #666;
  margin-top: 25px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

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

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

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

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

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

.blog-card-meta {
  position: absolute;
  top: 20px;
  left: 20px;
  display: flex;
  gap: 10px;
  z-index: 2;
}

.blog-card-badge {
  background: hsl(93, 47%, 38%);
  color: #ffffff;
  padding: 6px 14px;
  border-radius: 20px;
  font-family: 'Nunito', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 5px;
}

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

.blog-card-date {
  font-family: 'Nunito', sans-serif;
  font-size: 0.9rem;
  color: #888;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 15px;
}

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

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

.blog-card:hover .blog-card-title {
  color: hsl(93, 47%, 38%);
}

.blog-card-excerpt {
  font-family: 'Nunito', sans-serif;
  font-size: 1rem;
  color: #555;
  line-height: 1.7;
  margin-bottom: 20px;
  flex-grow: 1;
}

.blog-card-link {
  font-family: 'Nunito', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: hsl(93, 47%, 38%);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.blog-card-link:hover {
  color: hsl(93, 47%, 23%);
  gap: 12px;
}

.blog-card-link::after {
  content: '→';
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

.blog-card-link:hover::after {
  transform: translateX(3px);
}

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

.btn-view-all {
  font-family: 'Poppins', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: #ffffff;
  background: hsl(93, 47%, 38%);
  border: 2px solid hsl(93, 47%, 38%);
  padding: 14px 40px;
  border-radius: 8px;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(93, 147, 38, 0.3);
}

.btn-view-all:hover {
  background: hsl(93, 47%, 23%);
  border-color: hsl(93, 47%, 23%);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(93, 147, 38, 0.4);
}

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

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

  .blog-preview .section-subtitle {
    font-size: 1rem;
  }

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

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

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

  .blog-card-excerpt {
    font-size: 0.95rem;
  }

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

@media (max-width: 576px) {
  .blog-preview .section-title {
    font-size: 1.75rem;
  }

  .blog-card-meta {
    flex-direction: column;
    gap: 8px;
  }

  .blog-card-date {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
}

.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;
  background: #ffffff;
  border-radius: 12px;
  padding: 50px 40px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  border-left: 5px solid hsl(93, 47%, 38%);
}

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

.disclaimer-icon {
  font-size: 3.5rem;
  color: hsl(93, 47%, 38%);
  opacity: 0.9;
}

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

.disclaimer-content {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #444;
  text-align: justify;
}

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

@media (max-width: 768px) {
  .disclaimer-section {
    padding: 60px 0;
  }
  
  .disclaimer-container {
    padding: 35px 25px;
    margin: 0 15px;
  }
  
  .disclaimer-title {
    font-size: 1.8rem;
    margin-bottom: 25px;
  }
  
  .disclaimer-icon {
    font-size: 2.8rem;
  }
  
  .disclaimer-content {
    font-size: 1rem;
    text-align: left;
  }
}

@media (max-width: 480px) {
  .disclaimer-container {
    padding: 30px 20px;
  }
  
  .disclaimer-title {
    font-size: 1.6rem;
  }
}

@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(93, 47%, 38%);
    --secondary-color: hsl(93, 47%, 23%);
    --accent-color: hsl(93, 47%, 63%);
  }

  .policy-content {
    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);
  }

  .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: 1rem;
    color: var(--primary-color);
    position: relative;
    padding-left: 1rem;
  }

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

  .policy-content h3 {
    font-size: 1.35rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--primary-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: color 0.3s ease;
  }

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

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

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

  .policy-intro {
    background-color: hsl(93, 47%, 95%);
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 5px solid var(--primary-color);
    margin-bottom: 2rem;
  }

  .policy-section {
    background-color: #fff;
    padding: 2rem;
    margin-bottom: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  }

  .contact-info {
    background-color: var(--secondary-color);
    color: #fff;
    padding: 2rem;
    border-radius: 8px;
    margin-top: 2.5rem;
  }

  .contact-info h2 {
    color: #fff;
  }

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

  .contact-info a:hover {
    color: #fff;
  }

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

@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(93, 47%, 38%);
    --secondary-color: hsl(93, 47%, 23%);
    --accent-color: hsl(93, 47%, 63%);
  }

  .policy-content {
    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.75rem;
    color: var(--primary-color);
    margin-top: 2.5rem;
    position: relative;
    padding-left: 1rem;
    border-left: 5px solid var(--accent-color);
  }

  .policy-content h3 {
    font-size: 1.35rem;
    color: var(--primary-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: color 0.3s ease;
  }

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

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

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

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

  .effective-date {
    background-color: hsl(93, 47%, 95%);
    border-left: 4px solid var(--primary-color);
    padding: 1rem 1.5rem;
    margin-bottom: 2rem;
    border-radius: 0 8px 8px 0;
  }

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

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

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

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

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

@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(93, 47%, 38%);
    --secondary-color: hsl(93, 47%, 23%);
    --accent-color: hsl(93, 47%, 63%);
  }

  .thank-you-section {
    font-family: 'Nunito', sans-serif;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(93, 147, 63, 0.05) 0%, rgba(93, 147, 63, 0.1) 100%);
    padding: 2rem 1rem;
  }

  .thank-you-section h1,
  .thank-you-section h2,
  .thank-you-section h3 {
    font-family: 'Poppins', sans-serif;
  }

  .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;
    animation: fadeInUp 0.6s ease-out;
  }

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

  .success-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 2rem;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: scaleIn 0.5s ease-out 0.2s backwards;
  }

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

  .success-icon svg {
    width: 60px;
    height: 60px;
    stroke: white;
    stroke-width: 3;
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none;
    animation: drawCheck 0.5s ease-out 0.5s backwards;
  }

  @keyframes drawCheck {
    from {
      stroke-dasharray: 100;
      stroke-dashoffset: 100;
    }
    to {
      stroke-dasharray: 100;
      stroke-dashoffset: 0;
    }
  }

  .thank-you-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
  }

  .thank-you-subtitle {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 1.25rem;
    color: var(--primary-color);
    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: 2rem;
  }

  .info-box {
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--primary-color) 100%);
    border-radius: 12px;
    padding: 1.25rem;
    color: white;
    display: flex;
    align-items: center;
    gap: 1rem;
    text-align: left;
  }

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

  .info-box-icon svg {
    width: 24px;
    height: 24px;
    stroke: white;
    fill: none;
    stroke-width: 2;
  }

  .info-box-text {
    font-size: 0.95rem;
    line-height: 1.5;
  }

  .btn-home {
    background: var(--primary-color);
    color: white;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    padding: 0.875rem 2.5rem;
    border: none;
    border-radius: 50px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(93, 147, 63, 0.3);
  }

  .btn-home:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(93, 147, 63, 0.4);
    color: white;
  }

  @media (min-width: 768px) {
    .thank-you-card {
      padding: 4rem 3rem;
    }

    .info-boxes {
      grid-template-columns: 1fr 1fr;
    }

    .thank-you-title {
      font-size: 3rem;
    }
  }

  @media (max-width: 576px) {
    .thank-you-title {
      font-size: 2rem;
    }

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

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

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

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