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

:root {
  --primary: hsl(329, 39%, 34%);
  --secondary: hsl(357, 35%, 16%);
  --accent: hsl(305, 51%, 60%);
}

body{
  font-family: 'Nunito', sans-serif;
  color: #222;
  background-color: #fdfbfc;
}
h1,h2,h3,h4,h5,h6{
  font-family: 'Poppins', sans-serif;
}
header.site-header{
  background-color: #ffffff;
  border-bottom: 1px solid #eee;
}
header.site-header .navbar-brand{
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  color: var(--secondary);
  display: flex;
  align-items: center;
  gap: 10px;
}
header.site-header .nav-link{
  font-family: 'Nunito', sans-serif;
  font-weight: 600;
  color: var(--secondary);
  padding: 8px 14px !important;
  border-radius: 8px;
  transition: color 0.2s ease, background-color 0.2s ease;
}
header.site-header .nav-link:hover,
header.site-header .nav-link:focus{
  color: #ffffff;
  background-color: var(--primary);
}
.navbar-toggler{
  border-color: var(--primary);
}
.navbar-toggler:focus{
  box-shadow: 0 0 0 0.2rem hsla(329, 39%, 34%, 0.35);
}

#faq-content {
  font-family: 'Nunito', sans-serif;
  background: #ffffff;
  color: #2a2a2a;
  padding: 52px 0;
}
#faq-content .faq-column {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 20px;
}
#faq-content h1 {
  font-family: 'Poppins', sans-serif;
  color: hsl(357, 35%, 16%);
  font-size: 2rem;
  margin-bottom: 14px;
}
#faq-content .lead-text {
  color: #333;
  font-size: 1.05rem;
  margin-bottom: 30px;
  line-height: 1.7;
}
#faq-content h2 {
  font-family: 'Poppins', sans-serif;
  color: hsl(329, 39%, 34%);
  font-size: 1.35rem;
  margin-top: 44px;
  margin-bottom: 18px;
}
#faq-content .steps-list {
  padding-left: 0;
  list-style: none;
  counter-reset: step-counter;
  margin-bottom: 30px;
}
#faq-content .steps-list li {
  counter-increment: step-counter;
  position: relative;
  padding-left: 46px;
  margin-bottom: 16px;
  line-height: 1.6;
}
#faq-content .steps-list li::before {
  content: counter(step-counter);
  position: absolute;
  left: 0;
  top: 0;
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: hsl(329, 39%, 34%);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
}
#faq-content .accordion-item {
  border: 1px solid #e3d9df;
  border-radius: 8px;
  margin-bottom: 12px;
  overflow: hidden;
}
#faq-content .accordion-button {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  color: hsl(357, 35%, 16%);
  background: #fbf6f9;
  font-size: 1rem;
}
#faq-content .accordion-button:not(.collapsed) {
  background: hsl(329, 39%, 34%);
  color: #ffffff;
  box-shadow: none;
}
#faq-content .accordion-button:focus {
  box-shadow: 0 0 0 0.2rem rgba(180, 80, 140, 0.25);
}
#faq-content .accordion-button::after {
  filter: none;
}
#faq-content .accordion-body {
  color: #333;
  line-height: 1.7;
  background: #ffffff;
  font-size: 0.98rem;
}
#faq-content .cta-box {
  margin-top: 48px;
  padding: 26px 24px;
  border-radius: 8px;
  background: hsl(357, 35%, 16%);
  text-align: center;
}
#faq-content .cta-box p {
  color: #f5eef2;
  margin-bottom: 16px;
  line-height: 1.6;
}
#faq-content .cta-box a {
  display: inline-block;
  background: hsl(305, 51%, 60%);
  color: hsl(357, 35%, 16%);
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  text-decoration: none;
  padding: 11px 28px;
  border-radius: 8px;
  transition: opacity 0.2s ease;
}
#faq-content .cta-box a:hover {
  opacity: 0.85;
  color: hsl(357, 35%, 16%);
}
#faq-content .accordion-body a {
  color: hsl(329, 39%, 34%);
  font-weight: 600;
  text-decoration: underline;
}

