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

:root {
  --primary: hsl(161, 58%, 31%);
  --secondary: hsl(311, 45%, 15%);
  --accent: hsl(11, 72%, 54%);
}

body {
  font-family: 'Crimson Text', serif;
  color: #222;
  background-color: #fff;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Work Sans', sans-serif;
}
.navbar {
  background-color: #fff;
  border-bottom: 1px solid #e9ecef;
}
.navbar-brand {
  font-family: 'Work Sans', sans-serif;
  font-weight: 700;
  color: hsl(311, 45%, 15%);
  display: flex;
  align-items: center;
  gap: 10px;
}
.navbar-brand img {
  border-radius: 16px;
}
.nav-link {
  font-family: 'Work Sans', sans-serif;
  font-weight: 600;
  color: #222 !important;
  margin: 0 8px;
}
.nav-link:hover {
  color: hsl(161, 58%, 31%) !important;
}
.navbar-toggler {
  border-color: hsl(161, 58%, 31%);
}

.hero-section{background:#f8f9fa;padding:52px 0;font-family:'Crimson Text',serif;color:#222;}
.hero-section h1{font-family:'Work Sans',sans-serif;font-weight:700;color:hsl(311,45%,15%);font-size:2.4rem;}
.hero-section h2{font-family:'Work Sans',sans-serif;font-weight:500;color:hsl(161,58%,31%);font-size:1.3rem;margin-bottom:18px;}
.hero-section p.desc{font-size:1.2rem;line-height:1.6;color:#333;}
.info-strip{display:flex;flex-wrap:wrap;gap:16px;margin:20px 0 26px 0;}
.info-strip .info-item{background:#fff;border:1px solid #ddd;border-radius:16px;padding:10px 16px;display:flex;align-items:center;gap:8px;font-size:1rem;color:#222;}
.info-strip .info-item i{color:hsl(11,72%,54%);font-size:1.1rem;}
.hero-cta .btn{border-radius:18px;font-family:'Work Sans',sans-serif;font-weight:600;padding:12px 28px;font-size:1rem;transition:all .25s ease;}
.btn-primary-hero{background:hsl(161,58%,31%);border:2px solid hsl(161,58%,31%);color:#fff;}
.btn-primary-hero:hover{background:hsl(161,58%,25%);border-color:hsl(161,58%,25%);color:#fff;}
.btn-outline-hero{background:transparent;border:2px solid hsl(311,45%,15%);color:hsl(311,45%,15%);}
.btn-outline-hero:hover{background:hsl(311,45%,15%);color:#fff;}
.hero-img{border-radius:20px;aspect-ratio:3/2;width:100%;height:auto;object-fit:cover;}
@media(max-width:767px){.hero-section h1{font-size:1.9rem;}.info-strip{gap:10px;}}

#about-us {
  font-family: 'Crimson Text', serif;
  background: #f8f9fa;
  color: #222;
  padding: 52px 0;
}
#about-us h2, #about-us h3, #about-us h4 {
  font-family: 'Work Sans', sans-serif;
}
#about-us .section-title {
  color: hsl(161, 58%, 31%);
  font-weight: 700;
  margin-bottom: 24px;
}
#about-us p {
  font-size: 1.15rem;
  line-height: 1.7;
}
#about-us .story-img {
  aspect-ratio: 3 / 2;
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 20px;
}
#about-us .values-box {
  background: hsl(161, 58%, 31%);
  color: #fff;
  border-radius: 20px;
  padding: 28px;
  height: 100%;
}
#about-us .values-box h4 {
  color: #fff;
  margin-bottom: 14px;
}
#about-us .values-box ul {
  padding-left: 20px;
  margin-bottom: 0;
}
#about-us .stat-box {
  background: hsl(311, 45%, 15%);
  color: #fff;
  border-radius: 20px;
  padding: 24px;
  text-align: center;
  height: 100%;
}
#about-us .stat-box h3 {
  color: hsl(11, 72%, 54%);
  font-size: 2.1rem;
  font-weight: 700;
  margin-bottom: 6px;
}
#about-us .stat-box p {
  font-size: 1rem;
  margin-bottom: 0;
}
#about-us .team-card {
  background: #fff;
  border: 2px solid hsl(161, 58%, 31%);
  border-radius: 20px;
  padding: 24px;
  height: 100%;
}
#about-us .team-card h5 {
  color: hsl(311, 45%, 15%);
  font-weight: 700;
  margin-bottom: 4px;
}
#about-us .team-card span {
  color: hsl(11, 72%, 54%);
  font-weight: 600;
  display: block;
  margin-bottom: 10px;
}
@media (max-width: 767px) {
  #about-us { padding: 40px 0; }
}

