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

* {
  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: #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: 700;
    color: var(--primary-color) !important;
  font-size: 1.4rem;
}

.navbar-brand img {
transition: transform 0.3s ease;
}

.navbar-brand:hover img {
  transform: scale(1.05);
}

.nav-link {
  color: #333 !important;
font-weight: 500;
  padding: 0.5rem 1rem !important;
transition: color 0.3s ease;
font-family: 'Nunito', sans-serif;
}

.nav-link:hover {
color: var(--accent-color) !important;
}

.navbar-toggler {
border: none;
  padding: 0.25rem 0.5rem;
}

.navbar-toggler:focus {
box-shadow: none;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(51, 51, 51, 0.75)' 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;
}

.nav-link {
padding: 0.75rem 1rem !important;
}
}

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

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

  #about .section-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    color: hsl(169, 55%, 18%);
    font-size: 2.8rem;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
  }

  #about .section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60%;
    height: 4px;
    background: hsl(169, 55%, 58%);
    border-radius: 2px;
  }

  #about .subtitle {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 50px;
    font-weight: 400;
  }

  #about .content-wrapper {
    display: flex;
    gap: 40px;
    align-items: center;
    margin-bottom: 60px;
  }

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

  #about .text-content h3 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    color: hsl(169, 55%, 33%);
    font-size: 1.8rem;
    margin-bottom: 20px;
  }

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

  #about .image-wrapper {
    flex: 1;
    position: relative;
  }

  #about .image-wrapper img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    transition: transform 0.4s ease;
  }

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

  #about .values-section {
    background: #ffffff;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.08);
    margin-top: 40px;
  }

  #about .values-section h3 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    color: hsl(169, 55%, 18%);
    font-size: 2rem;
    margin-bottom: 35px;
    text-align: center;
  }

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

  #about .value-card {
    background: linear-gradient(135deg, hsl(169, 55%, 33%) 0%, hsl(169, 55%, 18%) 100%);
    padding: 30px 25px;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
  }

  #about .value-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    transition: transform 0.5s ease;
  }

  #about .value-card:hover::before {
    transform: translate(-25%, -25%);
  }

  #about .value-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
  }

  #about .value-icon {
    font-size: 3rem;
    margin-bottom: 15px;
    color: hsl(169, 55%, 58%);
  }

  #about .value-card h4 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    color: #ffffff;
    font-size: 1.3rem;
    margin-bottom: 12px;
  }

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

  #about .mission-vision {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 60px;
  }

  #about .mission-box, #about .vision-box {
    background: linear-gradient(135deg, hsl(169, 55%, 58%) 0%, hsl(169, 55%, 33%) 100%);
    padding: 40px 35px;
    border-radius: 15px;
    color: #ffffff;
    position: relative;
    overflow: hidden;
  }

  #about .mission-box::after, #about .vision-box::after {
    content: '';
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 150px;
    height: 150px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
  }

  #about .mission-box h4, #about .vision-box h4 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 1.6rem;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
  }

  #about .mission-box p, #about .vision-box p {
    font-size: 1.05rem;
    line-height: 1.7;
    margin: 0;
    position: relative;
    z-index: 1;
  }

  #about .stats-row {
    display: flex;
    justify-content: space-around;
    margin-top: 60px;
    padding: 40px 20px;
    background: hsl(169, 55%, 33%);
    border-radius: 15px;
  }

  #about .stat-item {
    text-align: center;
    color: #ffffff;
  }

  #about .stat-number {
    font-family: 'Poppins', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: hsl(169, 55%, 58%);
    display: block;
    margin-bottom: 10px;
  }

  #about .stat-label {
    font-size: 1.1rem;
    color: #f0f0f0;
  }

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

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

    #about .stats-row {
      flex-direction: column;
      gap: 30px;
    }
  }

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

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

    #about .values-section {
      padding: 30px 20px;
    }

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

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

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

  #portfolio .section-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    color: hsl(169, 55%, 18%);
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-align: center;
  }

  #portfolio .section-subtitle {
    font-family: 'Nunito', sans-serif;
    color: #555;
    font-size: 1.1rem;
    text-align: center;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
  }

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

  .filter-btn {
    padding: 10px 28px;
    border: 2px solid hsl(169, 55%, 33%);
    background: transparent;
    color: hsl(169, 55%, 33%);
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.95rem;
  }

  .filter-btn:hover,
  .filter-btn.active {
    background: hsl(169, 55%, 33%);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.15);
  }

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

  .portfolio-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px 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.2);
  }

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

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

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

  .portfolio-category {
    display: inline-block;
    padding: 5px 15px;
    background: hsl(169, 55%, 58%);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 20px;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }

  .portfolio-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    color: hsl(169, 55%, 18%);
    font-size: 1.4rem;
    margin-bottom: 12px;
    line-height: 1.3;
  }

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

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

  .modal-header {
    background: linear-gradient(135deg, hsl(169, 55%, 33%) 0%, hsl(169, 55%, 18%) 100%);
    color: #fff;
    border-radius: 15px 15px 0 0;
    padding: 25px 30px;
  }

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

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

  .modal-body {
    padding: 35px;
  }

  .modal-body img {
    border-radius: 10px;
    margin-bottom: 25px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  }

  .modal-category-badge {
    display: inline-block;
    padding: 8px 20px;
    background: hsl(169, 55%, 58%);
    color: #fff;
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 25px;
    margin-bottom: 20px;
    text-transform: uppercase;
  }

  .modal-section-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    color: hsl(169, 55%, 18%);
    font-size: 1.3rem;
    margin-top: 25px;
    margin-bottom: 15px;
  }

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

  .modal-list {
    list-style: none;
    padding-left: 0;
  }

  .modal-list li {
    padding: 10px 0;
    color: #555;
    position: relative;
    padding-left: 30px;
  }

  .modal-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: hsl(169, 55%, 33%);
    font-weight: bold;
    font-size: 1.2rem;
  }

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

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

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

    .filter-buttons {
      gap: 10px;
    }

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

    .modal-body {
      padding: 25px 20px;
    }
  }

  .portfolio-item.hidden {
    display: none;
  }

  .portfolio-item.show {
    animation: fadeInUp 0.5s ease;
  }

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

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

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

  #advantages::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, hsl(169, 55%, 58%, 0.1) 0%, transparent 70%);
    border-radius: 50%;
  }

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

  #advantages .section-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 2.5rem;
    color: hsl(169, 55%, 18%);
    margin-bottom: 15px;
  }

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

  .advantage-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 35px 25px;
    height: 100%;
    box-shadow: 0 4px 15px 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;
  }

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

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

  .advantage-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 35px rgba(42, 117, 97, 0.2);
    border-color: hsl(169, 55%, 58%);
  }

  .advantage-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, hsl(169, 55%, 33%) 0%, hsl(169, 55%, 58%) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    transition: all 0.4s ease;
  }

  .advantage-card:hover .advantage-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 20px rgba(42, 117, 97, 0.3);
  }

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

  .advantage-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 1.35rem;
    color: hsl(169, 55%, 18%);
    margin-bottom: 14px;
  }

  .advantage-description {
    font-family: 'Nunito', sans-serif;
    font-size: 0.98rem;
    color: #666;
    line-height: 1.7;
    margin: 0;
  }

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

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

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

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

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

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