footer.site-footer {
  background: hsl(357, 35%, 16%);
  color: #f5f0f2;
  font-family: 'Nunito', sans-serif;
  padding: 48px 0 24px;
}
footer.site-footer h5 {
  font-family: 'Poppins', sans-serif;
  color: #fff;
  margin-bottom: 16px;
}
footer.site-footer p, footer.site-footer a {
  color: #e6d9e0;
  text-decoration: none;
}
footer.site-footer a:hover {
  color: hsl(305, 51%, 60%);
}
footer.site-footer ul {
  list-style: none;
  padding-left: 0;
}
footer.site-footer ul li {
  margin-bottom: 8px;
}
.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: hsl(329, 39%, 34%);
  color: #fff;
  margin-right: 10px;
  font-size: 1.1rem;
  transition: background 0.3s ease;
}
.footer-social a:hover {
  background: hsl(305, 51%, 60%);
  color: #2b0f1a;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.15);
  margin-top: 32px;
  padding-top: 16px;
  font-size: 0.9rem;
  color: #cbb9c3;
}
#consentBox {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2000;
  background: hsl(357, 35%, 16%);
  color: #f5f0f2;
  border-top: 3px solid hsl(305, 51%, 60%);
  padding: 16px 0;
  font-family: 'Nunito', sans-serif;
  max-height: 60vh;
  overflow-y: auto;
}
#consentBox h6 {
  font-family: 'Poppins', sans-serif;
  color: #fff;
  margin-bottom: 8px;
}
#consentBox p, #consentBox li {
  font-size: 0.88rem;
  color: #e6d9e0;
  margin-bottom: 6px;
}
#consentBox ul {
  padding-left: 18px;
  margin-bottom: 10px;
}
.cookie-btn {
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  padding: 10px 16px;
  border-radius: 8px;
  border: none;
  width: 100%;
  font-weight: 600;
  transition: all 0.3s ease;
}
.btn-accept-all {
  background: hsl(305, 51%, 60%);
  color: #2b0f1a;
}
.btn-accept-all:hover {
  background: hsl(305, 51%, 50%);
  color: #fff;
}
.btn-reject {
  background: hsl(329, 39%, 34%);
  color: #fff;
}
.btn-reject:hover {
  background: hsl(329, 39%, 26%);
  color: #fff;
}
.cookie-manage-link {
  font-size: 0.85rem;
  color: #e6d9e0;
  text-decoration: underline;
}
.cookie-manage-link:hover {
  color: hsl(305, 51%, 60%);
}



  .thankyou-section {
    font-family: 'Nunito', sans-serif;
    background: linear-gradient(135deg, hsl(357, 35%, 16%) 0%, hsl(329, 39%, 34%) 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 3rem 1rem;
  }

  .thankyou-card {
    background: #ffffff;
    border-radius: 1.25rem;
    padding: 3rem 2rem;
    box-shadow: 0 1.5rem 3rem rgba(0, 0, 0, 0.3);
    max-width: 640px;
    margin: 0 auto;
    text-align: center;
    animation: fadeInUp 0.7s ease-out;
  }

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

  .success-icon-wrapper {
    width: 110px;
    height: 110px;
    margin: 0 auto 1.75rem;
    border-radius: 50%;
    background: linear-gradient(135deg, hsl(305, 51%, 60%) 0%, hsl(329, 39%, 34%) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 0 10px hsla(305, 51%, 60%, 0.15);
    animation: popIn 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) 0.15s both;
  }

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

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

  .thankyou-heading {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    color: hsl(357, 35%, 16%);
    font-size: clamp(1.5rem, 4vw, 2.25rem);
    margin-bottom: 1rem;
  }

  .thankyou-text {
    color: #55464a;
    font-size: 1.05rem;
    line-height: 1.75;
    max-width: 520px;
    margin: 0 auto 0.75rem;
  }

  .info-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
    margin: 1.75rem 0;
  }

  .info-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: hsla(305, 51%, 60%, 0.12);
    color: hsl(329, 39%, 34%);
    padding: 0.6rem 1.1rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
  }

  .info-badge svg {
    width: 18px;
    height: 18px;
    stroke: hsl(329, 39%, 34%);
    flex-shrink: 0;
  }

  .btn-home {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    background: hsl(329, 39%, 34%);
    border: 2px solid hsl(329, 39%, 34%);
    color: #ffffff;
    padding: 0.75rem 2.25rem;
    border-radius: 50px;
    font-size: 1rem;
    transition: all 0.3s ease;
    margin-top: 0.5rem;
  }

  .btn-home:hover {
    background: hsl(305, 51%, 60%);
    border-color: hsl(305, 51%, 60%);
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px hsla(305, 51%, 60%, 0.4);
  }

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

  .divider-line {
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, hsl(329, 39%, 34%), hsl(305, 51%, 60%));
    border-radius: 2px;
    margin: 1.5rem auto;
  }

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

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

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

    .info-badge {
      font-size: 0.82rem;
      padding: 0.5rem 0.9rem;
    }
  }