.services-section {
  background: #f8f9fa;
  padding: 52px 0;
  font-family: 'Crimson Text', serif;
}
.services-section h2 {
  font-family: 'Work Sans', sans-serif;
  color: hsl(311, 45%, 15%);
  font-weight: 700;
}
.services-section .lead-text {
  color: #333;
  font-size: 1.15rem;
  max-width: 720px;
}
.service-card {
  background: #fff;
  border: 1px solid #e2e2e2;
  border-radius: 20px;
  padding: 32px 22px;
  height: 100%;
  text-align: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.12);
  border-color: hsl(161, 58%, 31%);
}
.service-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: hsl(161, 58%, 31%);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin: 0 auto 18px;
  transition: background 0.25s ease;
}
.service-card:hover .service-icon {
  background: hsl(11, 72%, 54%);
}
.service-card h3 {
  font-family: 'Work Sans', sans-serif;
  font-size: 1.15rem;
  color: hsl(311, 45%, 15%);
  font-weight: 600;
  margin-bottom: 10px;
}
.service-card p {
  color: #444;
  font-size: 1rem;
  margin-bottom: 14px;
  min-height: 72px;
}
.service-price {
  display: inline-block;
  font-family: 'Work Sans', sans-serif;
  font-weight: 600;
  color: #fff;
  background: hsl(311, 45%, 15%);
  padding: 6px 18px;
  border-radius: 24px;
  font-size: 0.95rem;
}

#why-us {
  padding: 52px 0;
  background: #f8f9fa;
}
#why-us h2 {
  font-family: 'Work Sans', sans-serif;
  color: hsl(311, 45%, 15%);
  font-weight: 700;
}
#why-us .lead-text {
  font-family: 'Crimson Text', serif;
  font-size: 1.15rem;
  color: #333;
}
#why-us .adv-card {
  background: #fff;
  border-radius: 20px;
  padding: 32px 24px;
  height: 100%;
  border: 1px solid #e9ecef;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
#why-us .adv-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.12);
  border-color: hsl(161, 58%, 31%);
}
#why-us .adv-icon {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: hsl(161, 58%, 31%);
  color: #fff;
  font-size: 1.6rem;
  margin-bottom: 16px;
  transition: background 0.25s ease;
}
#why-us .adv-card:hover .adv-icon {
  background: hsl(11, 72%, 54%);
}
#why-us .adv-card h3 {
  font-family: 'Work Sans', sans-serif;
  font-size: 1.15rem;
  color: hsl(311, 45%, 15%);
  font-weight: 600;
  margin-bottom: 10px;
}
#why-us .adv-card p {
  font-family: 'Crimson Text', serif;
  color: #444;
  font-size: 1.02rem;
  margin-bottom: 0;
}