@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(169, 55%, 33%) 0%, 
      hsl(169, 55%, 58%) 50%, 
      hsl(169, 55%, 33%) 100%);
  }
  
  .stats-header {
    text-align: center;
    margin-bottom: 60px;
  }
  
  .stats-header h2 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 2.5rem;
    color: hsl(169, 55%, 18%);
    margin-bottom: 15px;
  }
  
  .stats-header p {
    font-family: 'Nunito', sans-serif;
    font-size: 1.1rem;
    color: #555;
    max-width: 700px;
    margin: 0 auto;
  }
  
  .stat-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 35px 25px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    height: 100%;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
  }
  
  .stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, 
      transparent, 
      hsl(169, 55%, 58%), 
      transparent);
    transition: left 0.6s ease;
  }
  
  .stat-card:hover::before {
    left: 100%;
  }
  
  .stat-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(42, 128, 106, 0.2);
    border-color: hsl(169, 55%, 58%);
  }
  
  .stat-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, 
      hsl(169, 55%, 33%) 0%, 
      hsl(169, 55%, 58%) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
  }
  
  .stat-card:hover .stat-icon {
    transform: rotate(360deg) scale(1.1);
  }
  
  .stat-icon i {
    font-size: 32px;
    color: #ffffff;
  }
  
  .stat-number {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 2.8rem;
    color: hsl(169, 55%, 18%);
    margin-bottom: 8px;
    line-height: 1;
  }
  
  .stat-label {
    font-family: 'Nunito', sans-serif;
    font-size: 1rem;
    color: #666;
    font-weight: 600;
    margin-bottom: 6px;
  }
  
  .stat-context {
    font-family: 'Nunito', sans-serif;
    font-size: 0.85rem;
    color: #888;
    font-style: italic;
  }
  
  @media (max-width: 768px) {
    #statistics {
      padding: 60px 0;
    }
    
    .stats-header h2 {
      font-size: 2rem;
    }
    
    .stat-card {
      margin-bottom: 25px;
      padding: 30px 20px;
    }
    
    .stat-number {
      font-size: 2.2rem;
    }
  }
  
  @media (max-width: 576px) {
    .stats-header h2 {
      font-size: 1.75rem;
    }
    
    .stat-icon {
      width: 60px;
      height: 60px;
    }
    
    .stat-icon i {
      font-size: 28px;
    }
  }