#contact-page {
  background: #f8f9fa;
  color: #222;
  font-family: 'Nunito', sans-serif;
  padding: 52px 0;
}
#contact-page .container {
  max-width: 760px;
}
#contact-page h1,
#contact-page h2 {
  font-family: 'Poppins', sans-serif;
  color: hsl(357, 35%, 16%);
}
#contact-page p {
  line-height: 1.7;
}
#contact-page .intro {
  margin-bottom: 40px;
}
#contact-page .contact-info {
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 8px;
  padding: 24px 28px;
  margin-bottom: 40px;
}
#contact-page .contact-info dt {
  font-weight: 700;
  color: hsl(329, 39%, 34%);
  font-family: 'Poppins', sans-serif;
  margin-top: 14px;
}
#contact-page .contact-info dt:first-child {
  margin-top: 0;
}
#contact-page .contact-info dd {
  margin-bottom: 0;
}
#contact-page a {
  color: hsl(329, 39%, 34%);
  text-decoration: underline;
}
#contact-page a:hover {
  color: hsl(305, 51%, 60%);
}
#contact-page .find-us {
  font-size: 0.96rem;
  color: #444;
  margin-top: 8px;
}
#contact-page form label {
  font-weight: 600;
  color: hsl(357, 35%, 16%);
  margin-bottom: 4px;
}
#contact-page form .form-control {
  border-radius: 7px;
  border: 1px solid #ccc;
  font-family: 'Nunito', sans-serif;
}
#contact-page form .form-control:focus {
  border-color: hsl(329, 39%, 34%);
  box-shadow: 0 0 0 0.2rem hsla(329, 39%, 34%, 0.2);
}
#contact-page .btn-primary {
  background-color: hsl(329, 39%, 34%);
  border-color: hsl(329, 39%, 34%);
  color: #fff;
  border-radius: 8px;
  font-family: 'Poppins', sans-serif;
  padding: 10px 28px;
}
#contact-page .btn-primary:hover {
  background-color: hsl(305, 51%, 60%);
  border-color: hsl(305, 51%, 60%);
  color: #222;
}
#contact-page .form-wrap {
  margin-bottom: 48px;
}
#contact-page .cta-line {
  border-top: 1px solid #e5e5e5;
  padding-top: 28px;
  text-align: center;
}
#contact-page .cta-line a {
  display: inline-block;
  background-color: hsl(357, 35%, 16%);
  color: #fff;
  text-decoration: none;
  padding: 10px 24px;
  border-radius: 8px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
}
#contact-page .cta-line a:hover {
  background-color: hsl(305, 51%, 60%);
  color: #222;
}

.hero-section {
  background-color: #f8f9fa;
  padding: 52px 0;
}

.hero-column {
  max-width: 740px;
  margin: 0 auto;
  padding: 0 20px;
}

.hero-eyebrow {
  font-family: 'Nunito', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: hsl(329, 39%, 34%);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
}

.hero-section h1 {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  color: hsl(357, 35%, 16%);
  font-size: 2.4rem;
  line-height: 1.25;
  margin-bottom: 10px;
}

