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

:root {
  --primary: hsl(331, 47%, 38%);
  --secondary: hsl(121, 40%, 22%);
  --accent: hsl(181, 66%, 39%);
  --tp-primary: hsl(331, 47%, 38%);
  --tp-secondary: hsl(121, 40%, 22%);
  --tp-accent: hsl(181, 66%, 39%);
}

body{
  font-family: 'Raleway', sans-serif;
  color: #222;
  background-color: #fff;
}
h1, h2, h3, h4, h5, h6{
  font-family: 'Inter', sans-serif;
}
.navbar{
  background-color: #fff;
  border-bottom: 1px solid #e5e5e5;
}
.navbar-brand{
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  color: #222;
  display: flex;
  align-items: center;
  gap: 10px;
}
.navbar-brand img{
  width: 45px;
  height: 45px;
  object-fit: cover;
  border-radius: 8px;
}
.navbar-nav .nav-link{
  color: #222;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 6px;
}
.navbar-nav .nav-link:hover{
  color: var(--primary);
  background-color: #f5f5f5;
}
.navbar-toggler{
  border-color: var(--primary);
}



  

  .thankyou-section {
    font-family: 'Raleway', sans-serif;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 1rem;
    background: linear-gradient(135deg, hsl(331, 47%, 97%) 0%, hsl(181, 66%, 96%) 100%);
  }

  .thankyou-card {
    background: #ffffff;
    border-radius: 1.25rem;
    padding: 3rem 2.5rem;
    max-width: 640px;
    width: 100%;
    text-align: center;
    box-shadow: 0 1rem 3rem rgba(50, 20, 40, 0.12);
    border-top: 6px solid var(--tp-primary);
    animation: fadeInUp 0.6s ease-out;
  }

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

  .thankyou-icon-wrapper {
    width: 96px;
    height: 96px;
    margin: 0 auto 1.75rem;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--tp-accent), var(--tp-secondary));
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0.5rem 1.5rem hsla(181, 66%, 39%, 0.35);
    animation: popIn 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) 0.15s both;
  }

  @keyframes popIn {
    from { transform: scale(0); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
  }

  .thankyou-icon-wrapper svg {
    width: 48px;
    height: 48px;
    stroke: #fff;
  }

  .thankyou-heading {
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    font-size: clamp(1.6rem, 4vw, 2.25rem);
    color: var(--tp-secondary);
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
  }

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

  .thankyou-highlight {
    color: var(--tp-primary);
    font-weight: 600;
  }

  .thankyou-divider {
    width: 60px;
    height: 4px;
    background: var(--tp-accent);
    border-radius: 2px;
    margin: 1.5rem auto;
    border: none;
  }

  .thankyou-note {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: hsl(181, 66%, 96%);
    color: var(--tp-secondary);
    font-size: 0.92rem;
    font-weight: 500;
    padding: 0.6rem 1.1rem;
    border-radius: 2rem;
    margin-bottom: 2rem;
  }

  .btn-thankyou {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    background-color: var(--tp-primary);
    border: none;
    color: #fff;
    padding: 0.85rem 2.5rem;
    border-radius: 3rem;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 0.4rem 1rem hsla(331, 47%, 38%, 0.35);
  }

  .btn-thankyou:hover {
    background-color: hsl(331, 47%, 30%);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 0.6rem 1.4rem hsla(331, 47%, 38%, 0.45);
  }

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

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

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

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

footer {
  background: hsl(121, 40%, 22%);
  color: #f5f5f5;
  font-family: 'Raleway', sans-serif;
  padding: 48px 0 20px;
}
footer h3, footer h5 {
  font-family: 'Inter', sans-serif;
  color: #fff;
}
footer a {
  color: #f0f0f0;
  text-decoration: none;
}
footer a:hover {
  color: hsl(181, 66%, 39%);
}
footer .footer-divider {
  border-color: rgba(255,255,255,0.2);
  margin: 24px 0;
}
footer .social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: hsl(331, 47%, 38%);
  color: #fff;
  margin-right: 8px;
  transition: background 0.2s ease;
}
footer .social-icons a:hover {
  background: hsl(181, 66%, 39%);
  color: #fff;
}
footer .footer-hours li {
  margin-bottom: 2px;
}
#cookieBar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1055;
  background: #fff;
  color: #222;
  border-top: 3px solid hsl(331, 47%, 38%);
  box-shadow: 0 -4px 12px rgba(0,0,0,0.15);
  padding: 16px 0;
  max-height: 60vh;
  overflow-y: auto;
  font-family: 'Raleway', sans-serif;
}
#cookieBar h5 {
  font-family: 'Inter', sans-serif;
  color: hsl(121, 40%, 22%);
  font-size: 1rem;
  margin-bottom: 6px;
}
#cookieBar p, #cookieBar li {
  font-size: 0.85rem;
  margin-bottom: 4px;
}
#cookieBar .cookie-cat {
  border-radius: 8px;
  background: #f8f9fa;
  padding: 8px 10px;
  margin-bottom: 6px;
  border: 1px solid #e0e0e0;
}
.btn-cookie-accept, .btn-cookie-reject {
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  padding: 8px 16px;
  flex: 1;
  border: none;
  transition: all 0.2s ease;
}
.btn-cookie-accept {
  background: hsl(331, 47%, 38%);
  color: #fff;
}
.btn-cookie-accept:hover {
  background: hsl(181, 66%, 39%);
  color: #fff;
}
.btn-cookie-reject {
  background: hsl(121, 40%, 22%);
  color: #fff;
}
.btn-cookie-reject:hover {
  background: hsl(181, 66%, 39%);
  color: #fff;
}
.btn-cookie-manage {
  font-size: 0.85rem;
  color: hsl(331, 47%, 38%);
  text-decoration: underline;
}
.btn-cookie-manage:hover {
  color: hsl(181, 66%, 39%);
}

