:root {
    --primary-color: hsl(156, 58%, 48%);
--secondary-color: hsl(156, 58%, 33%);
    --accent-color: hsl(156, 58%, 73%);
  }
  
body {
    font-family: 'Open Sans', sans-serif;
      color: #333;
}

  h1, h2, h3, h4, h5, h6 {
font-family: 'Roboto', sans-serif;
  }

.navbar {
  background-color: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  padding: 0.8rem 0;
}

.navbar-brand {
    display: flex;
  align-items: center;
      gap: 12px;
    color: #222;
  font-weight: 600;
    font-size: 1.3rem;
}

.navbar-brand:hover {
  color: var(--primary-color);
}

  .nav-link {
color: #444;
      font-weight: 500;
    padding: 0.6rem 1rem !important;
transition: color 0.3s ease;
  }

.nav-link:hover {
    color: var(--primary-color);
}

.navbar-toggler {
  border: none;
    padding: 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 {
      background-color: #fff;
    padding: 1rem 0;
      margin-top: 0.5rem;
}
  }

#about {
    padding: 80px 0;
    background: #ffffff;
  }

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

  #about .section-header h2 {
    font-family: 'Roboto', sans-serif;
    font-size: 2.5rem;
    color: #222;
    margin-bottom: 15px;
    font-weight: 700;
  }

  #about .section-header .underline {
    width: 80px;
    height: 4px;
    background: hsl(156, 58%, 48%);
    margin: 0 auto;
  }

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

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

  #about .about-image img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  }

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

  #about .about-text h3 {
    font-family: 'Roboto', sans-serif;
    font-size: 1.8rem;
    color: #222;
    margin-bottom: 20px;
    font-weight: 600;
  }

  #about .about-text p {
    font-family: 'Open Sans', sans-serif;
    font-size: 1rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 15px;
  }

  #about .values-section {
    background: #f8f9fa;
    padding: 50px;
    border-radius: 8px;
    margin-top: 40px;
  }

  #about .values-section h3 {
    font-family: 'Roboto', sans-serif;
    font-size: 1.9rem;
    color: #222;
    text-align: center;
    margin-bottom: 40px;
    font-weight: 600;
  }

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

  #about .value-card {
    background: #ffffff;
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid hsl(156, 58%, 73%);
  }

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

  #about .value-icon {
    width: 60px;
    height: 60px;
    background: hsl(156, 58%, 48%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
    color: #fff;
  }

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

  #about .value-card p {
    font-family: 'Open Sans', sans-serif;
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
    margin: 0;
  }

  #about .mission-vision {
    display: flex;
    gap: 30px;
    margin-top: 50px;
  }

  #about .mission-box,
  #about .vision-box {
    flex: 1;
    background: linear-gradient(135deg, hsl(156, 58%, 48%) 0%, hsl(156, 58%, 33%) 100%);
    padding: 40px;
    border-radius: 8px;
    color: #fff;
  }

  #about .mission-box h4,
  #about .vision-box h4 {
    font-family: 'Roboto', sans-serif;
    font-size: 1.6rem;
    margin-bottom: 15px;
    font-weight: 600;
  }

  #about .mission-box p,
  #about .vision-box p {
    font-family: 'Open Sans', sans-serif;
    font-size: 1rem;
    line-height: 1.7;
    margin: 0;
  }

  #about .expertise-section {
    margin-top: 60px;
    display: flex;
    align-items: center;
    gap: 40px;
  }

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

  #about .expertise-text h3 {
    font-family: 'Roboto', sans-serif;
    font-size: 1.8rem;
    color: #222;
    margin-bottom: 20px;
    font-weight: 600;
  }

  #about .expertise-list {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  #about .expertise-list li {
    font-family: 'Open Sans', sans-serif;
    font-size: 1rem;
    color: #555;
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
    line-height: 1.6;
  }

  #about .expertise-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: hsl(156, 58%, 48%);
    font-weight: bold;
    font-size: 1.2rem;
  }

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

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

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

    #about .mission-vision {
      flex-direction: column;
    }

    #about .about-image img,
    #about .expertise-image img {
      height: 350px;
    }
  }

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

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

    #about .about-text h3,
    #about .expertise-text h3 {
      font-size: 1.5rem;
    }

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

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

    #about .mission-box,
    #about .vision-box {
      padding: 30px 20px;
    }
  }

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

  .portfolio-section h2 {
    font-family: 'Roboto', sans-serif;
    font-size: 2.5rem;
    color: #222;
    margin-bottom: 15px;
    font-weight: 700;
  }

  .portfolio-intro {
    font-family: 'Open Sans', sans-serif;
    color: #555;
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto 50px;
  }

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

  .filter-btn {
    font-family: 'Open Sans', sans-serif;
    padding: 10px 24px;
    border: 2px solid hsl(156, 58%, 48%);
    background: transparent;
    color: hsl(156, 58%, 33%);
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
  }

  .filter-btn:hover,
  .filter-btn.active {
    background: hsl(156, 58%, 48%);
    color: #fff;
    transform: translateY(-2px);
  }

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

  .portfolio-item {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    cursor: pointer;
  }

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

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

  .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(to bottom, transparent 0%, rgba(0,0,0,0.7) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: flex-end;
    padding: 20px;
  }

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

  .portfolio-category {
    font-family: 'Open Sans', sans-serif;
    display: inline-block;
    background: hsl(156, 58%, 48%);
    color: #fff;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    margin-bottom: 10px;
    font-weight: 600;
  }

  .portfolio-content {
    padding: 25px;
  }

  .portfolio-content h3 {
    font-family: 'Roboto', sans-serif;
    font-size: 1.4rem;
    color: #222;
    margin-bottom: 12px;
    font-weight: 600;
  }

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

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

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

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

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

  .modal-body {
    padding: 30px;
  }

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

  .modal-detail-label {
    font-family: 'Roboto', sans-serif;
    color: hsl(156, 58%, 33%);
    font-weight: 700;
    margin-top: 20px;
    margin-bottom: 8px;
    font-size: 1.1rem;
  }

  .modal-detail-text {
    font-family: 'Open Sans', sans-serif;
    color: #555;
    line-height: 1.7;
    margin-bottom: 15px;
  }

  .modal-detail-list {
    font-family: 'Open Sans', sans-serif;
    color: #555;
    padding-left: 20px;
  }

  .modal-detail-list li {
    margin-bottom: 8px;
  }

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

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

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

    .filter-buttons {
      gap: 8px;
    }

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

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

  #advantages::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, hsl(156, 58%, 48%) 0%, hsl(156, 58%, 73%) 100%);
  }

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

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

  .advantage-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 35px 25px;
    height: 100%;
    box-shadow: 0 3px 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: -100%;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, hsl(156, 58%, 48%), hsl(156, 58%, 73%));
    transition: left 0.5s ease;
  }

  .advantage-card:hover::before {
    left: 0;
  }

  .advantage-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(42, 157, 123, 0.2);
    border-color: hsl(156, 58%, 73%);
  }

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

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

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

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

  .advantage-description {
    font-family: 'Open Sans', sans-serif;
    font-size: 0.95rem;
    color: #666;
    line-height: 1.7;
    text-align: center;
  }

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

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

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

  @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=Roboto:wght@400;500;700&family=Open+Sans:wght@300;400;600&display=swap');
  
  #statistics {
    padding: 70px 0 80px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    font-family: 'Open Sans', sans-serif;
    position: relative;
    overflow: hidden;
  }
  
  #statistics::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, 
      hsl(156, 58%, 48%) 0%, 
      hsl(156, 58%, 73%) 50%, 
      hsl(156, 58%, 48%) 100%);
  }
  
  #statistics .section-header {
    text-align: center;
    margin-bottom: 55px;
  }
  
  #statistics .section-title {
    font-family: 'Roboto', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
  }
  
  #statistics .section-subtitle {
    font-size: 1.05rem;
    color: #555;
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.6;
  }
  
  .stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .stat-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 35px 25px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
  }
  
  .stat-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(45, 166, 123, 0.15);
    border-color: hsl(156, 58%, 73%);
  }
  
  .stat-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, hsl(156, 58%, 48%), hsl(156, 58%, 33%));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 22px;
    font-size: 32px;
    color: #fff;
    transition: transform 0.3s ease;
  }
  
  .stat-card:hover .stat-icon {
    transform: rotate(360deg) scale(1.1);
  }
  
  .stat-number {
    font-family: 'Roboto', sans-serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: hsl(156, 58%, 33%);
    margin-bottom: 8px;
    line-height: 1;
  }
  
  .stat-label {
    font-size: 0.95rem;
    color: #666;
    font-weight: 500;
    margin-bottom: 5px;
  }
  
  .stat-context {
    font-size: 0.8rem;
    color: #888;
    font-style: italic;
  }
  
  @media (max-width: 768px) {
    #statistics {
      padding: 50px 0 60px;
    }
    
    #statistics .section-title {
      font-size: 2rem;
    }
    
    .stats-grid {
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 20px;
    }
    
    .stat-card {
      padding: 28px 18px;
    }
    
    .stat-number {
      font-size: 2.3rem;
    }
  }
  
  @media (max-width: 480px) {
    .stats-grid {
      grid-template-columns: 1fr;
    }
  }

