:root {
            --primary-color: hsl(94, 55%, 34%);
            --secondary-color: hsl(94, 55%, 19%);
            --accent-color: hsl(94, 55%, 59%);
        }
        
        body {
            font-family: 'Crimson Text', serif;
            color: #333;
            line-height: 1.7;
        }
        
        h1, h2, h3, h4, h5, h6 {
            font-family: 'Work Sans', sans-serif;
            font-weight: 600;
            color: #222;
        }
        
        .navbar {
            background-color: #fff;
            box-shadow: 0 2px 10px rgba(0,0,0,0.08);
            padding: 1rem 0;
        }
        
        .navbar-brand {
            display: flex;
            align-items: center;
            gap: 12px;
            font-family: 'Work Sans', sans-serif;
            font-weight: 600;
            font-size: 1.3rem;
            color: var(--primary-color);
        }
        
        .navbar-brand:hover {
            color: var(--secondary-color);
        }
        
        .navbar-nav .nav-link {
            font-family: 'Work Sans', sans-serif;
            font-weight: 500;
            color: #333;
            padding: 0.5rem 1rem;
            transition: color 0.3s ease;
        }
        
        .navbar-nav .nav-link:hover {
            color: var(--primary-color);
        }
        
        .navbar-toggler {
            border-color: var(--primary-color);
        }
        
        .navbar-toggler:focus {
            box-shadow: 0 0 0 0.25rem rgba(94, 142, 52, 0.25);
        }

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

  .about-section h1,
  .about-section h2,
  .about-section h3 {
    font-family: 'Work Sans', sans-serif;
    color: hsl(94, 55%, 34%);
    font-weight: 700;
  }

  .about-section h1 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
  }

  .about-section h2 {
    font-size: 2rem;
    margin-bottom: 1.2rem;
    margin-top: 2.5rem;
  }

  .about-section h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    margin-top: 2rem;
    color: hsl(94, 55%, 19%);
  }

  .about-section p {
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: 1.2rem;
    color: #444;
  }

  .about-intro {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 60px 0;
    margin-bottom: 60px;
    border-radius: 12px;
  }

  .about-image-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
  }

  .about-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.4s ease;
  }

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

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

  .value-card {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 10px;
    border-left: 4px solid hsl(94, 55%, 34%);
    transition: all 0.3s ease;
  }

  .value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border-left-color: hsl(94, 55%, 59%);
  }

  .value-card h4 {
    font-family: 'Work Sans', sans-serif;
    color: hsl(94, 55%, 19%);
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    font-weight: 600;
  }

  .value-card p {
    font-size: 1.05rem;
    margin-bottom: 0;
    color: #555;
  }

  .highlight-box {
    background-color: hsl(94, 55%, 95%);
    border-left: 5px solid hsl(94, 55%, 34%);
    padding: 25px 30px;
    margin: 30px 0;
    border-radius: 8px;
  }

  .highlight-box p {
    margin-bottom: 0;
    font-size: 1.15rem;
    color: #333;
  }

  .stats-row {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin: 40px 0;
    justify-content: space-around;
  }

  .stat-item {
    text-align: center;
    flex: 1;
    min-width: 200px;
  }

  .stat-number {
    font-family: 'Work Sans', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: hsl(94, 55%, 34%);
    display: block;
    margin-bottom: 10px;
  }

  .stat-label {
    font-size: 1.1rem;
    color: #666;
    font-weight: 500;
  }

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

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

    .about-section h2 {
      font-size: 1.7rem;
    }

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

    .values-grid {
      grid-template-columns: 1fr;
      gap: 20px;
    }

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

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

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

  .portfolio-section .section-subtitle {
    font-family: 'Crimson Text', serif;
    font-size: 1.2rem;
    color: #555;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    line-height: 1.7;
  }

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

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

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

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

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

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

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

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

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

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

  .portfolio-content {
    padding: 25px;
  }

  .portfolio-category {
    font-family: 'Work Sans', sans-serif;
    font-size: 0.85rem;
    color: hsl(94, 55%, 59%);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
  }

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

  .portfolio-description {
    font-family: 'Crimson Text', serif;
    font-size: 1.05rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 0;
  }

  .portfolio-overlay .portfolio-title {
    color: #fff;
    margin-bottom: 10px;
  }

  .portfolio-overlay .portfolio-category {
    color: hsl(94, 55%, 59%);
  }

  .view-details-btn {
    font-family: 'Work Sans', sans-serif;
    display: inline-block;
    padding: 8px 20px;
    background: hsl(94, 55%, 34%);
    color: #fff;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    margin-top: 10px;
    transition: all 0.3s ease;
  }

  .view-details-btn:hover {
    background: hsl(94, 55%, 19%);
    color: #fff;
    transform: translateX(5px);
  }

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

  .modal-header {
    background: hsl(94, 55%, 34%);
    color: #fff;
    border-radius: 15px 15px 0 0;
    padding: 20px 30px;
  }

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

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

  .modal-body {
    padding: 35px;
  }

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

  .modal-category {
    font-family: 'Work Sans', sans-serif;
    font-size: 0.9rem;
    color: hsl(94, 55%, 34%);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
  }

  .modal-description {
    font-family: 'Crimson Text', serif;
    font-size: 1.1rem;
    color: #444;
    line-height: 1.8;
    margin-bottom: 25px;
  }

  .project-details-list {
    list-style: none;
    padding: 0;
    margin: 25px 0;
  }

  .project-details-list li {
    font-family: 'Crimson Text', serif;
    font-size: 1.05rem;
    color: #555;
    padding: 12px 0;
    border-bottom: 1px solid #e9ecef;
    display: flex;
    justify-content: space-between;
  }

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

  .project-details-list strong {
    font-family: 'Work Sans', sans-serif;
    font-weight: 600;
    color: #222;
  }

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

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

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

    .filter-buttons {
      gap: 10px;
    }

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

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

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

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

    .filter-btn {
      padding: 7px 16px;
      font-size: 0.85rem;
    }
  }

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