footer {
  background: hsl(169, 55%, 18%);
    color: #f8f9fa;
  padding: 3rem 0 1rem;
font-family: 'Nunito', sans-serif;
}

footer h5 {
font-family: 'Poppins', sans-serif;
    color: hsl(169, 55%, 58%);
  margin-bottom: 1.2rem;
      font-size: 1.1rem;
}

footer p, footer li, footer a {
  font-size: 0.95rem;
    line-height: 1.6;
}

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

footer a:hover {
  color: hsl(169, 55%, 58%);
}

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

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

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

.footer-links {
  display: flex;
    gap: 1.5rem;
  justify-content: center;
      margin-bottom: 1rem;
    flex-wrap: wrap;
}

#cookieNotice {
  position: fixed;
    bottom: 0;
left: 0;
    right: 0;
  background: #fff;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
  z-index: 9999;
      padding: 1.5rem 0;
  border-top: 3px solid hsl(169, 55%, 33%);
}

#cookieNotice h4 {
font-family: 'Poppins', sans-serif;
    color: hsl(169, 55%, 18%);
  margin-bottom: 0.8rem;
      font-size: 1.3rem;
}

#cookieNotice p {
  color: #333;
    font-size: 0.95rem;
  margin-bottom: 1rem;
}

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

.cookie-category {
  margin-bottom: 0.7rem;
    font-size: 0.9rem;
  color: #222;
}

.cookie-category strong {
  color: hsl(169, 55%, 33%);
      display: block;
  margin-bottom: 0.2rem;
}

.cookie-buttons {
display: flex;
    gap: 0.8rem;
  flex-wrap: wrap;
      margin-top: 1.2rem;
}

.btn-accept-all {
  background: hsl(169, 55%, 33%);
    color: #fff;
  border: none;
      padding: 0.7rem 1.8rem;
  border-radius: 6px;
    font-weight: 600;
  transition: all 0.3s ease;
}

