:root {
  --primary: hsl(4, 44%, 39%);
  --secondary: hsl(154, 43%, 24%);
  --accent: hsl(214, 70%, 62%);
}

body {
  font-family: 'Source Sans Pro', sans-serif;
  color: #222;
  background-color: #ffffff;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
}
.navbar {
  background-color: #ffffff;
  border-bottom: 1px solid #eee;
}
.navbar-brand {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 10px;
}
.navbar-brand img {
  border-radius: 12px;
}
.nav-link {
  font-family: 'Source Sans Pro', sans-serif;
  font-weight: 600;
  color: #222 !important;
  padding: 8px 16px !important;
}
.nav-link:hover {
  color: var(--primary) !important;
}
.navbar-toggler {
  border-color: var(--primary);
}

footer {
  background: hsl(154, 43%, 24%);
  color: #f8f9fa;
  padding: 48px 0 24px;
  font-family: 'Source Sans Pro', sans-serif;
}
footer h5 {
  font-family: 'Montserrat', sans-serif;
  color: #ffffff;
  margin-bottom: 16px;
}
footer p, footer a {
  color: #f1f1f1;
}
footer a {
  text-decoration: none;
}
footer a:hover {
  color: hsl(214, 70%, 62%);
  text-decoration: underline;
}
.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: hsl(4, 44%, 39%);
  color: #ffffff;
  border-radius: 16px;
  margin-right: 10px;
  font-size: 1.1rem;
  transition: background 0.3s ease;
}
.footer-social a:hover {
  background: hsl(214, 70%, 62%);
  color: #ffffff;
}
.footer-divider {
  border-top: 1px solid rgba(255,255,255,0.2);
  margin: 24px 0 16px;
}
.footer-bottom {
  font-size: 0.9rem;
  color: #e0e0e0;
}
#consentBar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2000;
  background: #ffffff;
  border-top: 3px solid hsl(4, 44%, 39%);
  padding: 16px 0;
  max-height: 60vh;
  overflow-y: auto;
  box-shadow: 0 -4px 12px rgba(0,0,0,0.15);
  border-radius: 20px 20px 0 0;
}
#consentBar h6 {
  font-family: 'Montserrat', sans-serif;
  color: hsl(154, 43%, 24%);
  margin-bottom: 8px;
  font-weight: 700;
}
#consentBar p, #consentBar li {
  color: #333333;
  font-size: 0.9rem;
  margin-bottom: 6px;
}
#consentBar ul {
  padding-left: 18px;
  margin-bottom: 12px;
}
.consent-btn {
  border-radius: 16px;
  padding: 10px 20px;
  font-weight: 600;
  font-size: 0.95rem;
  border: none;
  width: 100%;
  transition: all 0.3s ease;
}
.btn-accept-all {
  background: hsl(154, 43%, 24%);
  color: #ffffff;
}
.btn-accept-all:hover {
  background: hsl(214, 70%, 62%);
  color: #ffffff;
}
.btn-reject {
  background: hsl(4, 44%, 39%);
  color: #ffffff;
}
.btn-reject:hover {
  background: hsl(214, 70%, 62%);
  color: #ffffff;
}
.consent-manage {
  color: hsl(214, 70%, 62%);
  font-size: 0.85rem;
  text-decoration: underline;
}
.consent-manage:hover {
  color: hsl(4, 44%, 39%);
}