footer {
  background: linear-gradient(135deg, hsl(156, 58%, 33%) 0%, hsl(156, 58%, 28%) 100%);
    color: #f8f9fa;
  padding: 3.5rem 0 1.5rem;
    font-family: 'Open Sans', sans-serif;
}

footer h5 {
font-family: 'Roboto', sans-serif;
  color: hsl(156, 58%, 73%);
    font-weight: 600;
  margin-bottom: 1.2rem;
      font-size: 1.15rem;
}

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

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

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

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

footer a:hover {
    color: hsl(156, 58%, 73%);
}

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

.footer-contact-item i {
  margin-right: 0.7rem;
    margin-top: 0.2rem;
  color: hsl(156, 58%, 73%);
}

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

.footer-policies {
  margin-top: 0.8rem;
}

.footer-policies a {
    margin: 0 0.8rem;
  font-size: 0.88rem;
}

#cookieNotice {
  position: fixed;
    bottom: 0;
  left: 0;
    right: 0;
  background: #ffffff;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
  z-index: 9999;
    padding: 1.8rem 0;
  border-top: 3px solid hsl(156, 58%, 48%);
}

#cookieNotice .container {
  max-width: 1200px;
}

#cookieNotice h5 {
  font-family: 'Roboto', sans-serif;
    color: #222;
  font-weight: 600;
    margin-bottom: 0.8rem;
  font-size: 1.2rem;
}

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

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

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