#offer {
  font-family: 'Crimson Text', serif;
  padding: 52px 0;
  background: #f8f9fa;
}
#offer h2, #offer h3, #offer .offer-heading {
  font-family: 'Work Sans', sans-serif;
}
#offer .offer-box {
  background: hsl(161, 58%, 31%);
  color: #fff;
  border-radius: 20px;
  padding: 40px;
  border: 2px solid hsl(161, 58%, 25%);
}
#offer .offer-box h2 {
  color: #fff;
  font-size: 1.9rem;
  font-weight: 700;
  margin-bottom: 16px;
}
#offer .offer-box p {
  color: #f1f1f1;
  font-size: 1.15rem;
  line-height: 1.6;
}
#offer .offer-date-block {
  background: #fff;
  color: hsl(311, 45%, 15%);
  border-radius: 16px;
  padding: 22px 24px;
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 24px 0;
}
#offer .offer-date-block i {
  font-size: 1.8rem;
  color: hsl(11, 72%, 54%);
}
#offer .offer-date-block .valid-label {
  font-size: 1rem;
  color: hsl(311, 45%, 15%);
  margin: 0;
  display: block;
}
#offer .offer-date-block .valid-date {
  font-size: 1.5rem;
  font-weight: 700;
  color: hsl(311, 45%, 15%);
  margin: 0;
}
#offer .offer-list {
  list-style: none;
  padding: 0;
  margin: 0 0 28px 0;
}
#offer .offer-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 1.1rem;
  color: #fff;
}
#offer .offer-list li i {
  color: hsl(11, 72%, 54%);
  font-size: 1.3rem;
  margin-top: 2px;
}
#offer .offer-cta-btn {
  background: hsl(11, 72%, 54%);
  color: #fff;
  border: none;
  border-radius: 16px;
  padding: 14px 34px;
  font-family: 'Work Sans', sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
  text-decoration: none;
  display: inline-block;
  transition: opacity 0.2s ease;
}
#offer .offer-cta-btn:hover {
  opacity: 0.88;
  color: #fff;
}
#offer .offer-badge {
  background: #fff;
  color: hsl(11, 72%, 54%);
  font-family: 'Work Sans', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  border-radius: 12px;
  padding: 8px 16px;
  display: inline-block;
  margin-bottom: 18px;
}
@media (max-width: 576px) {
  #offer .offer-box {
    padding: 26px;
  }
  #offer .offer-date-block {
    flex-direction: column;
    align-items: flex-start;
  }
}

#how-we-work {
  padding: 48px 0;
  background: #f8f9fa;
}
#how-we-work h2 {
  font-family: 'Work Sans', sans-serif;
  color: hsl(311, 45%, 15%);
  font-weight: 600;
}
#how-we-work p.section-sub {
  font-family: 'Crimson Text', serif;
  color: #444;
  font-size: 1.1rem;
}
#how-we-work .hww-card {
  border: 1px solid #dee2e6;
  border-radius: 18px;
  padding: 20px 18px;
  background: #fff;
  height: 100%;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
#how-we-work .hww-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  border-color: hsl(161, 58%, 31%);
}
#how-we-work .hww-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: hsl(161, 58%, 31%);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 12px;
  flex-shrink: 0;
}
#how-we-work .hww-text {
  font-family: 'Crimson Text', serif;
  color: #222;
  font-size: 1.08rem;
  line-height: 1.4;
  margin-bottom: 0;
}

#get-in-touch .contact-section {background:#f8f9fa;padding:52px 0;font-family:'Crimson Text',serif;color:#222;}
#get-in-touch .contact-section h2, #get-in-touch .contact-section h3 {font-family:'Work Sans',sans-serif;color:hsl(311,45%,15%);}
#get-in-touch .contact-card {background:#fff;border-radius:20px;padding:32px;box-shadow:0 2px 10px rgba(0,0,0,0.06);height:100%;}
#get-in-touch .contact-section .form-control {border-radius:16px;border:1px solid #ccc;font-family:'Crimson Text',serif;padding:10px 14px;}
#get-in-touch .contact-section .form-control:focus {border-color:hsl(161,58%,31%);box-shadow:0 0 0 0.2rem hsla(161,58%,31%,0.2);}
#get-in-touch .contact-section label {font-family:'Work Sans',sans-serif;font-weight:500;color:#222;margin-bottom:4px;}
#get-in-touch .btn-submit {background:hsl(11,72%,54%);color:#fff;border:none;border-radius:16px;padding:12px 28px;font-family:'Work Sans',sans-serif;font-weight:600;transition:background .2s;}
#get-in-touch .btn-submit:hover {background:hsl(11,72%,44%);color:#fff;}
#get-in-touch .info-list {list-style:none;padding:0;margin:0;}
#get-in-touch .info-list li {margin-bottom:18px;display:flex;align-items:flex-start;gap:12px;}
#get-in-touch .info-icon {background:hsl(161,58%,31%);color:#fff;border-radius:12px;width:40px;height:40px;flex-shrink:0;display:flex;align-items:center;justify-content:center;font-size:18px;}
#get-in-touch .info-list a {color:hsl(311,45%,15%);text-decoration:none;font-weight:600;}
#get-in-touch .info-list a:hover {color:hsl(11,72%,54%);text-decoration:underline;}
#get-in-touch .hours-box {background:hsl(161,58%,31%);color:#fff;border-radius:16px;padding:18px 20px;margin-top:16px;}
#get-in-touch .hours-box p {margin:0;color:#fff;}
#get-in-touch .find-us {margin-top:16px;font-size:0.98rem;color:#333;}
#get-in-touch .find-us a {color:hsl(11,72%,54%);text-decoration:none;font-weight:600;}
#get-in-touch .find-us a:hover {text-decoration:underline;}