#about-content {
  font-family: 'Source Sans Pro', sans-serif;
  color: #262626;
  background-color: #ffffff;
  padding: 52px 0;
}
#about-content h1, #about-content h2, #about-content h3 {
  font-family: 'Montserrat', sans-serif;
}
#about-content .about-hero {
  background-color: hsl(4, 44%, 39%);
  color: #ffffff;
  border-radius: 20px;
  padding: 40px;
  margin-bottom: 48px;
}
#about-content .about-hero h1 {
  color: #ffffff;
  font-size: 2rem;
  margin-bottom: 12px;
}
#about-content .about-hero p {
  color: #f5f5f5;
  margin-bottom: 0;
}
#about-content img {
  aspect-ratio: 3 / 2;
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 18px;
}
#about-content .section-block {
  margin-bottom: 48px;
}
#about-content h2 {
  color: hsl(4, 44%, 39%);
  font-size: 1.6rem;
  margin-bottom: 16px;
}
#about-content .value-card {
  background-color: #f8f9fa;
  border-radius: 18px;
  padding: 22px;
  height: 100%;
  border-left: 4px solid hsl(154, 43%, 24%);
}
#about-content .value-card h3 {
  font-size: 1.15rem;
  color: hsl(154, 43%, 24%);
  margin-bottom: 8px;
}
#about-content .steps-list {
  counter-reset: step-counter;
  list-style: none;
  padding-left: 0;
}
#about-content .steps-list li {
  counter-increment: step-counter;
  position: relative;
  padding-left: 52px;
  margin-bottom: 20px;
}
#about-content .steps-list li::before {
  content: counter(step-counter);
  position: absolute;
  left: 0;
  top: 0;
  width: 36px;
  height: 36px;
  background-color: hsl(214, 70%, 62%);
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
}
#about-content .team-card {
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 18px;
  padding: 24px;
  height: 100%;
}
#about-content .team-card h3 {
  color: hsl(4, 44%, 39%);
  font-size: 1.2rem;
  margin-bottom: 4px;
}
#about-content .team-card .role {
  color: hsl(154, 43%, 24%);
  font-weight: 600;
  margin-bottom: 10px;
  display: block;
}
#about-content .stat-strip {
  background-color: #f8f9fa;
  border-radius: 18px;
  padding: 28px;
  margin-bottom: 48px;
}
#about-content .stat-strip .stat-num {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: hsl(4, 44%, 39%);
}
#about-content .cta-box {
  background-color: hsl(154, 43%, 24%);
  color: #ffffff;
  border-radius: 20px;
  padding: 32px;
  text-align: center;
}
#about-content .cta-box h2 {
  color: #ffffff;
}
#about-content .cta-box p {
  color: #eaf2ec;
}
#about-content .btn-cta {
  background-color: hsl(214, 70%, 62%);
  color: #ffffff;
  border: none;
  border-radius: 12px;
  padding: 12px 28px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  margin-top: 12px;
}
#about-content .btn-cta:hover {
  background-color: hsl(214, 70%, 52%);
  color: #ffffff;
}
@media (max-width: 767px) {
  #about-content .about-hero {
    padding: 28px;
  }
}



.hero-section {
  background-color: #f8f9fa;
  color: #222;
  padding: 52px 0;
  font-family: 'Source Sans Pro', sans-serif;
}

.hero-section h1 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  color: var(--primary);
  font-size: 2.1rem;
}

.hero-section h2 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  color: var(--secondary);
  font-size: 1.3rem;
  margin-bottom: 18px;
}

.hero-section p.lead-text {
  font-size: 1.05rem;
  color: #333;
  max-width: 560px;
}

.info-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 24px 0;
}

.info-strip .info-item {
  background-color: #ffffff;
  border: 1px solid #e2e2e2;
  border-radius: 16px;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
  color: #222;
}

.info-strip .info-item i {
  color: var(--accent);
  font-size: 1.1rem;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 20px;
}