.btn-accept-all:hover {
background: hsl(169, 55%, 28%);
    transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.btn-reject {
  background: #6c757d;
    color: #fff;
  border: none;
      padding: 0.7rem 1.8rem;
  border-radius: 6px;
    font-weight: 600;
  transition: all 0.3s ease;
}

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

.btn-manage {
background: transparent;
    color: hsl(169, 55%, 33%);
  border: 2px solid hsl(169, 55%, 33%);
      padding: 0.7rem 1.8rem;
  border-radius: 6px;
    font-weight: 600;
  text-decoration: none;
      display: inline-block;
  transition: all 0.3s ease;
}

.btn-manage:hover {
  background: hsl(169, 55%, 33%);
    color: #fff;
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .cookie-buttons {
    flex-direction: column;
  }
  
  .cookie-buttons button,
  .cookie-buttons a {
      width: 100%;
    text-align: center;
  }
}

.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(169, 55%, 33%)20; padding-bottom: 2rem; }
.article-header h1 { font-size: 2.5rem; margin-bottom: 1rem; font-family: Poppins, sans-serif; color: hsl(169, 55%, 18%); }
.article-meta { color: #666; font-size: 0.95rem; margin-bottom: 1.5rem; }
.article-meta i { color: hsl(169, 55%, 33%); }
.article-hero-img { width: 100%; height: auto; border-radius: 12px; margin-bottom: 2rem; box-shadow: 0 4px 15px rgba(0,0,0,0.1); }
.blog-article h2 { color: hsl(169, 55%, 18%); font-family: Poppins, sans-serif; margin-top: 2rem; }
.blog-article h3 { color: hsl(169, 55%, 18%); font-family: Poppins, sans-serif; }
.blog-article a { color: hsl(169, 55%, 33%); }
.blog-article a:hover { color: hsl(169, 55%, 58%); }
.blog-article ul, .blog-article ol { margin: 1rem 0; padding-left: 1.5rem; }
.blog-article blockquote { border-left: 4px solid hsl(169, 55%, 33%); padding-left: 1rem; margin: 1.5rem 0; font-style: italic; color: #555; }

.contact-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
  }
  
  .contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, 
      hsl(169, 55%, 33%) 0%, 
      hsl(169, 55%, 58%) 50%, 
      hsl(169, 55%, 33%) 100%);
  }

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

  .contact-header h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    color: hsl(169, 55%, 18%);
    font-weight: 700;
    margin-bottom: 15px;
  }

  .contact-header p {
    font-family: 'Nunito', sans-serif;
    font-size: 1.1rem;
    color: #555;
    max-width: 600px;
    margin: 0 auto;
  }

  .contact-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0,0,0,0.12);
  }

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

  .contact-form-title {
    font-family: 'Poppins', sans-serif;
    font-size: 1.8rem;
    color: hsl(169, 55%, 18%);
    margin-bottom: 30px;
    font-weight: 600;
  }

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

  .form-control, .form-select {
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    padding: 12px 16px;
    font-family: 'Nunito', sans-serif;
    transition: all 0.3s ease;
    font-size: 1rem;
  }

  .form-control:focus, .form-select:focus {
    border-color: hsl(169, 55%, 58%);
    box-shadow: 0 0 0 0.2rem rgba(46, 139, 106, 0.15);
    outline: none;
  }

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

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

  .submit-btn {
    background: linear-gradient(135deg, hsl(169, 55%, 33%) 0%, hsl(169, 55%, 58%) 100%);
    color: #ffffff;
    border: none;
    padding: 14px 40px;
    border-radius: 10px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    margin-top: 10px;
  }

  .submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(46, 139, 106, 0.3);
  }

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

  .info-card-title {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    color: hsl(169, 55%, 18%);
    margin-bottom: 25px;
    font-weight: 600;
  }

  .info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
    padding: 15px;
    border-radius: 10px;
    background: #f8f9fa;
    transition: background 0.3s ease;
  }

  .info-item:hover {
    background: #e9ecef;
  }

  .info-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, hsl(169, 55%, 33%) 0%, hsl(169, 55%, 58%) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-right: 18px;
  }

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

  .info-content h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    color: #333;
    margin-bottom: 6px;
    font-weight: 600;
  }

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

  .info-content a {
    color: hsl(169, 55%, 33%);
    text-decoration: none;
    transition: color 0.3s ease;
  }

  .info-content a:hover {
    color: hsl(169, 55%, 58%);
    text-decoration: underline;
  }

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

  .hours-list li {
    padding: 8px 0;
    border-bottom: 1px solid #e0e0e0;
    font-family: 'Nunito', sans-serif;
    font-size: 0.95rem;
    color: #666;
  }

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

  .hours-list strong {
    color: #333;
  }

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

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

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

    .contact-card {
      padding: 30px;
    }
  }

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

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

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

    .contact-card {
      padding: 25px;
    }

    .info-item {
      padding: 12px;
    }

    .info-icon {
      width: 40px;
      height: 40px;
    }
  }