#notice {
  background-color: #f8f9fa;
  padding: 48px 0;
  font-family: 'Crimson Text', serif;
  color: #222;
}
#notice .disclaimer-card {
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 20px;
  padding: 32px;
}
#notice h2 {
  font-family: 'Work Sans', sans-serif;
  color: hsl(161, 58%, 31%);
  font-weight: 600;
  margin-bottom: 16px;
}
#notice .bi-info-circle-fill {
  color: hsl(161, 58%, 31%);
  font-size: 1.8rem;
  margin-right: 12px;
}
#notice p {
  font-size: 1.15rem;
  line-height: 1.7;
  color: #333;
  margin-bottom: 0;
}

footer {
    background: hsl(311, 45%, 15%);
    color: #f5f5f5;
    font-family: 'Crimson Text', serif;
    border-radius: 24px 24px 0 0;
    padding: 48px 0 24px;
    margin-top: 48px;
  }
  footer h5, footer h6 {
    font-family: 'Work Sans', sans-serif;
    color: #ffffff;
    margin-bottom: 16px;
  }
  footer p, footer a {
    color: #f0f0f0;
  }
  footer a {
    text-decoration: none;
  }
  footer a:hover {
    color: hsl(11, 72%, 54%);
  }
  footer ul {
    list-style: none;
    padding-left: 0;
  }
  footer ul li {
    margin-bottom: 8px;
  }
  .footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: hsl(161, 58%, 31%);
    color: #ffffff;
    margin-right: 10px;
    font-size: 1.1rem;
    transition: background 0.3s ease, transform 0.3s ease;
  }
  .footer-social a:hover {
    background: hsl(11, 72%, 54%);
    color: #ffffff;
    transform: translateY(-3px);
  }
  .footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.15);
    margin-top: 24px;
    padding-top: 16px;
    font-size: 0.9rem;
    color: #d5d5d5;
  }
  .footer-bottom a {
    color: #d5d5d5;
  }
  .footer-bottom a:hover {
    color: hsl(11, 72%, 54%);
  }

  #privacyNotice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1050;
    background: #ffffff;
    color: #222222;
    border-radius: 24px 24px 0 0;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
    padding: 20px;
    max-height: 60vh;
    overflow-y: auto;
    font-family: 'Crimson Text', serif;
  }
  #privacyNotice h5 {
    font-family: 'Work Sans', sans-serif;
    color: hsl(311, 45%, 15%);
    font-size: 1.1rem;
    margin-bottom: 8px;
  }
  #privacyNotice p {
    font-size: 0.9rem;
    margin-bottom: 10px;
  }
  #privacyNotice ul {
    font-size: 0.85rem;
    padding-left: 18px;
    margin-bottom: 12px;
  }
  .cookie-btn {
    font-family: 'Work Sans', sans-serif;
    border-radius: 16px;
    padding: 10px 18px;
    font-weight: 600;
    border: none;
    transition: all 0.3s ease;
    flex: 1;
  }
  .btn-accept-all {
    background: hsl(161, 58%, 31%);
    color: #ffffff;
  }
  .btn-accept-all:hover {
    background: hsl(161, 58%, 24%);
    color: #ffffff;
  }
  .btn-reject-optional {
    background: hsl(11, 72%, 54%);
    color: #ffffff;
  }
  .btn-reject-optional:hover {
    background: hsl(11, 72%, 44%);
    color: #ffffff;
  }
  .cookie-manage-link {
    font-size: 0.85rem;
    color: hsl(311, 45%, 15%);
    text-decoration: underline;
  }
  .cookie-manage-link:hover {
    color: hsl(11, 72%, 54%);
  }