#contact-main {
  font-family: 'Raleway', sans-serif;
  background-color: #f8f9fa;
  color: #222;
  padding: 50px 0;
}
#contact-main h1, #contact-main h2, #contact-main h3 {
  font-family: 'Inter', sans-serif;
  color: #222;
}
#contact-main .intro-text {
  max-width: 700px;
}
#contact-main .card {
  border-radius: 8px;
  border: 1px solid #e0e0e0;
}
#contact-main .form-label {
  font-weight: 600;
  color: #222;
}
#contact-main .form-control {
  border-radius: 6px;
  border: 1px solid #ccc;
}
#contact-main .form-control:focus {
  border-color: hsl(181, 66%, 39%);
  box-shadow: 0 0 0 0.2rem hsla(181, 66%, 39%, 0.25);
}
#contact-main .btn-submit {
  background-color: hsl(331, 47%, 38%);
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 12px 30px;
  font-weight: 600;
  transition: background-color 0.2s ease-in-out;
}
#contact-main .btn-submit:hover {
  background-color: hsl(331, 47%, 30%);
  color: #fff;
}
#contact-main .info-card {
  background-color: hsl(121, 40%, 22%);
  color: #fff;
  border-radius: 8px;
  padding: 30px;
}
#contact-main .info-card h3 {
  color: #fff;
}
#contact-main .info-card a {
  color: #fff;
  text-decoration: underline;
}
#contact-main .info-card a:hover {
  color: hsl(181, 66%, 70%);
}
#contact-main .info-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 18px;
}
#contact-main .info-icon {
  width: 22px;
  flex-shrink: 0;
  font-weight: 700;
  color: hsl(181, 66%, 55%);
}
#contact-main .hours-table {
  width: 100%;
  color: #fff;
  font-size: 0.95rem;
}
#contact-main .hours-table td {
  padding: 3px 0;
  border: none;
}
#contact-main .map-link {
  color: hsl(181, 66%, 39%);
  font-weight: 600;
  text-decoration: none;
}
#contact-main .map-link:hover {
  text-decoration: underline;
}
#contact-main .cta-strip {
  background-color: hsl(331, 47%, 38%);
  color: #fff;
  border-radius: 8px;
  padding: 30px;
  margin-top: 48px;
  text-align: center;
}
#contact-main .cta-strip h2 {
  color: #fff;
}
#contact-main .cta-strip .btn {
  background-color: #fff;
  color: hsl(331, 47%, 38%);
  border-radius: 6px;
  font-weight: 600;
  padding: 10px 28px;
}
#contact-main .cta-strip .btn:hover {
  background-color: hsl(181, 66%, 39%);
  color: #fff;
}
@media (max-width: 767px) {
  #contact-main .info-card {
    margin-top: 30px;
  }
}