.btn-hero-primary {
  background-color: var(--primary);
  color: #fff;
  border: 2px solid var(--primary);
  border-radius: 18px;
  padding: 12px 28px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.25s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-hero-primary:hover {
  background-color: #fff;
  color: var(--primary);
  border-color: var(--primary);
}

.btn-hero-secondary {
  background-color: #fff;
  color: var(--secondary);
  border: 2px solid var(--secondary);
  border-radius: 18px;
  padding: 12px 28px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.25s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-hero-secondary:hover {
  background-color: var(--secondary);
  color: #fff;
}

.hero-img {
  aspect-ratio: 3 / 2;
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 20px;
}

@media (max-width: 767px) {
  .hero-section h1 {
    font-size: 1.6rem;
  }
  .hero-section h2 {
    font-size: 1.1rem;
  }
  .hero-img {
    margin-top: 28px;
  }
}

#about {
  padding: 52px 0;
  background: #f8f9fa;
  color: #222;
  font-family: 'Source Sans Pro', sans-serif;
}
#about h2, #about h3 {
  font-family: 'Montserrat', sans-serif;
}
#about h2 {
  color: hsl(4, 44%, 39%);
  margin-bottom: 20px;
}
#about .lead-text {
  font-size: 1.05rem;
  line-height: 1.7;
}
#about img {
  aspect-ratio: 3 / 2;
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 20px;
  margin-bottom: 24px;
}
#about .fact-strip {
  background: hsl(154, 43%, 24%);
  color: #fff;
  border-radius: 18px;
  padding: 20px;
  text-align: center;
}
#about .fact-strip .fact-num {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.6rem;
  display: block;
}
#about .team-card {
  background: #fff;
  border: 1px solid #e2e2e2;
  border-radius: 18px;
  padding: 22px;
  height: 100%;
}
#about .team-card h4 {
  font-family: 'Montserrat', sans-serif;
  color: hsl(4, 44%, 39%);
  margin-bottom: 4px;
  font-size: 1.1rem;
}
#about .team-card .role {
  color: hsl(214, 70%, 62%);
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 10px;
  display: block;
}
#about .team-card p {
  margin: 0;
  font-size: 0.95rem;
  color: #333;
}

.services-section {
  padding: 52px 0;
  background-color: #f8f9fa;
}
.services-section h2 {
  font-family: 'Montserrat', sans-serif;
  color: hsl(4, 44%, 39%);
  font-weight: 700;
}
.services-section .lead-text {
  font-family: 'Source Sans Pro', sans-serif;
  color: #333;
  max-width: 700px;
}
.service-card {
  background: #ffffff;
  border: 1px solid #e5e5e5;
  border-radius: 20px;
  display: flex;
  align-items: center;
  padding: 22px;
  gap: 20px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  height: 100%;
}
.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 24px rgba(0,0,0,0.1);
  border-color: hsl(214, 70%, 62%);
}
.service-icon {
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background-color: hsl(154, 43%, 24%);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
}
.service-content h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 6px;
}
.service-content p {
  font-family: 'Source Sans Pro', sans-serif;
  color: #444;
  font-size: 0.95rem;
  margin-bottom: 10px;
}
.service-price {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  color: #ffffff;
  background-color: hsl(4, 44%, 39%);
  padding: 4px 14px;
  border-radius: 12px;
  font-size: 0.9rem;
}
@media (max-width: 576px) {
  .service-card {
    flex-direction: column;
    text-align: center;
  }
}

#questions {
  background-color: #f8f9fa;
  padding: 52px 0;
  font-family: 'Source Sans Pro', sans-serif;
  color: #222;
}
#questions h2 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  color: hsl(4, 44%, 39%);
}
#questions p.lead-text {
  color: #333;
  max-width: 720px;
}
#questions .faq-accordion .accordion-item {
  border: 1px solid #e0ddd8;
  border-radius: 16px !important;
  overflow: hidden;
  margin-bottom: 14px;
  background-color: #fff;
}
#questions .faq-accordion .accordion-button {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  color: hsl(154, 43%, 24%);
  background-color: #fff;
  border-radius: 16px;
}
#questions .faq-accordion .accordion-button:not(.collapsed) {
  background-color: hsl(154, 43%, 24%);
  color: #fff;
  box-shadow: none;
}
#questions .faq-accordion .accordion-button:focus {
  box-shadow: 0 0 0 0.2rem rgba(214, 70, 62, 0.15);
}
#questions .faq-accordion .accordion-button::after {
  filter: none;
}
#questions .faq-accordion .accordion-body {
  background-color: #fff;
  color: #333;
  line-height: 1.65;
}
#questions .faq-accordion .accordion-button:not(.collapsed)::after {
  filter: invert(1) brightness(2);
}