.advantages-section h2 {
  font-family: 'Work Sans', sans-serif;
  font-weight: 700;
  color: hsl(94, 55%, 19%);
  font-size: 2.5rem;
  margin-bottom: 1rem;
  text-align: center;
}

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

.advantage-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 35px 25px;
  height: 100%;
  border: 2px solid transparent;
  transition: all 0.4s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.advantage-card:hover {
  transform: translateY(-8px);
  border-color: hsl(94, 55%, 59%);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

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

.advantage-card:hover .advantage-icon {
  transform: rotate(360deg) scale(1.1);
  background: linear-gradient(135deg, hsl(94, 55%, 59%) 0%, hsl(94, 55%, 34%) 100%);
}

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

.advantage-card h3 {
  font-family: 'Work Sans', sans-serif;
  font-weight: 600;
  color: hsl(94, 55%, 19%);
  font-size: 1.4rem;
  margin-bottom: 15px;
  text-align: center;
}

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

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

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

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

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

.statistics-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, hsl(94, 55%, 34%) 0%, hsl(94, 55%, 59%) 100%);
}

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

.statistics-section .section-title {
  font-family: 'Work Sans', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: hsl(94, 55%, 19%);
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
}

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

.statistics-section .section-subtitle {
  font-family: 'Crimson Text', serif;
  font-size: 1.2rem;
  color: #666;
  max-width: 700px;
  margin: 30px auto 0;
  line-height: 1.8;
}

.stat-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 35px 25px;
  text-align: center;
  box-shadow: 0 5px 20px 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: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, hsl(94, 55%, 34%) 0%, hsl(94, 55%, 59%) 100%);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

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

.stat-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 35px rgba(105, 151, 60, 0.2);
  border-color: hsl(94, 55%, 59%);
}

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

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

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

.stat-number {
  font-family: 'Work Sans', sans-serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: hsl(94, 55%, 19%);
  margin-bottom: 12px;
  line-height: 1;
  display: block;
}

.stat-label {
  font-family: 'Crimson Text', serif;
  font-size: 1.1rem;
  color: #555;
  font-weight: 600;
  margin-bottom: 8px;
  line-height: 1.4;
}

.stat-context {
  font-family: 'Crimson Text', serif;
  font-size: 0.95rem;
  color: #777;
  line-height: 1.5;
  margin-top: 10px;
}

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

@media (max-width: 991px) {
  .statistics-section {
    padding: 60px 0;
  }
  
  .statistics-section .section-title {
    font-size: 2rem;
  }
  
  .stat-number {
    font-size: 2.3rem;
  }
  
  .stat-card {
    margin-bottom: 25px;
  }
}

@media (max-width: 767px) {
  .statistics-section {
    padding: 50px 0;
  }
  
  .statistics-section .section-title {
    font-size: 1.75rem;
  }
  
  .statistics-section .section-subtitle {
    font-size: 1.05rem;
  }
  
  .stat-icon {
    width: 60px;
    height: 60px;
  }
  
  .stat-icon i {
    font-size: 28px;
  }
  
  .stat-number {
    font-size: 2rem;
  }
  
  .stat-label {
    font-size: 1rem;
  }
}