.hero-section{
  background:#f8f9fa;
  padding:48px 0;
  font-family:'Raleway', sans-serif;
  color:#222;
}
.hero-section h1{
  font-family:'Inter', sans-serif;
  font-weight:700;
  font-size:2.1rem;
  color:#222;
  margin-bottom:0.75rem;
}
.hero-section h2{
  font-family:'Inter', sans-serif;
  font-weight:600;
  font-size:1.2rem;
  color:hsl(331, 47%, 38%);
  margin-bottom:1rem;
}
.hero-desc{
  font-size:1rem;
  color:#333;
  margin-bottom:1.25rem;
}
.hero-points{
  list-style:none;
  padding:0;
  margin-bottom:1.5rem;
}
.hero-points li{
  display:flex;
  align-items:flex-start;
  gap:0.6rem;
  margin-bottom:0.6rem;
  font-size:0.98rem;
  color:#222;
}
.hero-points li i{
  color:hsl(181, 66%, 39%);
  font-size:1.1rem;
  margin-top:0.15rem;
}
.hours-block{
  background:#fff;
  border:1px solid #e0e0e0;
  border-radius:8px;
  padding:1rem 1.25rem;
  margin-bottom:1.5rem;
}
.hours-block p{
  margin:0 0 0.4rem 0;
  font-size:0.95rem;
  color:#222;
  display:flex;
  align-items:center;
  gap:0.5rem;
}
.hours-block strong{
  color:hsl(121, 40%, 22%);
}
.btn-primary-custom{
  background:hsl(331, 47%, 38%);
  border:1px solid hsl(331, 47%, 38%);
  color:#fff;
  border-radius:8px;
  padding:0.65rem 1.5rem;
  font-family:'Inter', sans-serif;
  font-weight:600;
  transition:all 0.25s ease;
}
.btn-primary-custom:hover{
  background:hsl(331, 47%, 30%);
  border-color:hsl(331, 47%, 30%);
  color:#fff;
}
.btn-outline-custom{
  background:transparent;
  border:1px solid hsl(121, 40%, 22%);
  color:hsl(121, 40%, 22%);
  border-radius:8px;
  padding:0.65rem 1.5rem;
  font-family:'Inter', sans-serif;
  font-weight:600;
  transition:all 0.25s ease;
}
.btn-outline-custom:hover{
  background:hsl(121, 40%, 22%);
  color:#fff;
}
.hero-img{
  aspect-ratio: 3 / 2;
  width:100%;
  height:auto;
  object-fit:cover;
  border-radius:8px;
}
@media (max-width: 767px){
  .hero-section h1{font-size:1.6rem;}
  .hero-section h2{font-size:1.05rem;}
}

#who-we-are {
  font-family: 'Raleway', sans-serif;
  color: #222;
  background-color: #ffffff;
  padding: 52px 0;
}
#who-we-are h2, #who-we-are h3 {
  font-family: 'Inter', sans-serif;
  color: hsl(331, 47%, 38%);
}
#who-we-are .lead-text {
  font-size: 1.05rem;
  line-height: 1.7;
}
#who-we-are img {
  aspect-ratio: 3 / 2;
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 8px;
}
#who-we-are .stat-box {
  background-color: hsl(121, 40%, 22%);
  color: #ffffff;
  border-radius: 8px;
  padding: 18px;
  text-align: center;
}
#who-we-are .stat-box .stat-number {
  font-family: 'Inter', sans-serif;
  font-size: 1.7rem;
  font-weight: 700;
  color: #ffffff;
}
#who-we-are .stat-box .stat-label {
  font-size: 0.85rem;
  color: #f0f0f0;
}
#who-we-are .value-card {
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 16px;
  height: 100%;
  background-color: #f8f9fa;
}
#who-we-are .value-card h4 {
  font-family: 'Inter', sans-serif;
  color: hsl(181, 66%, 39%);
  font-size: 1.1rem;
}
#who-we-are .accent-line {
  width: 60px;
  height: 3px;
  background-color: hsl(181, 66%, 39%);
  margin-bottom: 16px;
}
@media (max-width: 767px) {
  #who-we-are { padding: 40px 0; }
}