#limited .offer-section {background:#f8f9fa;padding:48px 0;font-family:'Source Sans Pro',sans-serif;color:#222;}
#limited .offer-card {background:#fff;border:1px solid #e2e2e2;border-radius:20px;padding:40px;box-shadow:0 2px 10px rgba(0,0,0,0.05);}
#limited .offer-heading {font-family:'Montserrat',sans-serif;font-weight:700;color:hsl(4, 44%, 39%);font-size:1.8rem;margin-bottom:18px;}
#limited .offer-text {font-size:1.05rem;line-height:1.7;color:#333;margin-bottom:24px;}
#limited .date-box {background:hsl(154, 43%, 24%);color:#fff;border-radius:16px;padding:18px 24px;display:inline-flex;align-items:center;gap:12px;font-family:'Montserrat',sans-serif;font-weight:600;font-size:1.15rem;margin-bottom:28px;}
#limited .date-box i {font-size:1.6rem;}
#limited .offer-list {list-style:none;padding-left:0;margin-bottom:28px;}
#limited .offer-list li {padding:8px 0;display:flex;align-items:flex-start;gap:10px;font-size:1rem;color:#333;}
#limited .offer-list li i {color:hsl(214, 70%, 62%);font-size:1.2rem;margin-top:2px;}
#limited .offer-cta {background:hsl(4, 44%, 39%);color:#fff;border:none;border-radius:16px;padding:14px 34px;font-family:'Montserrat',sans-serif;font-weight:600;font-size:1.05rem;text-decoration:none;display:inline-block;transition:background 0.2s ease;}
#limited .offer-cta:hover {background:hsl(4, 44%, 30%);color:#fff;}
#limited .offer-badge {display:inline-block;background:hsl(214, 70%, 62%);color:#fff;font-family:'Montserrat',sans-serif;font-weight:700;font-size:0.95rem;padding:6px 16px;border-radius:12px;margin-bottom:16px;}
@media (max-width:576px){
  #limited .offer-card {padding:24px;}
  #limited .offer-heading {font-size:1.4rem;}
  #limited .date-box {font-size:1rem;padding:14px 18px;}
}

#feedback {
  padding: 52px 0;
  background: #f8f9fa;
  font-family: 'Source Sans Pro', sans-serif;
  color: #222;
}
#feedback h2 {
  font-family: 'Montserrat', sans-serif;
  color: hsl(4, 44%, 39%);
  font-weight: 700;
  margin-bottom: 12px;
}
#feedback .lead-text {
  color: #333;
  max-width: 680px;
  margin: 0 auto 40px;
}
#feedback .review-card {
  background: #fff;
  border-radius: 20px;
  padding: 26px;
  height: 100%;
  border: 1px solid #e6e6e6;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  display: flex;
  flex-direction: column;
}
#feedback .review-stars {
  color: hsl(4, 44%, 39%);
  font-size: 1rem;
  margin-bottom: 10px;
  letter-spacing: 2px;
}
#feedback .review-stars .empty {
  color: #ccc;
}
#feedback .review-text {
  color: #333;
  flex-grow: 1;
  margin-bottom: 16px;
}
#feedback .review-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid #eee;
  padding-top: 12px;
}
#feedback .review-name {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  color: hsl(154, 43%, 24%);
  font-size: 0.98rem;
  margin: 0;
}
#feedback .review-location {
  font-size: 0.85rem;
  color: #666;
  margin: 0;
}
#feedback .review-card.featured {
  background: hsl(154, 43%, 24%);
  color: #fff;
  border: none;
}
#feedback .review-card.featured .review-text {
  color: #f2f2f2;
}
#feedback .review-card.featured .review-name {
  color: #fff;
}
#feedback .review-card.featured .review-location {
  color: #d9e6df;
}
#feedback .review-card.featured .review-stars {
  color: hsl(214, 70%, 62%);
}
#feedback .review-card.compact {
  padding: 20px;
}
#feedback .badge-service {
  display: inline-block;
  background: hsl(214, 70%, 62%);
  color: #fff;
  font-size: 0.75rem;
  padding: 3px 10px;
  border-radius: 12px;
  margin-bottom: 10px;
  font-family: 'Montserrat', sans-serif;
}
@media (max-width: 767px) {
  #feedback .review-card { margin-bottom: 4px; }
}