@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(169, 55%, 33%);
    --secondary-color: hsl(169, 55%, 18%);
    --accent-color: hsl(169, 55%, 58%);
  }
  
  .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(--accent-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 a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
  }
  
  .policy-content a:hover {
    color: var(--accent-color);
    text-decoration: underline;
  }
  
  .policy-content ul,
  .policy-content ol {
    margin: 1.5rem 0;
    padding-left: 2rem;
  }
  
  .policy-content li {
    margin-bottom: 0.75rem;
  }
  
  .policy-content p {
    margin-bottom: 1.25rem;
    text-align: justify;
  }
  
  .info-box {
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--primary-color) 100%);
    color: white;
    padding: 2rem;
    border-radius: 10px;
    margin: 2rem 0;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  }
  
  .info-box h3 {
    color: white;
    margin-top: 0;
  }
  
  .cookie-type-card {
    background: #f8f9fa;
    border-left: 4px solid var(--accent-color);
    padding: 1.5rem;
    margin: 1.5rem 0;
    border-radius: 5px;
    transition: transform 0.3s ease;
  }
  
  .cookie-type-card:hover {
    transform: translateX(10px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  }
  
  .cookie-type-card h3 {
    margin-top: 0;
    color: var(--secondary-color);
  }
  
  .last-updated {
    background-color: var(--secondary-color);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    display: inline-block;
    font-size: 0.9rem;
    margin-bottom: 2rem;
  }
  
  .contact-section {
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 2rem;
    border-radius: 10px;
    margin-top: 3rem;
  }
  
  .contact-section a {
    color: var(--accent-color);
  }
  
  .contact-section a:hover {
    color: white;
  }

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

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

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

  #faq .section-title {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: hsl(169, 55%, 18%);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
  }

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

  #faq .section-subtitle {
    font-size: 1.1rem;
    color: #666;
    margin-top: 25px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
  }

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

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

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

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

  #faq .accordion-button:not(.collapsed) {
    background-color: hsl(169, 55%, 33%);
    color: #ffffff;
    box-shadow: none;
  }

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

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

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

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

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

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

  #faq .accordion-body strong {
    color: hsl(169, 55%, 33%);
    font-weight: 600;
  }

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

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

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

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

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

  #newsletter {
    background: linear-gradient(135deg, hsl(169, 55%, 33%) 0%, hsl(169, 55%, 18%) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
  }

  #newsletter::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    border-radius: 50%;
  }

  #newsletter::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 70%);
    border-radius: 50%;
  }

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

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

  .newsletter-description {
    font-family: 'Nunito', sans-serif;
    color: #f8f9fa;
    font-size: 1.1rem;
    text-align: center;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
  }

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

  .newsletter-input-wrapper {
    position: relative;
    margin-bottom: 15px;
  }

  .newsletter-email-input {
    width: 100%;
    padding: 18px 24px;
    border: 2px solid rgba(255,255,255,0.3);
    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-email-input:focus {
    outline: none;
    border-color: hsl(169, 55%, 58%);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(255,255,255,0.2);
  }

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

  .newsletter-submit-btn {
    width: 100%;
    padding: 18px 24px;
    background: hsl(169, 55%, 58%);
    color: #fff;
    border: none;
    border-radius: 50px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  }

  .newsletter-submit-btn:hover {
    background: hsl(169, 55%, 48%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
  }

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

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

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

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

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

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

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

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

    .newsletter-benefits {
      gap: 15px;
    }

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

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

    .newsletter-email-input,
    .newsletter-submit-btn {
      padding: 15px 20px;
      font-size: 0.95rem;
    }

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

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

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

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

  .hero-badge {
    display: inline-block;
    background: hsl(169, 55%, 58%);
    color: #fff;
    padding: 8px 20px;
    border-radius: 50px;
    font-family: 'Nunito', sans-serif;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
  }

  .hero-section h1 {
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    color: hsl(169, 55%, 18%);
    font-size: 3.2rem;
    line-height: 1.2;
    margin-bottom: 20px;
    position: relative;
  }

  .hero-section h2 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    color: hsl(169, 55%, 33%);
    font-size: 1.5rem;
    margin-bottom: 25px;
    line-height: 1.4;
  }

  .hero-description {
    font-family: 'Nunito', sans-serif;
    color: #555;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 30px;
  }

  .hero-advantages {
    list-style: none;
    padding: 0;
    margin: 35px 0;
  }

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

  .hero-advantages li:before {
    content: '';
    position: absolute;
    left: 0;
    top: 18px;
    width: 20px;
    height: 20px;
    background: hsl(169, 55%, 33%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .hero-advantages li:after {
    content: '✓';
    position: absolute;
    left: 6px;
    top: 15px;
    color: #fff;
    font-weight: bold;
    font-size: 14px;
  }

  .hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 35px;
  }

  .hero-btn-primary {
    background: hsl(169, 55%, 33%);
    color: #fff;
    padding: 16px 38px;
    border-radius: 8px;
    text-decoration: none;
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: 2px solid hsl(169, 55%, 33%);
    display: inline-flex;
    align-items: center;
    gap: 10px;
  }

  .hero-btn-primary:hover {
    background: hsl(169, 55%, 18%);
    border-color: hsl(169, 55%, 18%);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    color: #fff;
  }

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

  .hero-btn-secondary:hover {
    background: hsl(169, 55%, 33%);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  }

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

  .hero-image-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
    transform: rotate(-3deg);
    transition: transform 0.4s ease;
  }

  .hero-image-container:hover {
    transform: rotate(0deg) scale(1.02);
  }

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

  .hero-decorative-circle {
    position: absolute;
    width: 300px;
    height: 300px;
    background: hsl(169, 55%, 58%, 0.15);
    border-radius: 50%;
    top: -50px;
    right: -80px;
    z-index: 0;
  }

  .hero-decorative-square {
    position: absolute;
    width: 120px;
    height: 120px;
    background: hsl(169, 55%, 33%, 0.1);
    border-radius: 20px;
    bottom: 40px;
    left: -30px;
    z-index: 0;
    transform: rotate(15deg);
  }

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

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

    .hero-image-wrapper {
      margin-top: 50px;
    }

    .hero-decorative-circle {
      width: 200px;
      height: 200px;
      top: -30px;
      right: -50px;
    }
  }

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

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

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

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

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

    .hero-advantages li {
      font-size: 1rem;
      padding-left: 30px;
    }
  }

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

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

  #testimonials::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: hsl(169, 55%, 58%);
    opacity: 0.05;
    border-radius: 50%;
  }

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

  .testimonials-header h2 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 2.8rem;
    color: hsl(169, 55%, 18%);
    margin-bottom: 15px;
  }

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

  .testimonial-card {
    background: #fff;
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    position: relative;
    border-left: 4px solid hsl(169, 55%, 58%);
  }

  .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(169, 55%, 33%) 0%, hsl(169, 55%, 18%) 100%);
    color: #fff;
    border-left: none;
    border-top: 4px solid hsl(169, 55%, 58%);
  }

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

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

  .testimonial-card.featured .customer-location {
    color: hsl(169, 55%, 78%);
  }

  .testimonial-card.compact {
    padding: 20px 25px;
    border-radius: 10px;
  }

  .testimonial-card.detailed {
    padding: 35px;
    background: #fff;
    border: 2px solid hsl(169, 55%, 88%);
  }

  .rating-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 15px;
  }

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

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

  .testimonial-text {
    font-family: 'Nunito', sans-serif;
    font-size: 1rem;
    line-height: 1.7;
    color: #333;
    margin-bottom: 20px;
  }

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

  .customer-info {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #e9ecef;
  }

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

  .customer-avatar {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: hsl(169, 55%, 58%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 1.3rem;
    color: #fff;
    flex-shrink: 0;
  }

  .customer-details {
    flex: 1;
  }

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

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

  .quote-icon {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 3rem;
    color: hsl(169, 55%, 58%);
    opacity: 0.15;
  }

  .testimonial-card.featured .quote-icon {
    color: #fff;
    opacity: 0.2;
  }

  .verified-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: hsl(169, 55%, 95%);
    color: hsl(169, 55%, 33%);
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-top: 10px;
  }

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

  .testimonial-highlight {
    background: hsl(169, 55%, 95%);
    padding: 15px 20px;
    border-radius: 8px;
    margin: 15px 0;
    border-left: 3px solid hsl(169, 55%, 58%);
  }

  .testimonial-highlight strong {
    color: hsl(169, 55%, 33%);
    font-weight: 700;
  }

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

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

    .testimonial-card {
      padding: 25px;
    }

    .customer-avatar {
      width: 45px;
      height: 45px;
      font-size: 1.1rem;
    }
  }

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

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

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

  #services .section-title {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: hsl(169, 55%, 18%);
    margin-bottom: 15px;
  }

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

  .service-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 35px 25px;
    height: 100%;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid #e9ecef;
    position: relative;
    overflow: hidden;
  }

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

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

  .service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    border-color: hsl(169, 55%, 58%);
  }

  .service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, hsl(169, 55%, 33%), hsl(169, 55%, 58%));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: all 0.3s ease;
  }

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

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

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

  .service-description {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 20px;
  }

  .service-price {
    font-family: 'Poppins', sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: hsl(169, 55%, 33%);
    margin-bottom: 12px;
  }

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

  .service-terms {
    font-size: 0.85rem;
    color: #888;
    font-style: italic;
  }

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

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

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

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