.hero-rule {
  border: none;
  border-top: 2px solid hsl(305, 51%, 60%);
  width: 90px;
  margin: 18px 0 22px 0;
}

.hero-section h2 {
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  color: hsl(329, 39%, 34%);
  font-size: 1.3rem;
  margin-bottom: 16px;
}

.hero-section p.hero-desc {
  font-family: 'Nunito', sans-serif;
  color: #333333;
  font-size: 1.05rem;
  line-height: 1.6;
  margin-bottom: 28px;
}

.hero-cta-btn {
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  background-color: hsl(329, 39%, 34%);
  color: #ffffff;
  border: none;
  padding: 13px 30px;
  border-radius: 8px;
  font-size: 1.05rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background-color 0.25s ease, transform 0.2s ease;
}

.hero-cta-btn:hover {
  background-color: hsl(305, 51%, 60%);
  color: #ffffff;
  transform: translateY(-2px);
}

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

#who-we-are {
  font-family: 'Nunito', sans-serif;
  background: #fdfbfd;
  color: #2a2a2a;
  padding: 52px 0;
}
#who-we-are .col-wrap {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 20px;
}
#who-we-are h1, #who-we-are h2 {
  font-family: 'Poppins', sans-serif;
  color: hsl(357, 35%, 16%);
}
#who-we-are h1 {
  font-size: 2rem;
  margin-bottom: 12px;
}
#who-we-are h2 {
  font-size: 1.4rem;
  margin-top: 40px;
  margin-bottom: 14px;
  color: hsl(329, 39%, 34%);
}
#who-we-are p {
  line-height: 1.75;
  margin-bottom: 16px;
  font-size: 1.02rem;
}
#who-we-are .lead-text {
  font-size: 1.1rem;
  color: hsl(357, 35%, 16%);
}
#who-we-are img {
  aspect-ratio: 3 / 2;
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 8px;
  margin: 24px 0;
}
#who-we-are .values-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 16px;
}
#who-we-are .values-list li {
  padding: 10px 0 10px 26px;
  position: relative;
  line-height: 1.6;
  border-bottom: 1px solid #eee;
}
#who-we-are .values-list li:last-child {
  border-bottom: none;
}
#who-we-are .values-list li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: hsl(305, 51%, 60%);
  font-weight: 700;
}
#who-we-are .fact-line {
  border-left: 3px solid hsl(305, 51%, 60%);
  padding: 8px 16px;
  background: #f7f1f4;
  border-radius: 0 8px 8px 0;
  margin: 20px 0;
  font-size: 0.98rem;
}

.services-column{
  max-width:760px;
  margin:0 auto;
  padding:52px 20px;
  font-family:'Nunito',sans-serif;
  color:#222;
  background:#fff;
}
.services-column h2{
  font-family:'Poppins',sans-serif;
  color:hsl(357, 35%, 16%);
  font-size:2rem;
  margin-bottom:10px;
}
.services-column .lead-text{
  font-size:1.05rem;
  color:#3a3a3a;
  margin-bottom:36px;
  line-height:1.7;
}
.price-list{
  border-top:1px solid #ddd;
}
.price-row{
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  gap:20px;
  padding:22px 0;
  border-bottom:1px solid #ddd;
}
.price-row .service-info h3{
  font-family:'Poppins',sans-serif;
  font-size:1.15rem;
  color:hsl(329, 39%, 34%);
  margin-bottom:6px;
}
.price-row .service-info p{
  font-size:0.95rem;
  color:#444;
  margin:0;
  line-height:1.6;
  max-width:540px;
}
.price-row .price-tag{
  font-family:'Poppins',sans-serif;
  font-weight:600;
  font-size:1.1rem;
  color:hsl(357, 35%, 16%);
  white-space:nowrap;
  padding-top:2px;
}
.terms-box{
  margin-top:40px;
  padding:20px 22px;
  background:#f8f9fa;
  border-radius:8px;
  border:1px solid #e5e5e5;
}
.terms-box h3{
  font-family:'Poppins',sans-serif;
  font-size:1.1rem;
  color:hsl(329, 39%, 34%);
  margin-bottom:10px;
}
.terms-box ul{
  margin:0;
  padding-left:20px;
  color:#3a3a3a;
  font-size:0.92rem;
  line-height:1.8;
}
@media (max-width:576px){
  .price-row{
    flex-direction:column;
    gap:6px;
  }
  .price-row .price-tag{
    padding-top:0;
  }
}