#services-body {
  font-family: 'Crimson Text', serif;
  background: #f8f9fa;
  color: #222;
  padding: 52px 0;
}
#services-body h1, #services-body h2, #services-body h3, #services-body h4 {
  font-family: 'Work Sans', sans-serif;
}
#services-body .page-header {
  margin-bottom: 48px;
}
#services-body .page-header h1 {
  color: hsl(311, 45%, 15%);
  font-weight: 700;
}
#services-body .page-header p {
  font-size: 1.15rem;
  max-width: 760px;
}
#services-body .badge-info {
  background: hsl(161, 58%, 31%);
  color: #fff;
  border-radius: 16px;
  padding: 6px 16px;
  font-family: 'Work Sans', sans-serif;
  font-size: 0.9rem;
  display: inline-block;
  margin-bottom: 16px;
}
#services-body .service-card {
  border: 1px solid #e0e0e0;
  border-radius: 20px;
  background: #fff;
  padding: 28px;
  height: 100%;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
#services-body .service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.12);
  border-color: hsl(161, 58%, 31%);
}
#services-body .service-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: hsl(161, 58%, 31%);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 16px;
  flex-shrink: 0;
}
#services-body .service-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
}
#services-body .service-card h3 {
  color: hsl(311, 45%, 15%);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 10px;
}
#services-body .service-card p.desc {
  font-size: 1.02rem;
  color: #333;
  margin-bottom: 14px;
}
#services-body .price-tag {
  display: inline-block;
  background: hsl(11, 72%, 54%);
  color: #fff;
  font-family: 'Work Sans', sans-serif;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 14px;
  font-size: 1.05rem;
}
#services-body .process-section {
  background: hsl(311, 45%, 15%);
  color: #f8f9fa;
  border-radius: 24px;
  padding: 40px;
  margin-top: 52px;
}
#services-body .process-section h2 {
  color: #fff;
  margin-bottom: 24px;
}
#services-body .step-box {
  background: rgba(255,255,255,0.07);
  border-radius: 16px;
  padding: 20px;
  height: 100%;
}
#services-body .step-number {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: hsl(11, 72%, 54%);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-family: 'Work Sans', sans-serif;
  margin-bottom: 12px;
}
#services-body .step-box h4 {
  color: #fff;
  font-size: 1.05rem;
  margin-bottom: 8px;
}
#services-body .step-box p {
  color: #e4d9e6;
  font-size: 0.98rem;
  margin-bottom: 0;
}
#services-body .cta-strip {
  margin-top: 52px;
  border-radius: 24px;
  background: hsl(161, 58%, 31%);
  color: #fff;
  padding: 40px;
  text-align: center;
}
#services-body .cta-strip h2 {
  color: #fff;
  margin-bottom: 12px;
}
#services-body .cta-strip p {
  color: #e6f3ec;
  font-size: 1.1rem;
  margin-bottom: 20px;
}
#services-body .cta-strip .btn-cta {
  background: hsl(11, 72%, 54%);
  color: #fff;
  border: none;
  border-radius: 16px;
  padding: 12px 32px;
  font-family: 'Work Sans', sans-serif;
  font-weight: 600;
  font-size: 1.05rem;
  text-decoration: none;
  display: inline-block;
}
#services-body .btn-cta:hover {
  background: hsl(11, 72%, 44%);
  color: #fff;
}
@media (max-width: 767px) {
  #services-body .process-section, #services-body .cta-strip {
    padding: 24px;
  }
}