footer {
  background: linear-gradient(135deg, hsl(94, 55%, 19%) 0%, hsl(94, 55%, 24%) 100%);
  color: #f8f9fa;
  padding: 3.5rem 0 1.5rem;
  margin-top: 4rem;
  font-family: 'Crimson Text', serif;
}

footer h5 {
  font-family: 'Work Sans', sans-serif;
  font-weight: 600;
  color: hsl(94, 55%, 59%);
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

footer p, footer a, footer li {
  color: #e9ecef;
  font-size: 1rem;
  line-height: 1.8;
}

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

footer a:hover {
  color: hsl(94, 55%, 59%);
  padding-left: 5px;
}

footer .company-description {
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  color: #dee2e6;
}

footer .contact-info {
  list-style: none;
  padding: 0;
  margin: 0;
}

footer .contact-info li {
  margin-bottom: 0.8rem;
  display: flex;
  align-items: flex-start;
}

footer .contact-info li strong {
  color: hsl(94, 55%, 59%);
  min-width: 110px;
  font-weight: 600;
}

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

footer .footer-links li {
  margin-bottom: 0.7rem;
}

footer .footer-links a {
  display: inline-block;
}

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

#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.5rem 0;
  border-top: 3px solid hsl(94, 55%, 34%);
}

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

#cookieNotice h5 {
  font-family: 'Work Sans', sans-serif;
  color: hsl(94, 55%, 19%);
  font-weight: 700;
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

#cookieNotice p {
  font-family: 'Crimson Text', serif;
  color: #333;
  margin-bottom: 1rem;
  font-size: 1.05rem;
  line-height: 1.6;
}

#cookieNotice .cookie-categories {
  background: #f8f9fa;
  padding: 1rem;
  border-radius: 8px;
  margin: 1rem 0;
  border-left: 4px solid hsl(94, 55%, 34%);
}

#cookieNotice .cookie-category {
  margin-bottom: 0.7rem;
  font-family: 'Crimson Text', serif;
  color: #333;
  font-size: 0.95rem;
}

#cookieNotice .cookie-category strong {
  color: hsl(94, 55%, 19%);
  font-weight: 600;
}

#cookieNotice .cookie-category.required {
  color: #495057;
}

#cookieNotice .btn-accept-all {
  background: hsl(94, 55%, 34%);
  color: #ffffff;
  border: none;
  padding: 0.7rem 2rem;
  font-family: 'Work Sans', sans-serif;
  font-weight: 600;
  border-radius: 6px;
  transition: all 0.3s ease;
  font-size: 1rem;
}

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

#cookieNotice .btn-reject {
  background: #6c757d;
  color: #ffffff;
  border: none;
  padding: 0.7rem 2rem;
  font-family: 'Work Sans', sans-serif;
  font-weight: 600;
  border-radius: 6px;
  transition: all 0.3s ease;
  font-size: 1rem;
}

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

#cookieNotice .btn-manage {
  background: transparent;
  color: hsl(94, 55%, 34%);
  border: 2px solid hsl(94, 55%, 34%);
  padding: 0.7rem 2rem;
  font-family: 'Work Sans', sans-serif;
  font-weight: 600;
  border-radius: 6px;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  font-size: 1rem;
}

#cookieNotice .btn-manage:hover {
  background: hsl(94, 55%, 34%);
  color: #ffffff;
  transform: translateY(-2px);
}

#cookieNotice .cookie-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

@media (max-width: 768px) {
  footer {
    padding: 2.5rem 0 1rem;
  }
  
  footer h5 {
    margin-top: 1.5rem;
  }
  
  #cookieNotice {
    padding: 1rem 0;
  }
  
  #cookieNotice .cookie-buttons {
    flex-direction: column;
  }
  
  #cookieNotice .btn-accept-all,
  #cookieNotice .btn-reject,
  #cookieNotice .btn-manage {
    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: Crimson Text, sans-serif; }