#questions {
  font-family: 'Nunito', sans-serif;
  background-color: #ffffff;
  color: #222222;
  padding: 52px 0;
}
#questions .container {
  max-width: 760px;
}
#questions h2 {
  font-family: 'Poppins', sans-serif;
  color: hsl(357, 35%, 16%);
  font-weight: 600;
  margin-bottom: 16px;
}
#questions .lead-text {
  color: #333333;
  margin-bottom: 40px;
  font-size: 1.05rem;
}
#questions .accordion-item {
  border: 1px solid #e5dde2;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 12px;
}
#questions .accordion-button {
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  color: hsl(357, 35%, 16%);
  background-color: #ffffff;
  border-radius: 8px;
}
#questions .accordion-button:not(.collapsed) {
  color: #ffffff;
  background-color: hsl(329, 39%, 34%);
  box-shadow: none;
}
#questions .accordion-button:focus {
  box-shadow: none;
  border-color: hsl(305, 51%, 60%);
}
#questions .accordion-button::after {
  filter: none;
}
#questions .accordion-body {
  background-color: #fdfbfc;
  color: #333333;
  font-size: 0.98rem;
  line-height: 1.6;
}
#questions .accordion-button:not(.collapsed)::after {
  filter: brightness(0) invert(1);
}

#testimonials {
  background:#f8f9fa;
  padding:52px 0;
  font-family:'Nunito',sans-serif;
  color:#222;
}
#testimonials .col-heading {
  max-width:760px;
  margin:0 auto 36px;
  text-align:center;
}
#testimonials h2 {
  font-family:'Poppins',sans-serif;
  color:hsl(357, 35%, 16%);
  font-weight:600;
  font-size:2rem;
}
#testimonials p.lead-text {
  color:#444;
  font-size:1.05rem;
}
#testimonials .review-wrap {
  max-width:780px;
  margin:0 auto;
}
#testimonials .review-card {
  background:#fff;
  border-radius:8px;
  padding:22px 24px;
  margin-bottom:20px;
  border-left:4px solid hsl(329, 39%, 34%);
  box-shadow:0 1px 3px rgba(0,0,0,0.06);
}
#testimonials .review-card.alt {
  border-left:4px solid hsl(305, 51%, 60%);
  background:#fdf9fc;
}
#testimonials .review-top {
  display:flex;
  justify-content:space-between;
  align-items:center;
  flex-wrap:wrap;
  gap:6px;
  margin-bottom:8px;
}
#testimonials .review-name {
  font-family:'Poppins',sans-serif;
  font-weight:600;
  color:hsl(357, 35%, 16%);
  font-size:1rem;
}
#testimonials .review-loc {
  font-size:0.85rem;
  color:#666;
}
#testimonials .stars {
  color:hsl(329, 39%, 34%);
  font-size:0.95rem;
  letter-spacing:1px;
}
#testimonials .review-text {
  color:#333;
  font-size:0.98rem;
  line-height:1.6;
  margin:0;
}
#testimonials .review-text.short {
  font-size:1.02rem;
  font-style:italic;
}
#testimonials .review-tag {
  display:inline-block;
  margin-top:10px;
  font-size:0.78rem;
  color:hsl(329, 39%, 34%);
  background:rgba(196,90,157,0.1);
  padding:3px 10px;
  border-radius:6px;
}
@media (max-width:576px){
  #testimonials h2 {font-size:1.6rem;}
  #testimonials .review-card {padding:18px 16px;}
}