#contacts .contacts-section {
  background-color: #f8f9fa;
  padding: 52px 0;
  font-family: 'Source Sans Pro', sans-serif;
  color: #222;
}
#contacts .contacts-section h2, #contacts .contacts-section h3 {
  font-family: 'Montserrat', sans-serif;
  color: hsl(4, 44%, 39%);
}
#contacts .contact-card {
  background-color: #fff;
  border-radius: 20px;
  padding: 32px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
  height: 100%;
}
#contacts .contacts-section .form-control {
  border-radius: 16px;
  border: 1px solid #ccc;
  padding: 10px 16px;
}
#contacts .contacts-section .form-control:focus {
  border-color: hsl(214, 70%, 62%);
  box-shadow: 0 0 0 0.2rem hsla(214, 70%, 62%, 0.25);
}
#contacts .contacts-section .btn-submit {
  background-color: hsl(154, 43%, 24%);
  color: #fff;
  border-radius: 16px;
  padding: 12px 28px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  border: none;
}
#contacts .contacts-section .btn-submit:hover {
  background-color: hsl(154, 43%, 18%);
  color: #fff;
}
#contacts .info-item {
  margin-bottom: 20px;
}
#contacts .info-item strong {
  display: block;
  font-family: 'Montserrat', sans-serif;
  color: hsl(154, 43%, 24%);
  margin-bottom: 4px;
}
#contacts .info-item a {
  color: hsl(4, 44%, 39%);
  text-decoration: none;
}
#contacts .info-item a:hover {
  text-decoration: underline;
  color: hsl(4, 44%, 30%);
}
#contacts .map-link {
  display: inline-block;
  margin-top: 6px;
  color: hsl(214, 70%, 62%);
  font-weight: 600;
  text-decoration: none;
}
#contacts .map-link:hover {
  text-decoration: underline;
}
#contacts .hours-table td {
  padding: 2px 8px 2px 0;
  font-size: 0.95rem;
}

#disclaimer {
  background-color: #f8f9fa;
  padding: 48px 0;
  font-family: 'Source Sans Pro', sans-serif;
  color: #333;
}
#disclaimer .disclaimer-box {
  background-color: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 20px;
  padding: 36px;
  max-width: 900px;
  margin: 0 auto;
}
#disclaimer .icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background-color: hsl(214, 70%, 62%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
#disclaimer .icon-wrap i {
  color: #fff;
  font-size: 1.6rem;
}
#disclaimer h2 {
  font-family: 'Montserrat', sans-serif;
  color: #222;
  font-weight: 700;
  margin-bottom: 12px;
}
#disclaimer p {
  color: #333;
  line-height: 1.7;
  margin-bottom: 0;
  font-size: 1.02rem;
}