.services-section {
  padding: 52px 0;
  background-color: #f8f9fa;
  font-family: 'Raleway', sans-serif;
}
.services-section h2, .services-section h3 {
  font-family: 'Inter', sans-serif;
}
.services-section .section-title {
  color: hsl(331, 47%, 38%);
  font-weight: 700;
}
.services-section .section-sub {
  color: #333;
  max-width: 700px;
  margin: 0 auto;
}
.service-card {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background: #fff;
  border: 1px solid #e2e2e2;
  border-radius: 8px;
  padding: 22px;
  height: 100%;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  border-color: hsl(181, 66%, 39%);
}
.service-icon {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  border-radius: 8px;
  background: hsl(331, 47%, 38%);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}
.service-card:hover .service-icon {
  background: hsl(181, 66%, 39%);
}
.service-title {
  color: #222;
  font-weight: 600;
  font-size: 1.05rem;
  margin-bottom: 6px;
}
.service-desc {
  color: #444;
  font-size: 0.92rem;
  margin-bottom: 10px;
}
.service-price {
  display: inline-block;
  font-weight: 700;
  color: hsl(121, 40%, 22%);
  background: rgba(121, 40%, 22%, 0.08);
  border-radius: 6px;
  padding: 4px 10px;
  font-size: 0.9rem;
}
@media (max-width: 576px) {
  .service-card {
    flex-direction: column;
    align-items: flex-start;
  }
}

#benefits {
  padding: 52px 0;
  background-color: #f8f9fa;
  font-family: 'Raleway', sans-serif;
}
#benefits h2, #benefits h3 {
  font-family: 'Inter', sans-serif;
}
#benefits .section-title {
  color: hsl(331, 47%, 38%);
  font-weight: 700;
}
#benefits .section-sub {
  color: #333;
  max-width: 700px;
  margin: 0 auto 40px;
}
#benefits .benefit-card {
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 8px;
  padding: 28px 22px;
  height: 100%;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
#benefits .benefit-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 24px rgba(0,0,0,0.1);
  border-color: hsl(181, 66%, 39%);
}
#benefits .icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: 8px;
  background-color: hsl(331, 47%, 38%);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 16px;
}
#benefits .benefit-card:nth-child(3n+2) .icon-wrap {
  background-color: hsl(121, 40%, 22%);
}
#benefits .benefit-card:nth-child(3n) .icon-wrap {
  background-color: hsl(181, 66%, 39%);
}
#benefits h3.card-title {
  color: #1f1f1f;
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 10px;
}
#benefits p.card-text {
  color: #444;
  font-size: 0.95rem;
  margin-bottom: 0;
}

#feedback {
  font-family: 'Raleway', sans-serif;
  background: #f8f9fa;
  padding: 52px 0;
  color: #222;
}
#feedback h2 {
  font-family: 'Inter', sans-serif;
  color: hsl(331, 47%, 38%);
  font-weight: 700;
}
#feedback .lead-sub {
  color: #444;
  max-width: 700px;
}
#feedback .review-card {
  background: #fff;
  border-radius: 8px;
  padding: 22px;
  height: 100%;
  border: 1px solid #e3e3e3;
  box-shadow: 0 2px 6px rgba(0,0,0,0.04);
}
#feedback .review-card.wide {
  padding: 26px 30px;
}
#feedback .review-stars {
  color: hsl(181, 66%, 39%);
  font-size: 0.95rem;
  letter-spacing: 1px;
}
#feedback .review-stars .empty {
  color: #ccc;
}
#feedback .review-name {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  color: hsl(121, 40%, 22%);
  margin-bottom: 0;
}
#feedback .review-loc {
  font-size: 0.85rem;
  color: #777;
}
#feedback .review-text {
  margin-top: 12px;
  font-size: 0.98rem;
  line-height: 1.55;
  color: #2b2b2b;
}
#feedback .review-badge {
  display: inline-block;
  font-size: 0.72rem;
  padding: 3px 9px;
  border-radius: 6px;
  background: hsl(331, 47%, 38%);
  color: #fff;
  margin-bottom: 10px;
  font-family: 'Inter', sans-serif;
}
#feedback .review-badge.accent {
  background: hsl(181, 66%, 39%);
}
#feedback .review-badge.secondary {
  background: hsl(121, 40%, 22%);
}
#feedback .avatar-circle {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: hsl(121, 40%, 22%);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  flex-shrink: 0;
  aspect-ratio: 1/1;
  object-fit: cover;
}
#feedback .review-header-row {
  display: flex;
  align-items: center;
  gap: 12px;
}
#feedback .masonry-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (max-width: 767px) {
  #feedback .review-card.wide { padding: 20px; }
}