.cookie-category strong {
  color: #222;
    display: block;
  margin-bottom: 0.2rem;
}

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

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

.btn-accept-all {
  background: hsl(156, 58%, 48%);
    color: #fff;
  border: none;
    padding: 0.7rem 1.8rem;
  border-radius: 5px;
    font-weight: 600;
  transition: all 0.3s ease;
    cursor: pointer;
  font-size: 0.95rem;
}

.btn-accept-all:hover {
  background: hsl(156, 58%, 43%);
    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.6rem;
  border-radius: 5px;
    font-weight: 500;
  transition: all 0.3s ease;
    cursor: pointer;
  font-size: 0.95rem;
}

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

.btn-manage {
  background: transparent;
    color: hsl(156, 58%, 33%);
  border: 2px solid hsl(156, 58%, 48%);
    padding: 0.65rem 1.5rem;
  border-radius: 5px;
    font-weight: 500;
  text-decoration: none;
    display: inline-block;
  transition: all 0.3s ease;
    font-size: 0.95rem;
}

.btn-manage:hover {
  background: hsl(156, 58%, 48%);
    color: #fff;
  transform: translateY(-2px);
}

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

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

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

.contact-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  }
  
  .contact-section h2 {
    font-family: 'Roboto', sans-serif;
    color: #222;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
  }
  
  .contact-section .lead {
    font-family: 'Open Sans', sans-serif;
    color: #555;
    font-size: 1.1rem;
    margin-bottom: 3rem;
  }
  
  .contact-info-card {
    background: #fff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    height: 100%;
    border-left: 4px solid hsl(156, 58%, 48%);
  }
  
  .contact-info-item {
    margin-bottom: 25px;
    display: flex;
    align-items: start;
  }
  
  .contact-info-item:last-child {
    margin-bottom: 0;
  }
  
  .contact-icon {
    width: 50px;
    height: 50px;
    background: hsl(156, 58%, 48%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 18px;
    flex-shrink: 0;
  }
  
  .contact-icon svg {
    width: 24px;
    height: 24px;
    fill: #fff;
  }
  
  .contact-info-content h5 {
    font-family: 'Roboto', sans-serif;
    color: #222;
    font-size: 1.1rem;
    margin-bottom: 6px;
    font-weight: 600;
  }
  
  .contact-info-content p,
  .contact-info-content a {
    font-family: 'Open Sans', sans-serif;
    color: #666;
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.6;
  }
  
  .contact-info-content a {
    color: hsl(156, 58%, 33%);
    text-decoration: none;
    transition: color 0.3s ease;
  }
  
  .contact-info-content a:hover {
    color: hsl(156, 58%, 48%);
  }
  
  .contact-form-wrapper {
    background: #fff;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  }
  
  .contact-form-wrapper h3 {
    font-family: 'Roboto', sans-serif;
    color: #222;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
  }
  
  .form-label {
    font-family: 'Open Sans', sans-serif;
    color: #333;
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 0.9rem;
  }
  
  .form-control,
  .form-select {
    font-family: 'Open Sans', sans-serif;
    border: 2px solid #e0e0e0;
    padding: 12px 16px;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    color: #333;
  }
  
  .form-control:focus,
  .form-select:focus {
    border-color: hsl(156, 58%, 48%);
    box-shadow: 0 0 0 0.2rem rgba(52, 168, 83, 0.15);
    outline: none;
  }
  
  textarea.form-control {
    min-height: 140px;
    resize: vertical;
  }
  
  .btn-submit {
    background: hsl(156, 58%, 48%);
    color: #fff;
    border: none;
    padding: 14px 40px;
    border-radius: 8px;
    font-family: 'Roboto', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    margin-top: 10px;
  }
  
  .btn-submit:hover {
    background: hsl(156, 58%, 33%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(52, 168, 83, 0.3);
  }
  
  .hours-list {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .hours-list li {
    font-family: 'Open Sans', sans-serif;
    color: #666;
    padding: 6px 0;
    font-size: 0.95rem;
    display: flex;
    justify-content: space-between;
  }
  
  .hours-list li strong {
    color: #333;
    font-weight: 600;
  }
  
  @media (max-width: 991px) {
    .contact-form-wrapper {
      margin-top: 30px;
    }
    
    .contact-section h2 {
      font-size: 2rem;
    }
  }
  
  @media (max-width: 576px) {
    .contact-section {
      padding: 60px 0;
    }
    
    .contact-form-wrapper,
    .contact-info-card {
      padding: 25px;
    }
    
    .contact-section h2 {
      font-size: 1.75rem;
    }
  }

@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&family=Open+Sans:wght@400;600&display=swap');
  
  :root {
    --primary-color: hsl(156, 58%, 48%);
    --secondary-color: hsl(156, 58%, 33%);
    --accent-color: hsl(156, 58%, 73%);
  }
  
  .policy-content {
    font-family: 'Open Sans', sans-serif;
    color: #333;
    line-height: 1.8;
  }
  
  .policy-content h1,
  .policy-content h2,
  .policy-content h3,
  .policy-content h4 {
    font-family: 'Roboto', 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;
  }
  
  .policy-content h3 {
    font-size: 1.35rem;
    color: var(--secondary-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(--secondary-color);
    text-decoration: underline;
  }
  
  .policy-content ul,
  .policy-content ol {
    margin: 1rem 0;
    padding-left: 2rem;
  }
  
  .policy-content li {
    margin-bottom: 0.75rem;
  }
  
  .policy-header {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 3rem 0;
    margin-bottom: 2rem;
    border-radius: 10px;
  }
  
  .policy-header h1 {
    color: white;
    border: none;
    margin: 0;
  }
  
  .last-updated {
    background-color: var(--accent-color);
    padding: 1rem;
    border-radius: 8px;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 2rem;
  }
  
  .info-box {
    background-color: #f8f9fa;
    border-left: 4px solid var(--primary-color);
    padding: 1.5rem;
    margin: 1.5rem 0;
    border-radius: 5px;
  }
  
  .contact-section {
    background: linear-gradient(135deg, var(--accent-color), #ffffff);
    padding: 2rem;
    border-radius: 10px;
    margin-top: 3rem;
    border: 2px solid var(--primary-color);
  }
  
  .cookie-type-card {
    background: white;
    border: 2px solid var(--accent-color);
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .cookie-type-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  }
  
  .cookie-type-card h3 {
    margin-top: 0;
    color: var(--primary-color);
  }
  
  strong {
    color: var(--secondary-color);
  }

.faq-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  }
  
  .faq-header {
    text-align: center;
    margin-bottom: 60px;
  }
  
  .faq-header h2 {
    font-family: 'Roboto', sans-serif;
    font-size: 2.5rem;
    color: #222;
    margin-bottom: 15px;
    font-weight: 700;
  }
  
  .faq-header p {
    font-family: 'Open Sans', sans-serif;
    font-size: 1.1rem;
    color: #555;
    max-width: 700px;
    margin: 0 auto;
  }
  
  .faq-container {
    max-width: 900px;
    margin: 0 auto;
  }
  
  .accordion-item {
    border: none;
    margin-bottom: 18px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
  }
  
  .accordion-item:hover {
    box-shadow: 0 5px 25px rgba(0,0,0,0.12);
    transform: translateY(-2px);
  }
  
  .accordion-button {
    font-family: 'Roboto', sans-serif;
    font-size: 1.15rem;
    font-weight: 600;
    color: #222;
    background-color: #fff;
    padding: 22px 28px;
    border: none;
    transition: all 0.3s ease;
  }
  
  .accordion-button:not(.collapsed) {
    background-color: hsl(156, 58%, 48%);
    color: #fff;
    box-shadow: none;
  }
  
  .accordion-button:focus {
    box-shadow: none;
    border: none;
  }
  
  .accordion-button::after {
    width: 1.4rem;
    height: 1.4rem;
    background-size: 1.4rem;
    transition: transform 0.3s ease;
  }
  
  .accordion-button:not(.collapsed)::after {
    filter: brightness(0) invert(1);
  }
  
  .accordion-body {
    font-family: 'Open Sans', sans-serif;
    font-size: 1rem;
    line-height: 1.7;
    color: #444;
    padding: 25px 28px;
    background-color: #fff;
  }
  
  .accordion-body ul {
    margin: 12px 0;
    padding-left: 20px;
  }
  
  .accordion-body li {
    margin-bottom: 8px;
    color: #555;
  }
  
  .accordion-body strong {
    color: #222;
    font-weight: 600;
  }
  
  @media (max-width: 768px) {
    .faq-section {
      padding: 50px 0;
    }
    
    .faq-header h2 {
      font-size: 2rem;
    }
    
    .faq-header {
      margin-bottom: 40px;
    }
    
    .accordion-button {
      font-size: 1.05rem;
      padding: 18px 20px;
    }
    
    .accordion-body {
      font-size: 0.95rem;
      padding: 20px;
    }
    
    .accordion-item {
      margin-bottom: 14px;
    }
  }

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

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

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

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

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

  .newsletter-description {
    font-family: 'Open Sans', sans-serif;
    font-size: 1.1rem;
    color: #f8f9fa;
    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 {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
  }

  .newsletter-email-input {
    flex: 1;
    min-width: 250px;
    padding: 16px 24px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    font-family: 'Open Sans', 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: #ffffff;
    background: #ffffff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  }

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

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

  .newsletter-submit-btn:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.2);
  }

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

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

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

  .newsletter-benefit-icon {
    width: 20px;
    height: 20px;
    background: rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
  }

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

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

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

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

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

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

    .newsletter-benefits {
      gap: 20px;
    }
  }

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

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

  .newsletter-particle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    animation: float-particle 8s infinite ease-in-out;
  }

  @keyframes float-particle {
    0%, 100% {
      transform: translateY(0) translateX(0);
      opacity: 0;
    }
    10% {
      opacity: 1;
    }
    90% {
      opacity: 1;
    }
    100% {
      transform: translateY(-100px) translateX(50px);
      opacity: 0;
    }
  }

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

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

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

  .hero-section h2 {
    font-family: 'Roboto', sans-serif;
    font-size: 1.6rem;
    font-weight: 400;
    color: hsl(156, 58%, 33%);
    margin-bottom: 1.5rem;
  }

  .hero-description {
    font-family: 'Open Sans', sans-serif;
    font-size: 1.05rem;
    color: #444;
    line-height: 1.7;
    margin-bottom: 2rem;
  }

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

  .hero-advantages li {
    font-family: 'Open Sans', sans-serif;
    color: #333;
    font-size: 1rem;
    margin-bottom: 0.9rem;
    padding-left: 2rem;
    position: relative;
  }

  .hero-advantages li i {
    position: absolute;
    left: 0;
    top: 3px;
    color: hsl(156, 58%, 48%);
    font-size: 1.2rem;
  }

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

  .hero-image-wrapper img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    transform: translateY(20px);
  }

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

  .btn-hero-primary {
    background: hsl(156, 58%, 48%);
    color: #fff;
    padding: 14px 32px;
    border-radius: 8px;
    font-family: 'Open Sans', sans-serif;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    border: 2px solid hsl(156, 58%, 48%);
  }

  .btn-hero-primary:hover {
    background: hsl(156, 58%, 33%);
    border-color: hsl(156, 58%, 33%);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(48, 166, 121, 0.3);
  }

  .btn-hero-secondary {
    background: transparent;
    color: hsl(156, 58%, 33%);
    padding: 14px 32px;
    border-radius: 8px;
    font-family: 'Open Sans', sans-serif;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    border: 2px solid hsl(156, 58%, 48%);
  }

  .btn-hero-secondary:hover {
    background: hsl(156, 58%, 48%);
    color: #fff;
    transform: translateY(-2px);
  }

  .decorative-shape {
    position: absolute;
    width: 300px;
    height: 300px;
    background: hsl(156, 58%, 73%);
    opacity: 0.1;
    border-radius: 50%;
    z-index: 0;
  }

  .shape-1 {
    top: -100px;
    right: -50px;
  }

  .shape-2 {
    bottom: -120px;
    left: -80px;
    width: 250px;
    height: 250px;
  }

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

    .hero-image-wrapper img {
      transform: translateY(0);
      margin-top: 2rem;
    }
  }

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

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

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

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

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

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

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

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

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

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

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

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

  .blog-meta {
    display: flex;
    gap: 1.2rem;
    margin-bottom: 1rem;
    font-family: 'Open Sans', sans-serif;
    font-size: 0.85rem;
    color: #777;
  }

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

  .blog-meta-item svg {
    width: 16px;
    height: 16px;
    fill: hsl(156, 58%, 48%);
  }

  .blog-card-title {
    font-family: 'Roboto', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #222;
    margin-bottom: 0.9rem;
    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(156, 58%, 48%);
  }

  .blog-card-excerpt {
    font-family: 'Open Sans', sans-serif;
    font-size: 0.95rem;
    color: #666;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    flex-grow: 1;
  }

  .blog-read-more {
    font-family: 'Open Sans', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: hsl(156, 58%, 48%);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap 0.3s ease;
  }

  .blog-read-more:hover {
    gap: 0.8rem;
    color: hsl(156, 58%, 33%);
  }

  .blog-read-more svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
  }

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

  .btn-view-all {
    font-family: 'Roboto', sans-serif;
    font-size: 1.05rem;
    font-weight: 600;
    padding: 0.9rem 2.5rem;
    background: hsl(156, 58%, 48%);
    color: #ffffff;
    border: none;
    border-radius: 8px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(45, 170, 125, 0.3);
  }

  .btn-view-all:hover {
    background: hsl(156, 58%, 33%);
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(45, 170, 125, 0.4);
    color: #ffffff;
  }

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

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

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

    .blog-card-content {
      padding: 1.4rem;
    }

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

    .blog-meta {
      flex-wrap: wrap;
      gap: 0.8rem;
    }
  }