.thankyou-section {
    font-family: 'Source Sans Pro', sans-serif;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem 1rem;
    background: linear-gradient(135deg, hsl(4, 44%, 97%) 0%, hsl(214, 70%, 97%) 100%);
  }

  .thankyou-section h1,
  .thankyou-section h2,
  .thankyou-section .heading-font {
    font-family: 'Montserrat', sans-serif;
  }

  .thankyou-card {
    background: #ffffff;
    border-radius: 1rem;
    padding: 3rem 2rem;
    max-width: 640px;
    width: 100%;
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.08);
    text-align: center;
  }

  .success-icon-wrapper {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 96px;
    height: 96px;
    border-radius: 50%;
    background: hsl(154, 43%, 24%);
    margin-bottom: 1.5rem;
    animation: popIn 0.5s ease-out;
  }

  .success-icon-wrapper svg {
    width: 48px;
    height: 48px;
    stroke: #ffffff;
  }

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

  .thankyou-heading {
    color: hsl(4, 44%, 39%);
    font-weight: 700;
    margin-bottom: 1rem;
    font-size: 1.85rem;
  }

  .thankyou-text {
    color: #4a4a4a;
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 0.75rem;
  }

  .thankyou-note {
    background: hsl(214, 70%, 97%);
    border-left: 4px solid hsl(214, 70%, 62%);
    border-radius: 0.5rem;
    padding: 1rem 1.25rem;
    margin: 1.75rem 0;
    text-align: left;
    color: #33475b;
    font-size: 0.98rem;
  }

  .thankyou-note strong {
    color: hsl(154, 43%, 24%);
  }

  .btn-home {
    background-color: hsl(4, 44%, 39%);
    border-color: hsl(4, 44%, 39%);
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    padding: 0.75rem 2.25rem;
    border-radius: 0.5rem;
    transition: all 0.25s ease;
  }

  .btn-home:hover,
  .btn-home:focus {
    background-color: hsl(4, 44%, 32%);
    border-color: hsl(4, 44%, 32%);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  }

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

    .thankyou-heading {
      font-size: 1.5rem;
    }

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

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

#contact-body {
  font-family: 'Source Sans Pro', sans-serif;
  color: #222;
  background: #f8f9fa;
  padding: 52px 0;
}
#contact-body h1, #contact-body h2, #contact-body h3 {
  font-family: 'Montserrat', sans-serif;
}
#contact-body .page-heading {
  color: hsl(4, 44%, 39%);
  margin-bottom: 12px;
}
#contact-body .intro-text {
  color: #333;
  max-width: 700px;
  margin-bottom: 40px;
}
#contact-body .card {
  border: none;
  border-radius: 20px;
  box-shadow: 0 3px 14px rgba(0,0,0,0.07);
}
#contact-body .form-card {
  background: #fff;
  padding: 32px;
}
#contact-body .form-label {
  font-weight: 600;
  color: #222;
}
#contact-body .form-control {
  border-radius: 14px;
  border: 1px solid #ccc;
  padding: 10px 14px;
}
#contact-body .form-control:focus {
  border-color: hsl(214, 70%, 62%);
  box-shadow: 0 0 0 0.2rem hsla(214, 70%, 62%, 0.25);
}
#contact-body .btn-submit {
  background: hsl(4, 44%, 39%);
  color: #fff;
  border: none;
  border-radius: 16px;
  padding: 12px 28px;
  font-weight: 600;
  font-family: 'Montserrat', sans-serif;
}
#contact-body .btn-submit:hover {
  background: hsl(4, 44%, 30%);
  color: #fff;
}
#contact-body .info-card {
  background: hsl(154, 43%, 24%);
  color: #f8f9fa;
  padding: 32px;
}
#contact-body .info-card h3 {
  color: #f8f9fa;
  margin-bottom: 20px;
}
#contact-body .info-card a {
  color: #fff;
  text-decoration: underline;
}
#contact-body .info-card a:hover {
  color: hsl(214, 70%, 75%);
}
#contact-body .info-item {
  margin-bottom: 18px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
#contact-body .info-item strong {
  display: block;
  margin-bottom: 4px;
  color: #fff;
}
#contact-body .hours-table {
  width: 100%;
  color: #f8f9fa;
  font-size: 0.95rem;
}
#contact-body .hours-table td {
  padding: 3px 0;
  border: none;
}
#contact-body .find-us-note {
  margin-top: 6px;
  font-size: 0.92rem;
  color: #e0e0e0;
}
#contact-body .map-link {
  color: hsl(214, 70%, 75%);
  font-weight: 600;
}
#contact-body .cta-box {
  margin-top: 48px;
  background: #fff;
  border-radius: 20px;
  padding: 28px;
  text-align: center;
  border: 1px solid #e0e0e0;
}
#contact-body .cta-box p {
  color: #333;
  margin-bottom: 16px;
}
#contact-body .cta-box a.btn {
  background: hsl(214, 70%, 62%);
  color: #fff;
  border-radius: 16px;
  padding: 12px 30px;
  font-weight: 600;
  font-family: 'Montserrat', sans-serif;
  text-decoration: none;
}
#contact-body .cta-box a.btn:hover {
  background: hsl(214, 70%, 50%);
  color: #fff;
}
#contact-body .reply-note {
  background: #fff3f0;
  border-left: 4px solid hsl(4, 44%, 39%);
  border-radius: 10px;
  padding: 14px 18px;
  margin-bottom: 32px;
  font-size: 0.95rem;
  color: #333;
}