#deal {
  font-family: 'Raleway', sans-serif;
  background: #f8f9fa;
  color: #222;
  padding: 50px 0;
}
#deal h2, #deal h3 {
  font-family: 'Inter', sans-serif;
}
#deal .deal-box {
  background: #fff;
  border: 2px solid hsl(181, 66%, 39%);
  border-radius: 8px;
  padding: 32px;
}
#deal .deal-heading {
  color: hsl(331, 47%, 38%);
  font-weight: 700;
}
#deal .deal-date-block {
  background: hsl(121, 40%, 22%);
  color: #fff;
  border-radius: 8px;
  padding: 18px 20px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
#deal .deal-date-block .bi {
  font-size: 1.8rem;
  color: hsl(181, 66%, 39%);
}
#deal .deal-date-block strong {
  font-size: 1.3rem;
  display: block;
  color: #fff;
}
#deal .deal-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
#deal .deal-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
  color: #333;
}
#deal .deal-list li .bi {
  color: hsl(331, 47%, 38%);
  font-size: 1.2rem;
  margin-top: 2px;
}
#deal .btn-deal {
  background: hsl(331, 47%, 38%);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 12px 28px;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  transition: background 0.2s ease;
}
#deal .btn-deal:hover {
  background: hsl(181, 66%, 39%);
  color: #fff;
}
#deal .deal-badge {
  background: hsl(181, 66%, 39%);
  color: #fff;
  border-radius: 6px;
  padding: 6px 14px;
  font-weight: 600;
  font-size: 0.9rem;
  display: inline-block;
  margin-bottom: 14px;
}
@media (max-width: 576px) {
  #deal .deal-box {
    padding: 22px;
  }
}

#our-approach {
  padding: 48px 0;
  background: #f8f9fa;
  font-family: 'Raleway', sans-serif;
}
#our-approach h2 {
  font-family: 'Inter', sans-serif;
  color: #222;
  font-weight: 700;
}
#our-approach .subtitle {
  color: #444;
  font-size: 1rem;
  margin-bottom: 32px;
}
#our-approach .approach-card {
  background: #fff;
  border: 1px solid #dee2e6;
  border-radius: 8px;
  padding: 20px 18px;
  height: 100%;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
#our-approach .approach-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 14px rgba(0,0,0,0.08);
}
#our-approach .icon-wrap {
  width: 42px;
  height: 42px;
  min-width: 42px;
  border-radius: 6px;
  background: hsl(181, 66%, 39%);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}
#our-approach .approach-card p {
  margin: 0;
  color: #222;
  font-size: 0.98rem;
  line-height: 1.4;
}
#our-approach .wide-card {
  background: hsl(331, 47%, 38%);
  border: none;
}
#our-approach .wide-card p {
  color: #fff;
}
#our-approach .wide-card .icon-wrap {
  background: #fff;
  color: hsl(331, 47%, 38%);
}

#faq {
  font-family: 'Raleway', sans-serif;
  background-color: #f8f9fa;
  color: #222;
  padding: 52px 0;
}
#faq h2 {
  font-family: 'Inter', sans-serif;
  color: hsl(331, 47%, 38%);
  font-weight: 700;
}
#faq .lead-text {
  color: #333;
  max-width: 700px;
}
#faq .accordion-item {
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 12px;
}
#faq .accordion-button {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  color: #222;
  background-color: #fff;
  border-radius: 8px;
}
#faq .accordion-button:not(.collapsed) {
  color: #fff;
  background-color: hsl(331, 47%, 38%);
}
#faq .accordion-button:focus {
  box-shadow: 0 0 0 0.2rem hsla(181, 66%, 39%, 0.35);
}
#faq .accordion-button::after {
  filter: none;
}
#faq .accordion-button:not(.collapsed)::after {
  filter: brightness(0) invert(1);
}
#faq .accordion-body {
  background-color: #fff;
  color: #333;
  line-height: 1.65;
  font-size: 0.98rem;
}
#faq .badge-info {
  background-color: hsl(181, 66%, 39%);
  color: #fff;
  border-radius: 8px;
  padding: 8px 14px;
  font-size: 0.9rem;
  display: inline-block;
  margin-bottom: 24px;
}