.promo-offer-section {
    background: linear-gradient(135deg, hsl(156, 58%, 48%) 0%, hsl(156, 58%, 33%) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
  }
  
  .promo-offer-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
  }
  
  .promo-offer-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: rgba(255,255,255,0.08);
    border-radius: 50%;
  }
  
  .offer-container {
    position: relative;
    z-index: 2;
  }
  
  .offer-badge {
    background: #fff;
    color: hsl(156, 58%, 33%);
    display: inline-block;
    padding: 8px 24px;
    border-radius: 50px;
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  }
  
  .offer-main-title {
    font-family: 'Roboto', sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 25px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
  }
  
  .offer-description {
    font-family: 'Open Sans', sans-serif;
    font-size: 18px;
    color: #fff;
    line-height: 1.7;
    margin-bottom: 35px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .deadline-box {
    background: #fff;
    border-radius: 15px;
    padding: 30px 40px;
    margin: 40px auto;
    max-width: 500px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
  }
  
  .deadline-label {
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    color: #666;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }
  
  .deadline-date {
    font-family: 'Roboto', sans-serif;
    font-size: 42px;
    font-weight: 700;
    color: hsl(156, 58%, 33%);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
  }
  
  .calendar-icon {
    width: 50px;
    height: 50px;
    fill: hsl(156, 58%, 48%);
  }
  
  .benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin: 50px 0;
  }
  
  .benefit-card {
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 25px;
    border: 2px solid rgba(255,255,255,0.2);
    transition: all 0.3s ease;
  }
  
  .benefit-card:hover {
    transform: translateY(-5px);
    background: rgba(255,255,255,0.25);
    border-color: rgba(255,255,255,0.4);
  }
  
  .benefit-icon {
    font-size: 32px;
    color: #fff;
    margin-bottom: 15px;
  }
  
  .benefit-text {
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    color: #fff;
    line-height: 1.6;
    margin: 0;
  }
  
  .cta-button {
    background: #fff;
    color: hsl(156, 58%, 33%);
    font-family: 'Roboto', sans-serif;
    font-size: 20px;
    font-weight: 700;
    padding: 18px 50px;
    border: none;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
  }
  
  .cta-button:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 35px rgba(0,0,0,0.4);
    color: hsl(156, 58%, 33%);
  }
  
  @media (max-width: 768px) {
    .offer-main-title {
      font-size: 36px;
    }
    
    .deadline-date {
      font-size: 32px;
      flex-direction: column;
      gap: 10px;
    }
    
    .benefits-grid {
      grid-template-columns: 1fr;
    }
    
    .promo-offer-section {
      padding: 60px 0;
    }
  }
  
  .fade-in {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
  }
  
  @keyframes fadeInUp {
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

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

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

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

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

.section-header h2 {
    font-family: 'Roboto', sans-serif;
    font-size: 2.5rem;
    color: #222;
    margin-bottom: 15px;
    font-weight: 700;
}

.section-header p {
    font-family: 'Open Sans', sans-serif;
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

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

.testimonial-card {
    background: #ffffff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-left: 4px solid hsl(156, 58%, 48%);
    position: relative;
}

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

.testimonial-card.card-style-2 {
    border-left: none;
    border-top: 4px solid hsl(156, 58%, 33%);
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

.testimonial-card.card-style-3 {
    border-left: none;
    border-radius: 20px;
    padding: 35px;
    background: hsl(156, 58%, 73%, 0.1);
}

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

.star {
    color: #ffc107;
    font-size: 1.2rem;
}

.star.empty {
    color: #ddd;
}

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

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

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

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

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

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

.customer-details p {
    font-family: 'Open Sans', sans-serif;
    font-size: 0.9rem;
    color: #666;
    margin: 0;
}

.featured-testimonial {
    background: linear-gradient(135deg, hsl(156, 58%, 33%) 0%, hsl(156, 58%, 48%) 100%);
    color: #ffffff;
    padding: 50px;
    border-radius: 20px;
    margin-top: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    text-align: center;
}

.featured-testimonial .rating {
    justify-content: center;
    margin-bottom: 25px;
}

.featured-testimonial .star {
    font-size: 1.5rem;
}

.featured-testimonial .testimonial-text {
    font-size: 1.3rem;
    color: #ffffff;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.featured-testimonial .customer-info {
    border-top: 1px solid rgba(255,255,255,0.3);
    justify-content: center;
}

.featured-testimonial .customer-avatar {
    background: #ffffff;
    color: hsl(156, 58%, 33%);
}

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

.featured-testimonial .customer-details p {
    color: rgba(255,255,255,0.9);
}

.cta-block {
    text-align: center;
    margin-top: 50px;
    padding: 40px;
    background: #f8f9fa;
    border-radius: 12px;
}

.cta-block h3 {
    font-family: 'Roboto', sans-serif;
    font-size: 1.8rem;
    color: #222;
    margin-bottom: 20px;
}

.cta-block .btn {
    font-family: 'Open Sans', sans-serif;
    background: hsl(156, 58%, 48%);
    color: #ffffff;
    padding: 14px 40px;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.cta-block .btn:hover {
    background: hsl(156, 58%, 33%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

@media (max-width: 768px) {
    .testimonials-section {
        padding: 50px 0;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .testimonial-card {
        padding: 25px;
    }
    
    .featured-testimonial {
        padding: 30px 20px;
    }
    
    .featured-testimonial .testimonial-text {
        font-size: 1.1rem;
    }
    
    .cta-block {
        padding: 30px 20px;
    }
}

#credentials {
    padding: 60px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  }

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

  #credentials .section-subtitle {
    font-family: 'Open Sans', sans-serif;
    font-size: 1rem;
    color: #666;
    text-align: center;
    margin-bottom: 45px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
  }

  .credential-card {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 25px 20px;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
  }

  .credential-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.1);
    border-color: hsl(156, 58%, 48%);
  }

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

  .credential-title {
    font-family: 'Roboto', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
  }

  .credential-text {
    font-family: 'Open Sans', sans-serif;
    font-size: 0.85rem;
    color: #777;
    line-height: 1.4;
  }

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

    #credentials .section-title {
      font-size: 1.8rem;
    }

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

#services {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  }

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

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

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

  .nav-tabs {
    border-bottom: 2px solid hsl(156, 58%, 48%);
    justify-content: center;
    flex-wrap: wrap;
  }

  .nav-tabs .nav-link {
    font-family: 'Roboto', sans-serif;
    font-weight: 600;
    color: #333;
    border: none;
    padding: 12px 24px;
    margin: 0 8px 8px 8px;
    border-radius: 8px 8px 0 0;
    transition: all 0.3s ease;
    background: transparent;
  }

  .nav-tabs .nav-link:hover {
    color: hsl(156, 58%, 48%);
    background: rgba(52, 168, 130, 0.1);
  }

  .nav-tabs .nav-link.active {
    color: #fff;
    background: hsl(156, 58%, 48%);
    border-color: hsl(156, 58%, 48%);
  }

  .service-card {
    background: #fff;
    border-radius: 12px;
    padding: 28px;
    margin-bottom: 24px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    height: 100%;
  }

  .service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 28px rgba(52, 168, 130, 0.2);
    border-color: hsl(156, 58%, 48%);
  }

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

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

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

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

  .service-description {
    font-family: 'Open Sans', sans-serif;
    font-size: 0.95rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 18px;
  }

  .service-price {
    font-family: 'Roboto', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: hsl(156, 58%, 48%);
    margin-bottom: 12px;
  }

  .service-terms {
    font-family: 'Open Sans', sans-serif;
    font-size: 0.85rem;
    color: #777;
    padding-top: 12px;
    border-top: 1px solid #e9ecef;
  }

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

  .service-terms li {
    padding: 4px 0;
    position: relative;
    padding-left: 20px;
  }

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

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

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

    .nav-tabs .nav-link {
      padding: 10px 16px;
      font-size: 0.9rem;
    }

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

.disclaimer-section {
    padding: 60px 0;
    background: #f8f9fa;
  }
  
  .disclaimer-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
  }
  
  .disclaimer-header {
    text-align: center;
    margin-bottom: 35px;
  }
  
  .disclaimer-icon {
    font-size: 48px;
    color: hsl(156, 58%, 48%);
    margin-bottom: 20px;
  }
  
  .disclaimer-title {
    font-family: 'Roboto', sans-serif;
    font-size: 32px;
    color: #222;
    margin: 0;
    font-weight: 600;
  }
  
  .disclaimer-content {
    background: #ffffff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  }
  
  .disclaimer-text {
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    line-height: 1.8;
    color: #333;
    margin: 0;
  }
  
  @media (max-width: 768px) {
    .disclaimer-section {
      padding: 40px 0;
    }
    
    .disclaimer-title {
      font-size: 26px;
    }
    
    .disclaimer-content {
      padding: 25px 20px;
    }
    
    .disclaimer-text {
      font-size: 15px;
    }
    
    .disclaimer-icon {
      font-size: 40px;
    }
  }

@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&family=Open+Sans:wght@400;600&display=swap');
  
  :root {
    --primary-color: hsl(156, 58%, 48%);
    --secondary-color: hsl(156, 58%, 33%);
    --accent-color: hsl(156, 58%, 73%);
  }
  
  .policy-content {
    font-family: 'Open Sans', sans-serif;
    color: #333;
    line-height: 1.8;
  }
  
  .policy-content h1,
  .policy-content h2,
  .policy-content h3,
  .policy-content h4 {
    font-family: 'Roboto', 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: 3px solid var(--primary-color);
  }
  
  .policy-content h2 {
    font-size: 1.75rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
  }
  
  .policy-content h3 {
    font-size: 1.35rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
  }
  
  .policy-content a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
  }
  
  .policy-content a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
  }
  
  .policy-content ul,
  .policy-content ol {
    margin-bottom: 1.5rem;
  }
  
  .policy-content li {
    margin-bottom: 0.5rem;
  }
  
  .policy-header {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 2rem;
    border-radius: 10px;
    margin-bottom: 2rem;
  }
  
  .policy-header h1 {
    color: white;
    border-bottom: none;
    margin-bottom: 0.5rem;
  }
  
  .last-updated {
    font-size: 0.95rem;
    opacity: 0.95;
  }
  
  .policy-section {
    background: #f8f9fa;
    padding: 1.5rem;
    border-left: 4px solid var(--primary-color);
    margin-bottom: 1.5rem;
    border-radius: 5px;
  }
  
  .contact-box {
    background: var(--accent-color);
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 2rem;
  }
  
  .contact-box h3 {
    color: var(--secondary-color);
    margin-top: 0;
  }
  
  strong {
    color: var(--secondary-color);
  }