#contact-content {
  font-family: 'Crimson Text', serif;
  background-color: #f8f9fa;
  color: #222;
  padding: 52px 0;
}
#contact-content h1, #contact-content h2, #contact-content h3 {
  font-family: 'Work Sans', sans-serif;
}
#contact-content .page-header {
  margin-bottom: 40px;
}
#contact-content .page-header h1 {
  color: hsl(311, 45%, 15%);
  font-weight: 700;
}
#contact-content .page-header p {
  font-size: 1.15rem;
  max-width: 700px;
}
#contact-content .info-strip {
  background-color: hsl(161, 58%, 31%);
  color: #fff;
  border-radius: 20px;
  padding: 20px 24px;
  margin-bottom: 40px;
}
#contact-content .info-strip .strip-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.05rem;
  margin-bottom: 8px;
}
#contact-content .info-strip .strip-item:last-child {
  margin-bottom: 0;
}
#contact-content .form-card {
  background-color: #fff;
  border-radius: 20px;
  padding: 32px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
  height: 100%;
}
#contact-content .form-card h2 {
  color: hsl(311, 45%, 15%);
  margin-bottom: 6px;
}
#contact-content .form-card .sub {
  margin-bottom: 24px;
  color: #444;
}
#contact-content .form-label {
  font-weight: 600;
  color: hsl(311, 45%, 15%);
}
#contact-content .form-control {
  border-radius: 12px;
  border: 1px solid #ccc;
  padding: 10px 14px;
  font-family: 'Crimson Text', serif;
  font-size: 1.05rem;
}
#contact-content .form-control:focus {
  border-color: hsl(161, 58%, 31%);
  box-shadow: 0 0 0 0.2rem hsla(161, 58%, 31%, 0.2);
}
#contact-content .btn-submit {
  background-color: hsl(11, 72%, 54%);
  color: #fff;
  border: none;
  border-radius: 14px;
  padding: 12px 28px;
  font-family: 'Work Sans', sans-serif;
  font-weight: 600;
  font-size: 1.05rem;
}
#contact-content .btn-submit:hover {
  background-color: hsl(11, 72%, 44%);
  color: #fff;
}
#contact-content .details-card {
  background-color: hsl(311, 45%, 15%);
  color: #f8f9fa;
  border-radius: 20px;
  padding: 32px;
  margin-bottom: 24px;
}
#contact-content .details-card h3 {
  color: #fff;
  margin-bottom: 20px;
}
#contact-content .details-card p {
  margin-bottom: 12px;
  font-size: 1.05rem;
}
#contact-content .details-card a {
  color: hsl(161, 65%, 60%);
  text-decoration: none;
}
#contact-content .details-card a:hover {
  text-decoration: underline;
}
#contact-content .hours-card {
  background-color: #fff;
  border: 2px solid hsl(161, 58%, 31%);
  border-radius: 20px;
  padding: 28px;
  margin-bottom: 24px;
}
#contact-content .hours-card h3 {
  color: hsl(161, 58%, 31%);
  margin-bottom: 16px;
}
#contact-content .hours-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
#contact-content .hours-card li {
  display: flex;
  justify-content: space-between;
  padding: 6px 0;
  border-bottom: 1px solid #eee;
  font-size: 1.02rem;
}
#contact-content .hours-card li:last-child {
  border-bottom: none;
}
#contact-content .find-us {
  background-color: #fff;
  border-radius: 20px;
  padding: 24px 28px;
  border: 1px solid #ddd;
}
#contact-content .find-us h3 {
  color: hsl(311, 45%, 15%);
  margin-bottom: 10px;
}
#contact-content .find-us a.map-link {
  color: hsl(11, 72%, 54%);
  font-weight: 600;
  text-decoration: none;
}
#contact-content .find-us a.map-link:hover {
  text-decoration: underline;
}
#contact-content .final-cta {
  background-color: hsl(161, 58%, 31%);
  color: #fff;
  border-radius: 20px;
  padding: 32px;
  margin-top: 48px;
  text-align: center;
}
#contact-content .final-cta h2 {
  color: #fff;
  margin-bottom: 12px;
}
#contact-content .final-cta a.btn {
  background-color: hsl(11, 72%, 54%);
  color: #fff;
  border-radius: 14px;
  padding: 12px 30px;
  font-family: 'Work Sans', sans-serif;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  margin-top: 8px;
}
#contact-content .final-cta a.btn:hover {
  background-color: hsl(11, 72%, 44%);
}
@media (max-width: 767px) {
  #contact-content .info-strip .strip-item {
    font-size: 0.95rem;
  }
}