#faq-section {
  font-family: 'Source Sans Pro', sans-serif;
  color: #222;
  background: #f8f9fa;
  padding: 52px 0;
}
#faq-section h1, #faq-section h2, #faq-section h3 {
  font-family: 'Montserrat', sans-serif;
}
#faq-section .faq-header {
  margin-bottom: 40px;
}
#faq-section .faq-header h1 {
  color: hsl(4, 44%, 39%);
  font-weight: 700;
}
#faq-section .faq-header p {
  color: #333;
  max-width: 780px;
}
#faq-section .steps-box {
  background: #fff;
  border-radius: 20px;
  padding: 32px;
  margin-bottom: 48px;
  border: 1px solid #e5e5e5;
}
#faq-section .steps-box h2 {
  color: hsl(154, 43%, 24%);
  font-weight: 700;
  margin-bottom: 20px;
  font-size: 1.5rem;
}
#faq-section .step-item {
  display: flex;
  gap: 16px;
  margin-bottom: 18px;
}
#faq-section .step-number {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: hsl(4, 44%, 39%);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-family: 'Montserrat', sans-serif;
}
#faq-section .step-text h3 {
  font-size: 1.05rem;
  color: #222;
  margin-bottom: 4px;
  font-weight: 700;
}
#faq-section .step-text p {
  margin: 0;
  color: #444;
  font-size: 0.97rem;
}
#faq-section .accordion-item {
  border: 1px solid #e0e0e0;
  border-radius: 16px !important;
  overflow: hidden;
  margin-bottom: 14px;
}
#faq-section .accordion-button {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  color: #222;
  background: #fff;
  font-size: 1.02rem;
}
#faq-section .accordion-button:not(.collapsed) {
  background: hsl(4, 44%, 39%);
  color: #fff;
  box-shadow: none;
}
#faq-section .accordion-button:focus {
  box-shadow: none;
  border-color: transparent;
}
#faq-section .accordion-button::after {
  filter: none;
}
#faq-section .accordion-body {
  background: #fff;
  color: #333;
  font-size: 0.98rem;
  line-height: 1.6;
}
#faq-section .category-label {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  color: hsl(154, 43%, 24%);
  margin: 36px 0 14px 0;
  font-size: 1.15rem;
  border-bottom: 2px solid hsl(214, 70%, 62%);
  display: inline-block;
  padding-bottom: 4px;
}
#faq-section .cta-box {
  background: hsl(154, 43%, 24%);
  border-radius: 20px;
  padding: 40px;
  text-align: center;
  margin-top: 48px;
}
#faq-section .cta-box h2 {
  color: #fff;
  font-weight: 700;
  margin-bottom: 12px;
}
#faq-section .cta-box p {
  color: #f1f1f1;
  margin-bottom: 20px;
}
#faq-section .cta-box a.btn {
  background: hsl(4, 44%, 39%);
  color: #fff;
  border-radius: 14px;
  padding: 12px 32px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
}
#faq-section .cta-box a.btn:hover {
  background: hsl(4, 44%, 30%);
  color: #fff;
}
#faq-section .info-strip {
  background: #fff;
  border-radius: 16px;
  padding: 18px 24px;
  border-left: 4px solid hsl(214, 70%, 62%);
  margin-bottom: 40px;
  font-size: 0.95rem;
  color: #333;
}