#enquiry .enquiry-section {background:#f8f9fa;padding:52px 0;font-family:'Raleway',sans-serif;color:#222;}
#enquiry .enquiry-section h2, #enquiry .enquiry-section h3 {font-family:'Inter',sans-serif;color:#222;}
#enquiry .enquiry-card {background:#fff;border-radius:8px;padding:28px;box-shadow:0 1px 6px rgba(0,0,0,0.08);}
#enquiry .enquiry-form label {font-weight:600;color:#222;margin-bottom:4px;}
#enquiry .enquiry-form .form-control {border-radius:6px;border:1px solid #ccc;margin-bottom:16px;}
#enquiry .enquiry-form .form-control:focus {border-color:hsl(181,66%,39%);box-shadow:0 0 0 0.2rem hsla(181,66%,39%,0.2);}
#enquiry .btn-primary-custom {background:hsl(331,47%,38%);border:none;color:#fff;border-radius:6px;padding:10px 26px;font-weight:600;font-family:'Inter',sans-serif;}
#enquiry .btn-primary-custom:hover {background:hsl(331,47%,30%);color:#fff;}
#enquiry .info-block {background:#fff;border-radius:8px;padding:24px;height:100%;box-shadow:0 1px 6px rgba(0,0,0,0.08);}
#enquiry .info-block ul {list-style:none;padding-left:0;margin-bottom:0;}
#enquiry .info-block li {margin-bottom:12px;display:flex;align-items:flex-start;gap:10px;}
#enquiry .info-icon {color:hsl(181,66%,39%);font-weight:700;min-width:20px;}
#enquiry .info-block a {color:hsl(331,47%,38%);text-decoration:none;font-weight:600;}
#enquiry .info-block a:hover {text-decoration:underline;}
#enquiry .hours-table {width:100%;font-size:0.95rem;margin-top:10px;}
#enquiry .hours-table td {padding:3px 0;color:#333;}
#enquiry .map-link {display:inline-block;margin-top:8px;color:hsl(121,40%,22%);font-weight:600;text-decoration:none;border-bottom:1px dashed hsl(121,40%,22%);}
#enquiry .map-link:hover {color:hsl(181,66%,39%);border-color:hsl(181,66%,39%);}
@media (max-width:767px){
#enquiry .enquiry-card, #enquiry .info-block {padding:20px;}
}

#disclaimer {
  font-family: 'Raleway', sans-serif;
  background-color: #f8f9fa;
  padding: 48px 0;
  color: #222;
}
#disclaimer h2 {
  font-family: 'Inter', sans-serif;
  color: hsl(331, 47%, 38%);
  font-weight: 700;
  margin-bottom: 20px;
}
#disclaimer .disclaimer-card {
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 32px;
}
#disclaimer .icon-wrap {
  color: hsl(181, 66%, 39%);
  font-size: 2rem;
  flex-shrink: 0;
}
#disclaimer p {
  color: #333;
  line-height: 1.7;
  margin-bottom: 0;
  font-size: 1rem;
}