#credentials {
    padding: 50px 0;
  background: #f8f9fa;
    font-family: 'Nunito', sans-serif;
}

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

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

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

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

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

  @media (max-width: 768px) {
    #credentials .section-title {
        font-size: 1.6rem;
    }
    
      .credential-card {
      padding: 20px 10px;
    }
    
    .credential-icon {
          font-size: 2rem;
    }
}

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

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

.promo-offer-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: hsl(169, 55%, 33%);
  opacity: 0.05;
  border-radius: 50%;
}

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

.offer-card {
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 15px 50px rgba(0,0,0,0.12);
  overflow: hidden;
  position: relative;
  z-index: 2;
}

.offer-header {
  background: linear-gradient(135deg, hsl(169, 55%, 33%) 0%, hsl(169, 55%, 18%) 100%);
  padding: 45px 35px;
  text-align: center;
  position: relative;
}

.offer-badge {
  display: inline-block;
  background: hsl(169, 55%, 58%);
  color: #fff;
  padding: 8px 24px;
  border-radius: 50px;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 20px;
  animation: pulse-badge 2s ease-in-out infinite;
}

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

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

.offer-subtitle {
  font-family: 'Nunito', sans-serif;
  font-size: 19px;
  color: rgba(255,255,255,0.9);
  margin-bottom: 0;
  font-weight: 400;
}

.offer-body {
  padding: 45px 40px;
}