@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&family=Open+Sans:wght@400;600&display=swap');
  
  :root {
    --primary-color: hsl(156, 58%, 48%);
    --secondary-color: hsl(156, 58%, 33%);
    --accent-color: hsl(156, 58%, 73%);
  }
  
  .policy-content {
    font-family: 'Open Sans', sans-serif;
    color: #333;
    line-height: 1.8;
  }
  
  .policy-content h1,
  .policy-content h2,
  .policy-content h3 {
    font-family: 'Roboto', 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;
  }
  
  .policy-content h3 {
    font-size: 1.25rem;
    color: var(--secondary-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(--secondary-color);
    text-decoration: underline;
  }
  
  .policy-content ul,
  .policy-content ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
  }
  
  .policy-content li {
    margin-bottom: 0.75rem;
  }
  
  .policy-content p {
    margin-bottom: 1.25rem;
  }
  
  .intro-box {
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--primary-color) 100%);
    padding: 2rem;
    border-radius: 10px;
    color: white;
    margin-bottom: 2rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  }
  
  .intro-box p {
    margin-bottom: 0;
    font-size: 1.1rem;
  }
  
  .section-card {
    background: #f8f9fa;
    padding: 1.5rem;
    border-left: 4px solid var(--primary-color);
    margin-bottom: 1.5rem;
    border-radius: 5px;
  }
  
  .contact-info-box {
    background: var(--secondary-color);
    color: white;
    padding: 2rem;
    border-radius: 10px;
    margin-top: 3rem;
  }
  
  .contact-info-box h3 {
    color: white;
    margin-top: 0;
  }
  
  .contact-info-box a {
    color: var(--accent-color);
  }
  
  .contact-info-box a:hover {
    color: white;
  }
  
  .effective-date {
    background: var(--accent-color);
    display: inline-block;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 2rem;
  }

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

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

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

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

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

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

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

  .thank-you-heading {
    font-family: 'Roboto', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: hsl(156, 58%, 33%);
    margin-bottom: 1rem;
  }

  .thank-you-subheading {
    font-family: 'Roboto', sans-serif;
    font-size: 1.25rem;
    font-weight: 500;
    color: hsl(156, 58%, 48%);
    margin-bottom: 1.5rem;
  }

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

  .thank-you-message p {
    margin-bottom: 1rem;
  }

  .info-boxes {
    display: flex;
    gap: 1rem;
    margin: 2rem 0;
    flex-wrap: wrap;
    justify-content: center;
  }

  .info-box {
    flex: 1;
    min-width: 200px;
    padding: 1.25rem;
    background: hsl(156, 58%, 97%);
    border-left: 4px solid hsl(156, 58%, 48%);
    border-radius: 8px;
    text-align: left;
  }

  .info-box-icon {
    font-size: 1.5rem;
    color: hsl(156, 58%, 48%);
    margin-bottom: 0.5rem;
  }

  .info-box-title {
    font-family: 'Roboto', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    color: hsl(156, 58%, 33%);
    margin-bottom: 0.25rem;
  }

  .info-box-text {
    font-size: 0.9rem;
    color: #666;
  }

  .btn-home {
    font-family: 'Roboto', sans-serif;
    font-weight: 600;
    padding: 0.875rem 2.5rem;
    font-size: 1.1rem;
    background-color: hsl(156, 58%, 48%);
    border: none;
    border-radius: 8px;
    color: white;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    margin-top: 1rem;
  }

  .btn-home:hover {
    background-color: hsl(156, 58%, 33%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(45, 156, 119, 0.3);
    color: white;
  }

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

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

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

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

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

    .info-boxes {
      flex-direction: column;
    }

    .info-box {
      min-width: 100%;
    }
  }