.article-header { margin-bottom: 3rem; border-bottom: 2px solid hsl(94, 55%, 34%)20; padding-bottom: 2rem; }
.article-header h1 { font-size: 2.5rem; margin-bottom: 1rem; font-family: Work Sans, sans-serif; color: hsl(94, 55%, 19%); }
.article-meta { color: #666; font-size: 0.95rem; margin-bottom: 1.5rem; }
.article-meta i { color: hsl(94, 55%, 34%); }
.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(94, 55%, 19%); font-family: Work Sans, sans-serif; margin-top: 2rem; }
.blog-article h3 { color: hsl(94, 55%, 19%); font-family: Work Sans, sans-serif; }
.blog-article a { color: hsl(94, 55%, 34%); }
.blog-article a:hover { color: hsl(94, 55%, 59%); }
.blog-article ul, .blog-article ol { margin: 1rem 0; padding-left: 1.5rem; }
.blog-article blockquote { border-left: 4px solid hsl(94, 55%, 34%); padding-left: 1rem; margin: 1.5rem 0; font-style: italic; color: #555; }

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

  .contact-section h2 {
    font-family: 'Work Sans', sans-serif;
    color: hsl(94, 55%, 19%);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
  }

  .contact-section .lead-text {
    color: #555;
    font-size: 1.2rem;
    margin-bottom: 3rem;
    line-height: 1.7;
  }

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

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

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

  .contact-icon {
    width: 50px;
    height: 50px;
    background: hsl(94, 55%, 59%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1.25rem;
    flex-shrink: 0;
  }

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

  .contact-info-content h4 {
    font-family: 'Work Sans', sans-serif;
    color: hsl(94, 55%, 19%);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
  }

  .contact-info-content p {
    color: #333;
    margin: 0;
    font-size: 1.05rem;
    line-height: 1.6;
  }

  .contact-info-content a {
    color: hsl(94, 55%, 34%);
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
  }

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

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

  .contact-form-card h3 {
    font-family: 'Work Sans', sans-serif;
    color: hsl(94, 55%, 19%);
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
  }

  .form-label {
    font-family: 'Work Sans', sans-serif;
    color: #333;
    font-weight: 500;
    margin-bottom: 0.5rem;
    font-size: 1rem;
  }

  .form-control, .form-select {
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    padding: 0.75rem 1rem;
    font-family: 'Crimson Text', serif;
    font-size: 1.05rem;
    color: #333;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
  }

  .form-control:focus, .form-select:focus {
    border-color: hsl(94, 55%, 34%);
    box-shadow: 0 0 0 0.2rem rgba(94, 142, 52, 0.15);
    outline: none;
  }

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

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

  .btn-submit {
    background: hsl(94, 55%, 34%);
    color: #ffffff;
    border: none;
    padding: 0.9rem 2.5rem;
    font-family: 'Work Sans', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    margin-top: 1rem;
  }

  .btn-submit:hover {
    background: hsl(94, 55%, 19%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(94, 142, 52, 0.3);
  }

  .required-mark {
    color: #dc3545;
    margin-left: 3px;
  }

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

  .hours-list li {
    padding: 0.4rem 0;
    color: #333;
    font-size: 1.05rem;
    display: flex;
    justify-content: space-between;
  }

  .hours-list li strong {
    color: hsl(94, 55%, 19%);
    font-weight: 600;
  }

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

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

    .contact-info-card {
      margin-bottom: 2rem;
    }
  }

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

    .contact-form-card, .contact-info-card {
      padding: 1.75rem;
    }

    .btn-submit {
      padding: 0.8rem 2rem;
      font-size: 1rem;
    }
  }

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

  :root {
    --primary-color: hsl(94, 55%, 34%);
    --secondary-color: hsl(94, 55%, 19%);
    --accent-color: hsl(94, 55%, 59%);
  }

  body {
    font-family: 'Crimson Text', serif;
    font-size: 1.125rem;
    line-height: 1.8;
    color: #333;
  }

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

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

  .policy-content h2 {
    font-size: 2rem;
    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.5rem;
    color: var(--primary-color);
  }

  .policy-content a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border-bottom: 2px solid transparent;
  }

  .policy-content a:hover {
    color: var(--accent-color);
    border-bottom: 2px solid var(--accent-color);
  }

  .policy-content ul,
  .policy-content ol {
    margin: 1.5rem 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;
    border-bottom: 2px solid white;
  }

  .info-box a:hover {
    color: var(--secondary-color);
    border-bottom: 2px solid var(--secondary-color);
  }

  .cookie-table {
    margin: 2rem 0;
    border: 2px solid var(--accent-color);
    border-radius: 8px;
    overflow: hidden;
  }

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

  .cookie-table td {
    padding: 1rem;
    border-bottom: 1px solid var(--accent-color);
  }

  .cookie-table tr:last-child td {
    border-bottom: none;
  }

  .cookie-table tr:nth-child(even) {
    background-color: rgba(94, 155, 34, 0.05);
  }

  .last-updated {
    background-color: #f8f9fa;
    padding: 1rem;
    border-left: 4px solid var(--accent-color);
    margin-bottom: 2rem;
    font-style: italic;
  }

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

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

  .faq-section h2 {
    font-family: 'Work Sans', sans-serif;
    color: hsl(94, 55%, 19%);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-align: center;
  }

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

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

  .faq-accordion .accordion-item {
    border: 1px solid #e0e0e0;
    margin-bottom: 1rem;
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
  }

  .faq-accordion .accordion-button {
    font-family: 'Work Sans', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #222;
    background: #f8f9fa;
    padding: 1.25rem 1.5rem;
    border: none;
    box-shadow: none;
  }

  .faq-accordion .accordion-button:not(.collapsed) {
    background: hsl(94, 55%, 34%);
    color: #ffffff;
  }

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

  .faq-accordion .accordion-button::after {
    filter: brightness(0);
  }

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

  .faq-accordion .accordion-body {
    padding: 1.5rem;
    font-size: 1.05rem;
    line-height: 1.8;
    color: #444;
    background: #ffffff;
  }

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

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

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

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

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

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

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