#faq-page {
  font-family: 'Raleway', sans-serif;
  color: #222;
  background: #fff;
  padding: 52px 0;
}
#faq-page h1, #faq-page h2, #faq-page h3 {
  font-family: 'Inter', sans-serif;
  color: #222;
}
#faq-page .faq-header {
  margin-bottom: 40px;
}
#faq-page .faq-header p {
  color: #444;
  max-width: 780px;
}
#faq-page .accordion-item {
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  margin-bottom: 12px;
  overflow: hidden;
}
#faq-page .accordion-button {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  color: #222;
  background: #f8f9fa;
  border-radius: 8px;
}
#faq-page .accordion-button:not(.collapsed) {
  background: hsl(331, 47%, 38%);
  color: #fff;
  box-shadow: none;
}
#faq-page .accordion-button:focus {
  box-shadow: 0 0 0 0.2rem hsla(331, 47%, 38%, 0.25);
}
#faq-page .accordion-button::after {
  filter: none;
}
#faq-page .accordion-body {
  background: #fff;
  color: #333;
  line-height: 1.6;
}
#faq-page .badge-info {
  background: hsl(181, 66%, 39%);
  color: #fff;
  border-radius: 6px;
  padding: 6px 14px;
  font-size: 0.85rem;
  display: inline-block;
  margin-bottom: 16px;
}
#faq-page .qa-extra {
  margin-top: 48px;
  background: #f5f5f5;
  border-radius: 8px;
  padding: 32px;
}
#faq-page .qa-extra h3 {
  margin-bottom: 20px;
}
#faq-page .qa-extra .qa-item {
  margin-bottom: 18px;
}
#faq-page .qa-extra .qa-item strong {
  color: hsl(331, 47%, 38%);
  display: block;
  margin-bottom: 4px;
}
#faq-page .cta-box {
  margin-top: 48px;
  background: hsl(121, 40%, 22%);
  color: #fff;
  border-radius: 8px;
  padding: 32px;
  text-align: center;
}
#faq-page .cta-box h3 {
  color: #fff;
  margin-bottom: 12px;
}
#faq-page .cta-box p {
  color: #f0f0f0;
  margin-bottom: 20px;
}
#faq-page .cta-box .btn-cta {
  background: hsl(181, 66%, 39%);
  color: #fff;
  border: none;
  padding: 10px 28px;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
}
#faq-page .cta-box .btn-cta:hover {
  background: hsl(331, 47%, 38%);
  color: #fff;
}
@media (max-width: 576px) {
  #faq-page .qa-extra, #faq-page .cta-box {
    padding: 20px;
  }
}

#about-section {
  font-family: 'Raleway', sans-serif;
  color: #2b2b2b;
  background-color: #ffffff;
  padding: 52px 0;
}
#about-section h1, #about-section h2, #about-section h3 {
  font-family: 'Inter', sans-serif;
  color: hsl(331, 47%, 38%);
}
#about-section .lead-text {
  font-size: 1.05rem;
  line-height: 1.7;
}
#about-section .section-block {
  margin-bottom: 48px;
}
#about-section .img-frame {
  aspect-ratio: 3 / 2;
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 8px;
  display: block;
}
#about-section .value-card {
  background-color: #f5f5f5;
  border-radius: 8px;
  padding: 22px;
  height: 100%;
  border-left: 4px solid hsl(181, 66%, 39%);
}
#about-section .value-card h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
  color: hsl(121, 40%, 22%);
}
#about-section .stat-box {
  background-color: hsl(121, 40%, 22%);
  color: #ffffff;
  border-radius: 8px;
  padding: 20px;
  text-align: center;
  height: 100%;
}
#about-section .stat-box .num {
  font-family: 'Inter', sans-serif;
  font-size: 1.9rem;
  font-weight: 700;
  color: #ffffff;
  display: block;
}
#about-section .stat-box .label {
  font-size: 0.9rem;
  color: #e9e9e9;
}
#about-section .qa-item {
  background-color: #f8f9fa;
  border-radius: 8px;
  padding: 18px 22px;
  margin-bottom: 16px;
}
#about-section .qa-item h3 {
  font-size: 1.05rem;
  color: hsl(331, 47%, 38%);
  margin-bottom: 8px;
}
#about-section .cta-box {
  background-color: hsl(331, 47%, 38%);
  color: #ffffff;
  border-radius: 8px;
  padding: 32px;
  text-align: center;
}
#about-section .cta-box h2 {
  color: #ffffff;
}
#about-section .cta-box p {
  color: #f2e6ee;
}
#about-section .btn-cta {
  background-color: hsl(181, 66%, 39%);
  color: #ffffff;
  border: none;
  border-radius: 6px;
  padding: 10px 28px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
}
#about-section .btn-cta:hover {
  background-color: hsl(181, 66%, 32%);
  color: #ffffff;
}