.offer-description {
  font-family: 'Nunito', sans-serif;
  font-size: 17px;
  color: #333;
  line-height: 1.7;
  margin-bottom: 35px;
  text-align: center;
}

.deadline-box {
  background: linear-gradient(135deg, hsl(169, 55%, 58%) 0%, hsl(169, 55%, 48%) 100%);
  border-radius: 15px;
  padding: 30px;
  text-align: center;
  margin-bottom: 40px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

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

.deadline-date {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.calendar-icon {
  font-size: 38px;
  color: #fff;
}

.date-text {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 36px;
  color: #fff;
  line-height: 1;
}

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

.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid #e9ecef;
}

.benefit-item:last-child {
  border-bottom: none;
}

.benefit-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, hsl(169, 55%, 33%) 0%, hsl(169, 55%, 38%) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: #fff;
}

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

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

.offer-cta-btn {
  display: inline-block;
  background: linear-gradient(135deg, hsl(169, 55%, 33%) 0%, hsl(169, 55%, 18%) 100%);
  color: #fff;
  padding: 18px 50px;
  border-radius: 50px;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 18px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  position: relative;
  overflow: hidden;
}

.offer-cta-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s ease;
}

.offer-cta-btn:hover::before {
  left: 100%;
}

.offer-cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.2);
  color: #fff;
}

.discount-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: #ff6b6b;
  color: #fff;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: 'Poppins', sans-serif;
  box-shadow: 0 8px 20px rgba(255,107,107,0.4);
  animation: rotate-badge 10s linear infinite;
}

@keyframes rotate-badge {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.discount-number {
  font-size: 28px;
  font-weight: 800;
  line-height: 1;
}

.discount-text {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  margin-top: 3px;
}

@media (max-width: 768px) {
  .promo-offer-section {
    padding: 50px 0;
  }
  
  .offer-title {
    font-size: 32px;
  }
  
  .offer-header {
    padding: 35px 25px;
  }
  
  .offer-body {
    padding: 35px 25px;
  }
  
  .date-text {
    font-size: 28px;
  }
  
  .calendar-icon {
    font-size: 32px;
  }
  
  .discount-badge {
    width: 75px;
    height: 75px;
    top: 15px;
    right: 15px;
  }
  
  .discount-number {
    font-size: 24px;
  }
  
  .discount-text {
    font-size: 11px;
  }
}

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

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

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

  #blog .section-title {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: hsl(169, 55%, 18%);
    margin-bottom: 15px;
  }

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

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

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

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

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

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

  .blog-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    font-size: 0.85rem;
    color: #777;
  }

  .blog-meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
  }

  .blog-meta-item i {
    color: hsl(169, 55%, 58%);
  }

  .blog-card-title {
    font-family: 'Poppins', sans-serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: #222;
    margin-bottom: 12px;
    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(169, 55%, 33%);
  }

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

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

  .blog-read-more:hover {
    gap: 12px;
    color: hsl(169, 55%, 18%);
  }

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

  .btn-view-all {
    display: inline-block;
    padding: 14px 40px;
    background: hsl(169, 55%, 33%);
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid hsl(169, 55%, 33%);
  }

  .btn-view-all:hover {
    background: hsl(169, 55%, 18%);
    border-color: hsl(169, 55%, 18%);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
  }

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

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

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

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