#benefits {
  background-color: #ffffff;
  padding: 52px 0;
  font-family: 'Nunito', sans-serif;
}
#benefits .section-heading {
  max-width: 760px;
  margin: 0 auto 40px;
  text-align: center;
}
#benefits h2 {
  font-family: 'Poppins', sans-serif;
  color: hsl(357, 35%, 16%);
  font-weight: 600;
  font-size: 2rem;
  margin-bottom: 14px;
}
#benefits .section-heading p {
  color: #444;
  font-size: 1.05rem;
  line-height: 1.7;
}
#benefits .benefit-card {
  background-color: #f8f9fa;
  border: 1px solid #eee;
  border-radius: 8px;
  padding: 28px 24px;
  height: 100%;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
}
#benefits .benefit-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 22px rgba(0,0,0,0.1);
  background-color: #fff;
}
#benefits .icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: 8px;
  background-color: hsl(329, 39%, 34%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  transition: background-color 0.25s ease;
}
#benefits .benefit-card:hover .icon-wrap {
  background-color: hsl(305, 51%, 60%);
}
#benefits .icon-wrap i {
  font-size: 1.5rem;
  color: #ffffff;
}
#benefits h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: hsl(357, 35%, 16%);
  margin-bottom: 10px;
}
#benefits .benefit-card p {
  color: #444;
  font-size: 0.96rem;
  line-height: 1.65;
  margin-bottom: 0;
}
@media (max-width: 767px) {
  #benefits h2 {
    font-size: 1.6rem;
  }
}

#enquiry {
  font-family: 'Nunito', sans-serif;
  background: #f8f9fa;
  padding: 52px 0;
  color: #222;
}
#enquiry .col-container {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 16px;
}
#enquiry h2 {
  font-family: 'Poppins', sans-serif;
  color: hsl(357, 35%, 16%);
  font-weight: 600;
  margin-bottom: 14px;
}
#enquiry p.lead-text {
  font-size: 1rem;
  color: #444;
  margin-bottom: 36px;
}
#enquiry .contact-card {
  background: #fff;
  border-radius: 8px;
  padding: 28px;
  border: 1px solid #e9e2e6;
  margin-bottom: 28px;
}
#enquiry .contact-card h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.15rem;
  color: hsl(329, 39%, 34%);
  margin-bottom: 16px;
}
#enquiry .contact-line {
  margin-bottom: 10px;
  font-size: 0.98rem;
}
#enquiry .contact-line a {
  color: hsl(329, 39%, 34%);
  text-decoration: none;
  font-weight: 600;
}
#enquiry .contact-line a:hover {
  color: hsl(305, 51%, 60%);
  text-decoration: underline;
}
#enquiry .find-us {
  font-size: 0.92rem;
  color: #555;
  margin-top: 6px;
}
#enquiry .find-us a {
  color: hsl(329, 39%, 34%);
  font-weight: 600;
  text-decoration: underline;
}
#enquiry .form-label {
  font-weight: 600;
  color: #222;
  font-size: 0.94rem;
}
#enquiry .form-control {
  border-radius: 6px;
  border: 1px solid #d8ced4;
  font-family: 'Nunito', sans-serif;
  padding: 10px 12px;
}
#enquiry .form-control:focus {
  border-color: hsl(305, 51%, 60%);
  box-shadow: 0 0 0 0.2rem hsla(305, 51%, 60%, 0.2);
}
#enquiry .btn-send {
  background: hsl(329, 39%, 34%);
  color: #fff;
  border: none;
  border-radius: 7px;
  padding: 11px 28px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.98rem;
}
#enquiry .btn-send:hover {
  background: hsl(305, 51%, 60%);
  color: #fff;
}

.disclaimer-section{background-color:#f8f9fa;padding:48px 0;font-family:'Nunito',sans-serif;}
.disclaimer-section .disclaimer-box{max-width:760px;margin:0 auto;padding:32px;background-color:#fff;border:1px solid #e5e0e2;border-radius:8px;}
.disclaimer-section .disclaimer-icon{color:hsl(305, 51%, 60%);font-size:1.8rem;margin-right:12px;}
.disclaimer-section h2{font-family:'Poppins',sans-serif;color:hsl(357, 35%, 16%);font-weight:600;font-size:1.6rem;margin-bottom:16px;display:flex;align-items:center;}
.disclaimer-section p{color:#333;font-size:1rem;line-height:1.7;margin-bottom:0;}