.newsletter-section {
  background: linear-gradient(135deg, hsl(94, 55%, 34%) 0%, hsl(94, 55%, 19%) 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%;
  z-index: 0;
}

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

.newsletter-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

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

.newsletter-description {
  font-family: 'Crimson Text', serif;
  font-size: 1.15rem;
  color: #f8f9fa;
  margin-bottom: 35px;
  line-height: 1.7;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.newsletter-form {
  display: flex;
  gap: 15px;
  max-width: 550px;
  margin: 0 auto;
  flex-wrap: wrap;
}

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

.newsletter-input:focus {
  outline: none;
  border-color: hsl(94, 55%, 59%);
  background: #ffffff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

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

.newsletter-button {
  padding: 16px 40px;
  font-family: 'Work Sans', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #ffffff;
  background: hsl(94, 55%, 59%);
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.newsletter-button:hover {
  background: hsl(94, 55%, 54%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

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

.newsletter-privacy {
  font-family: 'Crimson Text', serif;
  font-size: 0.9rem;
  color: #f8f9fa;
  margin-top: 20px;
  opacity: 0.9;
}

.newsletter-privacy a {
  color: hsl(94, 55%, 59%);
  text-decoration: underline;
  transition: opacity 0.3s ease;
}

.newsletter-privacy a:hover {
  opacity: 0.8;
}

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

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

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

  .newsletter-form {
    flex-direction: column;
    gap: 12px;
  }

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

  .newsletter-button {
    width: 100%;
  }
}

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

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

  .newsletter-input,
  .newsletter-button {
    padding: 14px 20px;
  }
}

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

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

  .hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    height: 100%;
    background: linear-gradient(135deg, rgba(94, 155, 34, 0.03) 0%, rgba(94, 155, 34, 0.08) 100%);
    z-index: 0;
  }

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

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

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

  .hero-description {
    font-family: 'Crimson Text', serif;
    font-size: 1.15rem;
    color: #444;
    line-height: 1.8;
    margin-bottom: 2rem;
    text-align: justify;
  }

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

  .hero-advantages li {
    font-family: 'Crimson Text', serif;
    font-size: 1.1rem;
    color: #333;
    padding: 0.8rem 0;
    padding-left: 2.5rem;
    position: relative;
    line-height: 1.6;
  }

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

  .hero-advantages li::after {
    content: '✓';
    position: absolute;
    left: 8px;
    top: 50%;
    transform: translateY(-50%);
    color: #fff;
    font-weight: bold;
    font-size: 1.1rem;
  }

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

  .btn-primary-hero {
    font-family: 'Work Sans', sans-serif;
    font-weight: 600;
    background: hsl(94, 55%, 34%);
    color: #fff;
    border: none;
    padding: 14px 32px;
    font-size: 1.05rem;
    border-radius: 6px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
  }

  .btn-primary-hero:hover {
    background: hsl(94, 55%, 19%);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(94, 155, 34, 0.3);
  }

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

  .btn-secondary-hero:hover {
    background: hsl(94, 55%, 34%);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(94, 155, 34, 0.2);
  }

  .hero-image-wrapper {
    margin-top: 3rem;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
  }

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

  .hero-badge {
    display: inline-block;
    background: hsl(94, 55%, 59%);
    color: #222;
    font-family: 'Work Sans', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 8px 20px;
    border-radius: 30px;
    margin-bottom: 1.5rem;
  }

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

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

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

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

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

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

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

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

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

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

    .hero-advantages li::before {
      width: 24px;
      height: 24px;
    }

    .hero-advantages li::after {
      left: 7px;
      font-size: 1rem;
    }
  }

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

.testimonials-section h2 {
  font-family: 'Work Sans', sans-serif;
  color: hsl(94, 55%, 19%);
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-align: center;
}

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

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

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

.testimonial-card.featured {
  background: linear-gradient(135deg, hsl(94, 55%, 34%) 0%, hsl(94, 55%, 19%) 100%);
  color: #ffffff;
  border-left: 4px solid hsl(94, 55%, 59%);
}

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

.testimonial-card.compact {
  padding: 1.5rem;
  border-left: 3px solid hsl(94, 55%, 34%);
}

.testimonial-card.detailed {
  padding: 2.5rem;
  background: #f8f9fa;
  border: 2px solid hsl(94, 55%, 59%);
  border-left-width: 5px;
}

.rating-stars {
  color: #ffc107;
  font-size: 1.2rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.rating-stars i {
  text-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

.review-text {
  color: #333;
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.testimonial-card.compact .review-text {
  font-size: 1rem;
  margin-bottom: 1rem;
}

.customer-info {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid rgba(0,0,0,0.1);
}

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

.customer-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: hsl(94, 55%, 59%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Work Sans', sans-serif;
  font-weight: 700;
  color: #ffffff;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.testimonial-card.featured .customer-avatar {
  background: #ffffff;
  color: hsl(94, 55%, 34%);
}

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

.customer-name {
  font-family: 'Work Sans', sans-serif;
  font-weight: 600;
  color: hsl(94, 55%, 19%);
  font-size: 1.1rem;
  margin-bottom: 0.2rem;
}

.customer-location {
  color: #666;
  font-size: 0.95rem;
}

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

.highlight-badge {
  display: inline-block;
  background: hsl(94, 55%, 59%);
  color: #ffffff;
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-family: 'Work Sans', sans-serif;
  font-weight: 600;
  margin-bottom: 1rem;
}

.testimonial-card.featured .highlight-badge {
  background: #ffffff;
  color: hsl(94, 55%, 34%);
}

@media (max-width: 768px) {
  .testimonials-section {
    padding: 60px 0;
  }
  
  .testimonials-section h2 {
    font-size: 2rem;
  }
  
  .testimonial-card {
    padding: 1.5rem;
  }
  
  .testimonial-card.detailed {
    padding: 2rem;
  }
}

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

.blog-preview-section h2 {
  font-family: 'Work Sans', sans-serif;
  font-weight: 700;
  color: hsl(94, 55%, 19%);
  font-size: 2.5rem;
  margin-bottom: 1rem;
  text-align: center;
}

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

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

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

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

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

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

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

.blog-meta-item i {
  color: hsl(94, 55%, 34%);
  font-size: 1rem;
}

.blog-card h3 {
  font-family: 'Work Sans', sans-serif;
  font-weight: 600;
  color: #222;
  font-size: 1.6rem;
  margin-bottom: 15px;
  line-height: 1.4;
}

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

.blog-card h3 a:hover {
  color: hsl(94, 55%, 34%);
}

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

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

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

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

.btn-view-all {
  display: inline-block;
  padding: 16px 45px;
  background: hsl(94, 55%, 34%);
  color: #ffffff;
  font-family: 'Work Sans', sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s ease;
  border: 2px solid hsl(94, 55%, 34%);
}

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

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

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

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

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

  .blog-card h3 {
    font-size: 1.4rem;
  }

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

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

  .services-section h2 {
    font-family: 'Work Sans', sans-serif;
    color: hsl(94, 55%, 19%);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-align: center;
  }

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

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

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

  .service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
    border-color: hsl(94, 55%, 59%);
  }

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

  .service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, hsl(94, 55%, 34%) 0%, hsl(94, 55%, 59%) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.4s ease;
  }

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

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

  .service-card h3 {
    font-family: 'Work Sans', sans-serif;
    color: hsl(94, 55%, 19%);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
  }

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

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

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

  .service-badge {
    display: inline-block;
    background: hsl(94, 55%, 59%);
    color: #ffffff;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
    font-family: 'Work Sans', sans-serif;
  }

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

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

    .service-card {
      margin-bottom: 1.5rem;
    }
  }

.promo-offer-section {
  background: linear-gradient(135deg, hsl(94, 55%, 34%) 0%, hsl(94, 55%, 19%) 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(94, 55%, 59%);
  opacity: 0.1;
  border-radius: 50%;
}

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

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

.offer-badge {
  display: inline-block;
  background: hsl(94, 55%, 59%);
  color: hsl(94, 55%, 19%);
  padding: 8px 24px;
  border-radius: 50px;
  font-family: 'Work Sans', sans-serif;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

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

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

.deadline-box {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  padding: 32px;
  margin-bottom: 40px;
  text-align: center;
}

.deadline-label {
  font-family: 'Work Sans', sans-serif;
  font-size: 18px;
  color: #f8f9fa;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.deadline-date {
  font-family: 'Work Sans', sans-serif;
  font-size: 56px;
  font-weight: 700;
  color: hsl(94, 55%, 59%);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.calendar-icon {
  width: 60px;
  height: 60px;
  background: #ffffff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  color: hsl(94, 55%, 34%);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-bottom: 48px;
}

.benefit-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  padding: 28px;
  transition: all 0.3s ease;
}

.benefit-card:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-4px);
}

.benefit-icon {
  width: 50px;
  height: 50px;
  background: hsl(94, 55%, 59%);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.benefit-icon i {
  font-size: 24px;
  color: hsl(94, 55%, 19%);
}

.benefit-text {
  font-family: 'Crimson Text', serif;
  font-size: 18px;
  color: #ffffff;
  line-height: 1.6;
  margin: 0;
}

.offer-cta-btn {
  display: inline-block;
  background: hsl(94, 55%, 59%);
  color: hsl(94, 55%, 19%);
  font-family: 'Work Sans', sans-serif;
  font-size: 18px;
  font-weight: 700;
  padding: 18px 48px;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 3px solid hsl(94, 55%, 59%);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.offer-cta-btn:hover {
  background: transparent;
  color: hsl(94, 55%, 59%);
  transform: scale(1.05);
}

.discount-highlight {
  background: hsl(94, 55%, 59%);
  color: hsl(94, 55%, 19%);
  padding: 4px 12px;
  border-radius: 6px;
  font-weight: 700;
  font-family: 'Work Sans', sans-serif;
}

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

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

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

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

  .calendar-icon {
    width: 50px;
    height: 50px;
    font-size: 28px;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
  }
}

.credentials-section {
  background: #f8f9fa;
  padding: 60px 0;
  font-family: 'Crimson Text', serif;
}

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

.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;
  height: 100%;
  margin-bottom: 20px;
}

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

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

.credential-title {
  font-family: 'Work Sans', sans-serif;
  color: #333;
  font-size: 1rem;
  font-weight: 600;
  margin: 0;
  line-height: 1.4;
}

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

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

.disclaimer-section .container {
  max-width: 900px;
}

.disclaimer-icon {
  width: 80px;
  height: 80px;
  background: hsl(94, 55%, 34%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 30px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.disclaimer-icon i {
  font-size: 40px;
  color: #ffffff;
}

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

.disclaimer-content {
  background: #ffffff;
  padding: 50px;
  border-radius: 12px;
  box-shadow: 0 5px 25px rgba(0,0,0,0.08);
  border-left: 5px solid hsl(94, 55%, 34%);
}

.disclaimer-text {
  font-size: 1.1rem;
  line-height: 1.9;
  color: #333;
  text-align: justify;
  margin: 0;
}

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

  .disclaimer-title {
    font-size: 2rem;
  }

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

  .disclaimer-text {
    font-size: 1rem;
    line-height: 1.8;
  }

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

  .disclaimer-icon i {
    font-size: 30px;
  }
}

@import url('https://fonts.googleapis.com/css2?family=Work+Sans:wght@400;600;700&family=Crimson+Text:wght@400;600;700&display=swap');
  
  :root {
    --primary-color: hsl(94, 55%, 34%);
    --secondary-color: hsl(94, 55%, 19%);
    --accent-color: hsl(94, 55%, 59%);
  }
  
  .policy-content {
    font-family: 'Crimson Text', serif;
    font-size: 1.125rem;
    line-height: 1.8;
    color: #333;
  }
  
  .policy-content h1,
  .policy-content h2,
  .policy-content h3,
  .policy-content h4 {
    font-family: 'Work Sans', sans-serif;
    font-weight: 700;
    color: var(--secondary-color);
    margin-top: 2rem;
    margin-bottom: 1rem;
  }
  
  .policy-content h1 {
    font-size: 2.75rem;
    border-bottom: 4px solid var(--primary-color);
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
  
  .policy-content h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-top: 3rem;
    position: relative;
    padding-left: 1rem;
    border-left: 5px solid var(--accent-color);
  }
  
  .policy-content h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
  }
  
  .policy-content a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border-bottom: 2px solid transparent;
  }
  
  .policy-content a:hover {
    color: var(--accent-color);
    border-bottom: 2px solid var(--accent-color);
  }
  
  .policy-content ul,
  .policy-content ol {
    margin: 1.5rem 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;
    border-bottom: 2px solid white;
  }
  
  .info-box a:hover {
    color: var(--secondary-color);
    border-bottom: 2px solid var(--secondary-color);
  }
  
  .last-updated {
    background-color: #f8f9fa;
    padding: 1rem 1.5rem;
    border-left: 4px solid var(--primary-color);
    margin-bottom: 2rem;
    font-style: italic;
  }
  
  .section-card {
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
  }
  
  .section-card:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transform: translateY(-2px);
  }