#faq-body {
  font-family: 'Crimson Text', serif;
  color: #222;
  background-color: #f8f9fa;
  padding: 52px 0;
}
#faq-body h1, #faq-body h2, #faq-body h3 {
  font-family: 'Work Sans', sans-serif;
}
#faq-body .faq-header {
  margin-bottom: 48px;
}
#faq-body .faq-header h1 {
  color: hsl(311, 45%, 15%);
  font-weight: 700;
}
#faq-body .faq-header p {
  font-size: 1.15rem;
  color: #333;
  max-width: 760px;
}
#faq-body .accordion-item {
  border: 1px solid #e0e0e0;
  border-radius: 16px !important;
  margin-bottom: 16px;
  overflow: hidden;
}
#faq-body .accordion-button {
  font-family: 'Work Sans', sans-serif;
  font-weight: 600;
  color: hsl(311, 45%, 15%);
  background-color: #fff;
  border-radius: 16px;
}
#faq-body .accordion-button:not(.collapsed) {
  color: #fff;
  background-color: hsl(161, 58%, 31%);
}
#faq-body .accordion-button:focus {
  box-shadow: none;
  border-color: hsl(161, 58%, 31%);
}
#faq-body .accordion-button::after {
  filter: none;
}
#faq-body .accordion-body {
  background-color: #fff;
  color: #333;
  font-size: 1.05rem;
  line-height: 1.6;
}
#faq-body .info-table {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #e0e0e0;
}
#faq-body .info-table th {
  background-color: hsl(311, 45%, 15%);
  color: #fff;
  font-family: 'Work Sans', sans-serif;
  font-weight: 600;
}
#faq-body .info-table td {
  background-color: #fff;
  color: #222;
}
#faq-body .cta-box {
  background-color: hsl(161, 58%, 31%);
  border-radius: 20px;
  padding: 40px;
  color: #fff;
  margin-top: 56px;
}
#faq-body .cta-box h2 {
  color: #fff;
  font-weight: 700;
}
#faq-body .cta-box p {
  color: #f0f0f0;
  font-size: 1.1rem;
}
#faq-body .btn-accent {
  background-color: hsl(11, 72%, 54%);
  color: #fff;
  border: none;
  border-radius: 16px;
  padding: 12px 32px;
  font-family: 'Work Sans', sans-serif;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
}
#faq-body .btn-accent:hover {
  background-color: hsl(11, 72%, 44%);
  color: #fff;
}
#faq-body .section-divider {
  margin: 48px 0;
}



  

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

  .thankyou-card {
    background: #ffffff;
    border-radius: 1.25rem;
    box-shadow: 0 1rem 3rem rgba(21, 8, 20, 0.12);
    padding: 3rem 2.5rem;
    max-width: 640px;
    width: 100%;
    text-align: center;
    position: relative;
    overflow: hidden;
  }

  .thankyou-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
  }

  .success-icon-wrap {
    width: 100px;
    height: 100px;
    margin: 0 auto 1.75rem;
    border-radius: 50%;
    background: hsl(161, 58%, 94%);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: pop-in 0.5s ease-out;
  }

  .success-icon-wrap svg {
    width: 52px;
    height: 52px;
    stroke: var(--primary);
  }

  @keyframes pop-in {
    0% { transform: scale(0.5); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
  }

  .thankyou-heading {
    font-family: 'Work Sans', sans-serif;
    font-weight: 800;
    color: var(--secondary);
    font-size: clamp(1.6rem, 4vw, 2.4rem);
    margin-bottom: 1rem;
  }

  .thankyou-lead {
    font-size: 1.2rem;
    color: hsl(311, 20%, 30%);
    margin-bottom: 1.75rem;
    line-height: 1.7;
  }

  .thankyou-details {
    background: hsl(311, 45%, 98%);
    border: 1px solid hsl(311, 30%, 90%);
    border-radius: 0.85rem;
    padding: 1.5rem;
    margin-bottom: 2rem;
    text-align: left;
  }

  .thankyou-details p {
    font-size: 1.05rem;
    color: hsl(311, 25%, 20%);
    margin-bottom: 0.6rem;
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
  }

  .thankyou-details p:last-child {
    margin-bottom: 0;
  }

  .thankyou-details svg {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    margin-top: 0.2rem;
    stroke: var(--accent);
  }

  .btn-primary-custom {
    font-family: 'Work Sans', sans-serif;
    font-weight: 600;
    background-color: var(--primary);
    border: none;
    color: #fff;
    padding: 0.75rem 2.25rem;
    border-radius: 0.6rem;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 14px hsla(161, 58%, 31%, 0.35);
  }

  .btn-primary-custom:hover {
    background-color: hsl(161, 58%, 25%);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px hsla(161, 58%, 31%, 0.45);
  }

  .thankyou-note {
    margin-top: 1.5rem;
    font-size: 0.95rem;
    color: hsl(311, 15%, 45%);
    font-style: italic;
  }

  @media (max-width: 576px) {
    .thankyou-card {
      padding: 2.25rem 1.5rem;
    }
  }

#about-section {
  font-family: 'Crimson Text', serif;
  color: #222;
  background: #ffffff;
  padding: 52px 0;
}
#about-section h1,
#about-section h2,
#about-section h3 {
  font-family: 'Work Sans', sans-serif;
}
#about-section .about-hero {
  background: hsl(161, 58%, 31%);
  color: #ffffff;
  border-radius: 20px;
  padding: 40px;
  margin-bottom: 52px;
}
#about-section .about-hero h1 {
  color: #ffffff;
}
#about-section .about-hero p {
  color: #f1f1f1;
}
#about-section .story-img {
  aspect-ratio: 3 / 2;
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 20px;
}
#about-section .content-block {
  margin-bottom: 52px;
}
#about-section .values-card {
  background: #f5f5f5;
  border-radius: 18px;
  padding: 24px;
  height: 100%;
  border-left: 5px solid hsl(11, 72%, 54%);
}
#about-section .values-card h3 {
  color: hsl(161, 58%, 31%);
  font-size: 1.15rem;
}
#about-section .team-card {
  background: hsl(311, 45%, 15%);
  color: #ffffff;
  border-radius: 18px;
  padding: 24px;
  height: 100%;
}
#about-section .team-card h3 {
  color: #ffffff;
  margin-bottom: 4px;
}
#about-section .team-card .role {
  color: hsl(11, 72%, 54%);
  font-weight: 600;
  margin-bottom: 10px;
  display: block;
}
#about-section .qa-block {
  background: #f5f5f5;
  border-radius: 18px;
  padding: 28px;
  margin-bottom: 20px;
}
#about-section .qa-block h3 {
  color: hsl(311, 45%, 15%);
  font-size: 1.1rem;
}
#about-section .cta-box {
  background: hsl(11, 72%, 54%);
  color: #ffffff;
  border-radius: 20px;
  padding: 32px;
  text-align: center;
  margin-top: 52px;
}
#about-section .cta-box h2 {
  color: #ffffff;
}
#about-section .cta-box .btn {
  background: #ffffff;
  color: hsl(11, 72%, 54%);
  font-family: 'Work Sans', sans-serif;
  font-weight: 600;
  border-radius: 14px;
  padding: 12px 30px;
  border: none;
}
#about-section .cta-box .btn:hover {
  background: hsl(311, 45%, 15%);
  color: #ffffff;
}
#about-section .stat-row {
  background: #f5f5f5;
  border-radius: 18px;
  padding: 20px;
  text-align: center;
}
#about-section .stat-row .num {
  font-family: 'Work Sans', sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: hsl(161, 58%, 31%);
  display: block;
}