.disclaimer-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 60px 0;
  }
  
  .disclaimer-container {
    max-width: 900px;
    margin: 0 auto;
    background: #ffffff;
    border-radius: 12px;
    padding: 45px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    border-left: 5px solid hsl(169, 55%, 33%);
  }
  
  .disclaimer-header {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 28px;
  }
  
  .disclaimer-icon {
    font-size: 42px;
    color: hsl(169, 55%, 33%);
    flex-shrink: 0;
  }
  
  .disclaimer-title {
    font-family: 'Poppins', sans-serif;
    font-size: 32px;
    font-weight: 600;
    color: #222;
    margin: 0;
  }
  
  .disclaimer-text {
    font-family: 'Nunito', sans-serif;
    font-size: 16px;
    line-height: 1.8;
    color: #444;
    margin: 0;
  }
  
  @media (max-width: 768px) {
    .disclaimer-section {
      padding: 40px 0;
    }
    
    .disclaimer-container {
      padding: 30px 20px;
      margin: 0 15px;
    }
    
    .disclaimer-header {
      flex-direction: column;
      text-align: center;
      gap: 12px;
    }
    
    .disclaimer-icon {
      font-size: 36px;
    }
    
    .disclaimer-title {
      font-size: 26px;
    }
    
    .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(169, 55%, 33%);
    --secondary-color: hsl(169, 55%, 18%);
    --accent-color: hsl(169, 55%, 58%);
  }
  
  .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;
    padding-left: 1rem;
    border-left: 5px solid var(--accent-color);
  }
  
  .policy-content h3 {
    font-size: 1.35rem;
    color: var(--primary-color);
  }
  
  .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: 1rem 0;
    padding-left: 2rem;
  }
  
  .policy-content li {
    margin-bottom: 0.75rem;
  }
  
  .policy-content strong {
    color: var(--secondary-color);
    font-weight: 700;
  }
  
  .info-box {
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--primary-color) 100%);
    color: white;
    padding: 2rem;
    border-radius: 10px;
    margin: 2rem 0;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  }
  
  .info-box h3 {
    color: white;
    margin-top: 0;
  }
  
  .info-box a {
    color: white;
    text-decoration: underline;
  }
  
  .info-box a:hover {
    color: #f0f0f0;
  }
  
  .section-card {
    background: #f8f9fa;
    border-left: 4px solid var(--primary-color);
    padding: 1.5rem;
    margin: 1.5rem 0;
    border-radius: 5px;
  }
  
  .last-updated {
    background: var(--secondary-color);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 5px;
    display: inline-block;
    margin-bottom: 2rem;
    font-weight: 600;
  }

@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(169, 55%, 33%);
    --secondary-color: hsl(169, 55%, 18%);
    --accent-color: hsl(169, 55%, 58%);
  }
  
  .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;
    padding-left: 1rem;
    border-left: 5px solid var(--accent-color);
  }
  
  .policy-content h3 {
    font-size: 1.35rem;
    color: var(--primary-color);
  }
  
  .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: 1rem 0;
    padding-left: 2rem;
  }
  
  .policy-content li {
    margin-bottom: 0.75rem;
  }
  
  .policy-content p {
    margin-bottom: 1.25rem;
    text-align: justify;
  }
  
  .effective-date {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 2rem;
  }
  
  .contact-box {
    background-color: #f8f9fa;
    border-left: 5px solid var(--primary-color);
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 5px;
  }
  
  .contact-box h3 {
    margin-top: 0;
    color: var(--secondary-color);
  }
  
  .section-card {
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    transition: box-shadow 0.3s ease;
  }
  
  .section-card:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
  }
  
  .highlight-box {
    background-color: rgba(169, 55%, 58%, 0.1);
    border-left: 4px solid var(--accent-color);
    padding: 1rem 1.5rem;
    margin: 1.5rem 0;
    border-radius: 4px;
  }
  
  strong {
    color: var(--secondary-color);
    font-weight: 700;
  }

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

  .thank-you-section {
    font-family: 'Nunito', sans-serif;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, hsl(169, 55%, 95%) 0%, hsl(169, 55%, 98%) 100%);
    padding: 2rem 1rem;
  }

  .thank-you-container {
    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: var(--primary-color);
    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: drawCheck 0.8s ease-out 0.3s forwards;
    stroke-dasharray: 100;
    stroke-dashoffset: 100;
  }

  @keyframes scaleIn {
    0% {
      transform: scale(0);
      opacity: 0;
    }
    50% {
      transform: scale(1.1);
    }
    100% {
      transform: scale(1);
      opacity: 1;
    }
  }

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

  .thank-you-heading {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.6s ease-out 0.4s both;
  }

  .thank-you-message {
    font-size: 1.125rem;
    color: hsl(0, 0%, 40%);
    line-height: 1.8;
    margin-bottom: 2rem;
    animation: fadeInUp 0.6s ease-out 0.6s both;
  }

  .thank-you-message strong {
    color: var(--primary-color);
    font-weight: 600;
  }

  .info-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 2.5rem;
    animation: fadeInUp 0.6s ease-out 0.8s both;
  }

  .info-card {
    background: hsl(169, 55%, 97%);
    border-left: 4px solid var(--accent-color);
    padding: 1.25rem;
    border-radius: 10px;
    text-align: left;
  }

  .info-card-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: var(--accent-color);
    border-radius: 50%;
    margin-right: 0.75rem;
    color: white;
    font-size: 1rem;
  }

  .info-card-title {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
  }

  .info-card-text {
    font-size: 0.95rem;
    color: hsl(0, 0%, 45%);
    margin: 0;
    padding-left: 2.5rem;
  }

  .btn-home {
    font-family: 'Poppins', sans-serif;
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 1rem 3rem;
    font-size: 1.125rem;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    animation: fadeInUp 0.6s ease-out 1s both;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  }

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

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

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

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

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

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

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

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