@import url('https://fonts.googleapis.com/css2?family=Work+Sans:wght@400;600;700&family=Crimson+Text:wght@400;600;700&display=swap');
  
  :root {
    --primary-color: hsl(94, 55%, 34%);
    --secondary-color: hsl(94, 55%, 19%);
    --accent-color: hsl(94, 55%, 59%);
  }
  
  .policy-content {
    font-family: 'Crimson Text', serif;
    color: #333;
    line-height: 1.8;
    font-size: 1.1rem;
  }
  
  .policy-content h1,
  .policy-content h2,
  .policy-content h3,
  .policy-content h4 {
    font-family: 'Work Sans', sans-serif;
    font-weight: 700;
    color: var(--secondary-color);
    margin-top: 2rem;
    margin-bottom: 1rem;
  }
  
  .policy-content h1 {
    font-size: 2.5rem;
    border-bottom: 4px solid var(--primary-color);
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
  
  .policy-content h2 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-top: 2.5rem;
    position: relative;
    padding-left: 1rem;
    border-left: 5px solid var(--accent-color);
  }
  
  .policy-content h3 {
    font-size: 1.4rem;
    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 strong {
    color: var(--secondary-color);
    font-weight: 700;
  }
  
  .info-box {
    background-color: rgba(94, 155, 34, 0.08);
    border-left: 5px solid var(--primary-color);
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 0 8px 8px 0;
  }
  
  .contact-section {
    background-color: var(--secondary-color);
    color: white;
    padding: 2rem;
    border-radius: 8px;
    margin-top: 3rem;
  }
  
  .contact-section h3 {
    color: var(--accent-color);
  }
  
  .contact-section a {
    color: var(--accent-color);
  }
  
  .effective-date {
    background-color: var(--accent-color);
    color: var(--secondary-color);
    display: inline-block;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    margin-bottom: 2rem;
  }
  
  .section-divider {
    height: 2px;
    background: linear-gradient(to right, var(--primary-color), var(--accent-color), transparent);
    margin: 2.5rem 0;
  }

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

  :root {
    --primary: hsl(94, 55%, 34%);
    --secondary: hsl(94, 55%, 19%);
    --accent: hsl(94, 55%, 59%);
  }

  .thankyou-section {
    font-family: 'Crimson Text', serif;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, hsl(94, 55%, 97%) 0%, hsl(94, 30%, 92%) 100%);
    padding: 2rem 1rem;
  }

  .thankyou-section h1,
  .thankyou-section h2,
  .thankyou-section h3 {
    font-family: 'Work Sans', sans-serif;
  }

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

  .success-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 2rem;
    background: var(--accent);
    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: 100;
      stroke-dashoffset: 100;
    }
    100% {
      stroke-dasharray: 100;
      stroke-dashoffset: 0;
    }
  }

  .thankyou-heading {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1rem;
  }

  .thankyou-subheading {
    font-size: 1.25rem;
    color: var(--secondary);
    margin-bottom: 1.5rem;
    font-weight: 600;
  }

  .thankyou-message {
    font-size: 1.125rem;
    color: hsl(0, 0%, 40%);
    line-height: 1.8;
    margin-bottom: 2rem;
  }

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

  .info-box {
    background: hsl(94, 55%, 97%);
    border-left: 4px solid var(--accent);
    padding: 1rem 1.25rem;
    border-radius: 8px;
    text-align: left;
  }

  .info-box-icon {
    color: var(--primary);
    margin-right: 0.5rem;
    font-size: 1.25rem;
  }

  .info-box-text {
    font-size: 1rem;
    color: var(--secondary);
    margin: 0;
  }

  .btn-home {
    background-color: var(--primary);
    border: none;
    color: white;
    padding: 0.875rem 2.5rem;
    font-size: 1.125rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    font-family: 'Work Sans', sans-serif;
  }

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

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

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

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

    .thankyou-subheading {
      font-size: 1.125rem;
    }

    .thankyou-message {
      font-size: 1rem;
    }

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

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