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

:root {
  --primary: hsl(275, 41%, 28%);
  --secondary: hsl(303, 31%, 14%);
  --accent: hsl(251, 55%, 61%);
  --color-primary: hsl(275, 41%, 28%);
  --color-secondary: hsl(303, 31%, 14%);
  --color-accent: hsl(251, 55%, 61%);
}

body{
  font-family: 'Open Sans', sans-serif;
  color: #222;
  background-color: #ffffff;
}
h1, h2, h3, h4, h5, h6{
  font-family: 'Roboto', sans-serif;
}
.navbar{
  background-color: #ffffff;
  border-bottom: 1px solid #eee;
  padding-top: 0.85rem;
  padding-bottom: 0.85rem;
}
.navbar-brand{
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  color: var(--primary);
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  gap: 10px;
}
.navbar-brand img{
  border-radius: 8px;
}
.navbar-nav .nav-link{
  color: var(--secondary);
  font-weight: 600;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  transition: color 0.2s ease, background-color 0.2s ease;
}
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link:focus{
  color: #ffffff;
  background-color: var(--accent);
}
.navbar-toggler{
  border-color: var(--primary);
}
.navbar-toggler:focus{
  box-shadow: 0 0 0 0.2rem hsla(275, 41%, 28%, 0.25);
}

footer {
  background: hsl(303, 31%, 14%);
  color: #f5f5f5;
  font-family: 'Open Sans', sans-serif;
  padding: 48px 0 24px;
}
footer h5 {
  font-family: 'Roboto', sans-serif;
  color: #fff;
  margin-bottom: 16px;
}
footer a {
  color: #e0d6f0;
  text-decoration: none;
}
footer a:hover {
  color: hsl(251, 55%, 71%);
  text-decoration: underline;
}
footer p, footer li {
  color: #e8e0f2;
}
.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: hsl(275, 41%, 28%);
  color: #fff;
  margin-right: 10px;
  font-size: 1.1rem;
  transition: background 0.3s ease;
}
.footer-social a:hover {
  background: hsl(251, 55%, 61%);
}
.footer-bottom {
  border-top: 1px solid hsl(275, 41%, 28%);
  margin-top: 24px;
  padding-top: 16px;
  font-size: 0.9rem;
  color: #cbbde0;
}
.footer-links li {
  margin-bottom: 8px;
}

#cookieStrip {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2000;
  background: hsl(303, 31%, 14%);
  color: #f5f5f5;
  border-top: 3px solid hsl(251, 55%, 61%);
  padding: 16px 0;
  max-height: 60vh;
  overflow-y: auto;
  font-family: 'Open Sans', sans-serif;
}
#cookieStrip h6 {
  font-family: 'Roboto', sans-serif;
  color: #fff;
  margin-bottom: 8px;
}
#cookieStrip p, #cookieStrip li {
  font-size: 0.88rem;
  color: #e8e0f2;
  margin-bottom: 6px;
}
.cookie-btn {
  border-radius: 7px;
  font-weight: 600;
  padding: 8px 18px;
  font-size: 0.9rem;
  border: 2px solid transparent;
  transition: all 0.3s ease;
  width: 100%;
}
.cookie-btn-accept {
  background: hsl(251, 55%, 61%);
  color: #fff;
}
.cookie-btn-accept:hover {
  background: hsl(251, 55%, 51%);
  color: #fff;
}
.cookie-btn-reject {
  background: transparent;
  color: #f5f5f5;
  border-color: #f5f5f5;
}
.cookie-btn-reject:hover {
  background: #f5f5f5;
  color: hsl(303, 31%, 14%);
}
.cookie-manage-link {
  color: #d8c9f0;
  font-size: 0.85rem;
  text-decoration: underline;
}
.cookie-manage-link:hover {
  color: hsl(251, 55%, 71%);
}



  

  .thankyou-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-secondary) 0%, var(--color-primary) 100%);
    padding: 2rem 1rem;
    font-family: 'Open Sans', sans-serif;
  }

  .thankyou-card {
    background: #ffffff;
    border-radius: 1.25rem;
    padding: 3rem 2.5rem;
    max-width: 640px;
    width: 100%;
    text-align: center;
    box-shadow: 0 1.5rem 3rem rgba(0, 0, 0, 0.3);
    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;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-primary) 100%);
    box-shadow: 0 0 0 10px rgba(129, 96, 209, 0.15);
    animation: popIn 0.6s ease-out 0.2s both;
  }

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

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

  .thankyou-heading {
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    color: var(--color-secondary);
    font-size: 2rem;
    margin-bottom: 1rem;
  }

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

  .info-box {
    background: hsl(275, 41%, 97%);
    border-left: 4px solid var(--color-accent);
    border-radius: 0.5rem;
    padding: 1.1rem 1.3rem;
    text-align: left;
    margin: 1.75rem 0;
  }

  .info-box ul {
    margin: 0;
    padding-left: 1.2rem;
  }

  .info-box li {
    color: var(--color-secondary);
    margin-bottom: 0.5rem;
    font-size: 0.98rem;
  }

  .info-box li:last-child {
    margin-bottom: 0;
  }

  .btn-thankyou {
    background: var(--color-primary);
    color: #ffffff;
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    padding: 0.75rem 2.25rem;
    border-radius: 50px;
    border: none;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 14px rgba(80, 40, 120, 0.35);
  }

  .btn-thankyou:hover {
    background: var(--color-accent);
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(129, 96, 209, 0.45);
  }

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

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

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

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

#about-body {
  font-family: 'Open Sans', sans-serif;
  color: #2a2a2a;
  background: #fff;
}
#about-body h1, #about-body h2, #about-body h3 {
  font-family: 'Roboto', sans-serif;
  color: hsl(275, 41%, 28%);
}
#about-body section, #about-body .about-block {
  padding: 48px 0;
}
#about-body .hero-about {
  background: hsl(303, 31%, 14%);
  color: #f8f9fa;
  padding: 56px 0;
  border-radius: 0 0 10px 10px;
}
#about-body .hero-about p {
  color: #e6e1ec;
}
#about-body img {
  aspect-ratio: 3 / 2;
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 8px;
}
#about-body .value-card {
  background: #f8f9fa;
  border-radius: 8px;
  padding: 24px;
  height: 100%;
  border-top: 4px solid hsl(251, 55%, 61%);
}
#about-body .value-card h3 {
  font-size: 1.15rem;
}
#about-body .stat-box {
  background: hsl(275, 41%, 28%);
  color: #f8f9fa;
  border-radius: 8px;
  padding: 20px;
  text-align: center;
}
#about-body .stat-box .num {
  font-family: 'Roboto', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
}
#about-body .team-card {
  background: #f8f9fa;
  border-radius: 8px;
  padding: 24px;
  height: 100%;
  border: 1px solid #e5e0ea;
}
#about-body .team-card .role {
  color: hsl(251, 55%, 61%);
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
#about-body .accent-text {
  color: hsl(251, 55%, 61%);
}
#about-body .faq-item {
  border-bottom: 1px solid #e5e0ea;
  padding: 18px 0;
}
#about-body .faq-item h3 {
  font-size: 1.05rem;
  margin-bottom: 8px;
}
#about-body .cta-final {
  background: hsl(251, 55%, 61%);
  color: #fff;
  border-radius: 10px;
  padding: 40px;
  text-align: center;
}
#about-body .cta-final h2 {
  color: #fff;
}
#about-body .cta-final .btn {
  background: hsl(303, 31%, 14%);
  color: #fff;
  border: none;
  padding: 12px 32px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  margin-top: 12px;
}
#about-body .cta-final .btn:hover {
  background: #1f0a1e;
  color: #fff;
}
#about-body a {
  color: hsl(275, 41%, 28%);
}

#services-content { background: #f8f9fa; color: #222; padding: 52px 0; font-family: 'Open Sans', sans-serif; }
#services-content h1, #services-content h2, #services-content h3 { font-family: 'Roboto', sans-serif; }
#services-content .page-header { margin-bottom: 48px; }
#services-content .page-header h1 { color: hsl(275, 41%, 28%); font-weight: 700; }
#services-content .page-header p { max-width: 720px; margin: 0 auto; color: #444; }
#services-content .card {
  border: none;
  border-radius: 8px;
  background: #fff;
  height: 100%;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  box-shadow: 0 2px 6px rgba(0,0,0,0.06);
}
#services-content .card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 22px rgba(90, 60, 150, 0.2);
}
#services-content .card-body { padding: 28px 24px; display: flex; flex-direction: column; }
#services-content .icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: 8px;
  background: hsl(251, 55%, 61%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
#services-content .icon-wrap i { font-size: 26px; color: #fff; }
#services-content .card h3 { font-size: 1.15rem; color: hsl(303, 31%, 14%); margin-bottom: 10px; }
#services-content .card p.desc { color: #444; font-size: 0.94rem; flex-grow: 1; }
#services-content .price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid #eee;
}
#services-content .price-tag { font-weight: 700; color: hsl(275, 41%, 28%); font-size: 1.1rem; }
#services-content .price-row span.unit { font-size: 0.8rem; color: #777; }
#services-content .section-divider { margin: 52px 0; border-top: 1px solid #e2e2e2; }
#services-content .faq h2 { color: hsl(275, 41%, 28%); margin-bottom: 24px; }
#services-content .accordion-button {
  font-family: 'Roboto', sans-serif;
  font-weight: 600;
  color: hsl(303, 31%, 14%);
  background: #fff;
}
#services-content .accordion-button:not(.collapsed) {
  color: #fff;
  background: hsl(275, 41%, 28%);
  box-shadow: none;
}
#services-content .accordion-button:focus { box-shadow: none; }
#services-content .accordion-body { background: #fdfdfd; color: #333; }
#services-content .cta-box {
  background: hsl(303, 31%, 14%);
  border-radius: 8px;
  padding: 40px 32px;
  text-align: center;
  margin-top: 52px;
}
#services-content .cta-box h2 { color: #fff; margin-bottom: 12px; }
#services-content .cta-box p { color: #e6dced; margin-bottom: 20px; }
#services-content .btn-cta {
  background: hsl(251, 55%, 61%);
  color: #fff;
  border: none;
  padding: 12px 32px;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
}
#services-content .btn-cta:hover { background: hsl(275, 41%, 28%); color: #fff; }
@media (max-width: 767px) {
  #services-content .cta-box { padding: 28px 18px; }
}

#contact-content {
  font-family: 'Open Sans', sans-serif;
  color: #222;
  background-color: #f8f9fa;
  padding: 52px 0;
}
#contact-content h1, #contact-content h2, #contact-content h3 {
  font-family: 'Roboto', sans-serif;
}
#contact-content .contact-hero h1 {
  color: hsl(275, 41%, 28%);
}
#contact-content .contact-hero p {
  color: #333;
  max-width: 700px;
}
#contact-content .card {
  border: none;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.07);
}
#contact-content .info-card {
  background-color: hsl(275, 41%, 28%);
  color: #f8f9fa;
  border-radius: 8px;
  padding: 32px;
}
#contact-content .info-card h2 {
  color: #f8f9fa;
  margin-bottom: 20px;
}
#contact-content .info-card p,
#contact-content .info-card a {
  color: #f8f9fa;
}
#contact-content .info-card a {
  text-decoration: underline;
}
#contact-content .info-card a:hover {
  color: hsl(251, 55%, 85%);
}
#contact-content .info-item {
  margin-bottom: 18px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
#contact-content .info-item i {
  font-size: 1.2rem;
  color: hsl(251, 55%, 71%);
  margin-top: 3px;
}
#contact-content .map-link {
  display: inline-block;
  margin-top: 8px;
  font-weight: 600;
  color: hsl(251, 55%, 81%);
}
#contact-content .form-card {
  background-color: #fff;
  padding: 32px;
  border-radius: 8px;
}
#contact-content .form-card h2 {
  color: hsl(275, 41%, 28%);
  margin-bottom: 10px;
}
#contact-content .form-card p.form-intro {
  color: #444;
  margin-bottom: 24px;
}
#contact-content label {
  font-weight: 600;
  color: #222;
  margin-bottom: 6px;
}
#contact-content .form-control {
  border-radius: 6px;
  border: 1px solid #ccc;
  padding: 10px 14px;
}
#contact-content .form-control:focus {
  border-color: hsl(251, 55%, 61%);
  box-shadow: 0 0 0 0.2rem hsla(251, 55%, 61%, 0.25);
}
#contact-content .btn-submit {
  background-color: hsl(251, 55%, 61%);
  color: #fff;
  border: none;
  padding: 12px 32px;
  border-radius: 6px;
  font-weight: 600;
  transition: background-color 0.2s ease;
}
#contact-content .btn-submit:hover {
  background-color: hsl(275, 41%, 28%);
  color: #fff;
}
#contact-content .cta-box {
  background-color: hsl(303, 31%, 14%);
  color: #f8f9fa;
  border-radius: 8px;
  padding: 32px;
  margin-top: 48px;
  text-align: center;
}
#contact-content .cta-box h2 {
  color: #f8f9fa;
  margin-bottom: 14px;
}
#contact-content .cta-box p {
  color: #e6dcef;
  margin-bottom: 20px;
}
#contact-content .cta-box .btn {
  background-color: hsl(251, 55%, 61%);
  color: #fff;
  border-radius: 6px;
  padding: 10px 28px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
}
#contact-content .cta-box .btn:hover {
  background-color: hsl(251, 55%, 71%);
  color: #fff;
}
@media (max-width: 767px) {
  #contact-content .info-card,
  #contact-content .form-card {
    padding: 22px;
  }
}

.hero-section {
  background-color: #ffffff;
  padding: 52px 0;
}
.hero-section h1 {
  font-family: 'Roboto', sans-serif;
  color: hsl(275, 41%, 28%);
  font-weight: 700;
  font-size: 2.4rem;
}
.hero-section h2 {
  font-family: 'Roboto', sans-serif;
  color: hsl(303, 31%, 14%);
  font-weight: 500;
  font-size: 1.3rem;
  margin-bottom: 1rem;
}
.hero-section p {
  font-family: 'Open Sans', sans-serif;
  color: #333333;
  font-size: 1.05rem;
  max-width: 700px;
  margin: 0 auto 1.5rem auto;
}
.hero-text-wrap {
  text-align: center;
  margin-bottom: 32px;
}
.hero-img-strip {
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
}
.hero-img-strip img {
  aspect-ratio: 3 / 2;
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 8px;
}
.btn-hero {
  background-color: hsl(251, 55%, 61%);
  color: #ffffff;
  font-family: 'Open Sans', sans-serif;
  font-weight: 600;
  border: none;
  padding: 12px 32px;
  border-radius: 8px;
  font-size: 1.05rem;
  transition: background-color 0.3s ease, transform 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-hero:hover {
  background-color: hsl(275, 41%, 28%);
  color: #ffffff;
  transform: translateY(-2px);
}
.hero-btn-wrap {
  text-align: center;
  margin-top: 28px;
}
@media (max-width: 767px) {
  .hero-section h1 {
    font-size: 1.9rem;
  }
  .hero-section h2 {
    font-size: 1.1rem;
  }
}

.services-section {
  padding: 52px 0;
  background-color: #f8f9fa;
}
.services-section h2 {
  font-family: 'Roboto', sans-serif;
  color: hsl(275, 41%, 28%);
  font-weight: 700;
}
.services-section .lead-text {
  font-family: 'Open Sans', sans-serif;
  color: #333;
  max-width: 700px;
  margin: 0 auto;
}
.service-card {
  background-color: #ffffff;
  border-radius: 8px;
  padding: 32px 24px;
  height: 100%;
  text-align: center;
  border: 1px solid #e5e0ec;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 24px rgba(75, 40, 109, 0.2);
  background-color: hsl(275, 41%, 28%);
}
.service-card:hover h3,
.service-card:hover p,
.service-card:hover .service-price {
  color: #ffffff !important;
}
.service-icon-wrap {
  width: 72px;
  height: 72px;
  border-radius: 8px;
  background-color: hsl(251, 55%, 61%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: background-color 0.3s ease;
}
.service-card:hover .service-icon-wrap {
  background-color: hsl(303, 31%, 14%);
}
.service-icon-wrap i {
  font-size: 2rem;
  color: #ffffff;
}
.service-card h3 {
  font-family: 'Roboto', sans-serif;
  font-size: 1.15rem;
  color: hsl(303, 31%, 14%);
  margin-bottom: 12px;
  font-weight: 700;
}
.service-card p {
  font-family: 'Open Sans', sans-serif;
  color: #444;
  font-size: 0.93rem;
  flex-grow: 1;
  margin-bottom: 16px;
}
.service-price {
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  color: hsl(275, 41%, 28%);
  font-size: 1.1rem;
  border-top: 1px solid #e5e0ec;
  padding-top: 12px;
  margin-top: auto;
}
.service-card:hover .service-price {
  border-top-color: rgba(255,255,255,0.3);
}

#projects {padding:52px 0;background:#f8f9fa;font-family:'Open Sans',sans-serif;color:#222;}
#projects h2 {font-family:'Roboto',sans-serif;color:hsl(275,41%,28%);font-weight:700;}
#projects .lead-text {color:#444;max-width:700px;margin:0 auto 40px;}
#projects .portfolio-card {background:#fff;border-radius:8px;overflow:hidden;box-shadow:0 2px 10px rgba(0,0,0,.08);height:100%;display:flex;flex-direction:column;transition:transform .2s ease;}
#projects .portfolio-card:hover {transform:translateY(-4px);}
#projects .portfolio-img-wrap {width:100%;aspect-ratio:4/3;overflow:hidden;background:#eee;}
#projects .portfolio-img-wrap img {width:100%;height:100%;object-fit:cover;display:block;}
#projects .portfolio-body {padding:18px 20px;display:flex;flex-direction:column;flex-grow:1;}
#projects .portfolio-body h3 {font-family:'Roboto',sans-serif;font-size:1.1rem;color:hsl(303,31%,14%);margin-bottom:6px;}
#projects .badge-category {background:hsl(251,55%,61%);color:#fff;font-weight:600;font-size:.75rem;border-radius:6px;padding:5px 10px;display:inline-block;margin-bottom:10px;width:fit-content;}
#projects .portfolio-body p {font-size:.92rem;color:#333;flex-grow:1;}
#projects .btn-details {background:hsl(275,41%,28%);color:#fff;border:none;border-radius:6px;padding:8px 16px;font-weight:600;font-size:.9rem;margin-top:10px;align-self:flex-start;}
#projects .btn-details:hover {background:hsl(251,55%,61%);color:#fff;}
#projects .modal-content {border-radius:8px;}
#projects .modal-header {background:hsl(275,41%,28%);color:#fff;border-radius:8px 8px 0 0;}
#projects .modal-header .btn-close {filter:invert(1);}
#projects .modal-title {font-family:'Roboto',sans-serif;}
#projects .modal-body img {width:100%;aspect-ratio:4/3;object-fit:cover;border-radius:6px;margin-bottom:16px;}
#projects .modal-body .badge-category {margin-bottom:12px;}

#subscribe {
  background-color: hsl(275, 41%, 28%);
  padding: 52px 0;
  border-radius: 8px;
}
#subscribe h2 {
  font-family: 'Roboto', sans-serif;
  color: #ffffff;
  font-weight: 700;
  margin-bottom: 16px;
}
#subscribe p {
  font-family: 'Open Sans', sans-serif;
  color: #f0eaf7;
  font-size: 1.05rem;
  margin-bottom: 28px;
}
#subscribe .subscribe-form-wrapper {
  background-color: hsl(303, 31%, 14%);
  border-radius: 8px;
  padding: 32px;
}
#subscribe .form-control {
  border-radius: 6px;
  border: 1px solid hsl(251, 55%, 61%);
  padding: 12px 16px;
  font-family: 'Open Sans', sans-serif;
}
#subscribe .form-control:focus {
  border-color: hsl(251, 55%, 61%);
  box-shadow: 0 0 0 0.2rem rgba(139, 111, 214, 0.35);
}
#subscribe .btn-subscribe {
  background-color: hsl(251, 55%, 61%);
  color: #ffffff;
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  border: none;
  border-radius: 6px;
  padding: 12px 28px;
  transition: background-color 0.2s ease;
}
#subscribe .btn-subscribe:hover {
  background-color: hsl(251, 55%, 51%);
  color: #ffffff;
}
#subscribe .small-note {
  font-family: 'Open Sans', sans-serif;
  color: #d8cdec;
  font-size: 0.85rem;
  margin-top: 14px;
  margin-bottom: 0;
}

#faq {
  padding: 52px 0;
  background-color: #f8f9fa;
  font-family: 'Open Sans', sans-serif;
  color: #222;
}
#faq h2 {
  font-family: 'Roboto', sans-serif;
  color: hsl(275, 41%, 28%);
  font-weight: 700;
  margin-bottom: 12px;
}
#faq .lead-text {
  color: #333;
  margin-bottom: 40px;
  max-width: 720px;
}
#faq .accordion-item {
  border: 1px solid #e2ddea;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 14px;
}
#faq .accordion-button {
  font-family: 'Roboto', sans-serif;
  font-weight: 600;
  color: hsl(303, 31%, 14%);
  background-color: #fff;
  border-radius: 8px;
}
#faq .accordion-button:not(.collapsed) {
  color: #fff;
  background-color: hsl(275, 41%, 28%);
  box-shadow: none;
}
#faq .accordion-button:focus {
  box-shadow: 0 0 0 0.2rem hsla(251, 55%, 61%, 0.35);
  border-color: hsl(251, 55%, 61%);
}
#faq .accordion-button::after {
  filter: none;
}
#faq .accordion-body {
  background-color: #fff;
  color: #333;
  line-height: 1.65;
}
#faq .badge-info {
  background-color: hsl(251, 55%, 61%);
  color: #fff;
  border-radius: 8px;
  padding: 10px 18px;
  font-size: 0.95rem;
  display: inline-block;
  margin-top: 28px;
}
@media (max-width: 576px) {
  #faq .accordion-button {
    font-size: 0.95rem;
  }
}

#enquiry {
  background: #f8f9fa;
  padding: 52px 0;
  font-family: 'Open Sans', sans-serif;
  color: #222;
}

#enquiry h2 {
  font-family: 'Roboto', sans-serif;
  color: hsl(275, 41%, 28%);
  font-weight: 700;
  margin-bottom: 12px;
}

#enquiry p.lead-text {
  color: #333;
  margin-bottom: 32px;
}

#enquiry .contact-card {
  background: #fff;
  border-radius: 8px;
  padding: 32px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
  height: 100%;
}

#enquiry .contact-card h3 {
  font-family: 'Roboto', sans-serif;
  color: hsl(303, 31%, 14%);
  font-weight: 700;
  margin-bottom: 20px;
  font-size: 1.3rem;
}

#enquiry .contact-info-list {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
}

#enquiry .contact-info-list li {
  margin-bottom: 16px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: #333;
}

#enquiry .contact-info-list li .icon-box {
  width: 38px;
  height: 38px;
  min-width: 38px;
  border-radius: 8px;
  background: hsl(251, 55%, 61%);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

#enquiry .contact-info-list a {
  color: hsl(275, 41%, 28%);
  text-decoration: none;
  font-weight: 600;
}

#enquiry .contact-info-list a:hover {
  text-decoration: underline;
  color: hsl(251, 55%, 61%);
}

#enquiry .map-link {
  display: inline-block;
  margin-top: 4px;
  color: hsl(251, 55%, 61%);
  font-weight: 600;
  text-decoration: none;
  font-size: 0.95rem;
}

#enquiry .map-link:hover {
  text-decoration: underline;
}

#enquiry .hours-box {
  background: hsl(275, 41%, 28%);
  color: #fff;
  border-radius: 8px;
  padding: 18px 20px;
  margin-top: 8px;
}

#enquiry .hours-box strong {
  color: #fff;
}

#enquiry .hours-box div {
  color: #f0eaf7;
  font-size: 0.95rem;
  margin-top: 6px;
}

#enquiry .form-card {
  background: hsl(303, 31%, 14%);
  border-radius: 8px;
  padding: 32px;
  height: 100%;
}

#enquiry .form-card h3 {
  font-family: 'Roboto', sans-serif;
  color: #fff;
  font-weight: 700;
  margin-bottom: 8px;
  font-size: 1.3rem;
}

#enquiry .form-card p {
  color: #e7ddf0;
  margin-bottom: 20px;
  font-size: 0.95rem;
}

#enquiry .form-card label {
  color: #f0eaf7;
  font-weight: 600;
  margin-bottom: 6px;
}

#enquiry .form-card .form-control {
  border-radius: 6px;
  border: none;
  padding: 10px 14px;
  margin-bottom: 16px;
}

#enquiry .form-card .form-control:focus {
  box-shadow: 0 0 0 3px hsl(251, 55%, 61%, 0.4);
}

#enquiry .btn-send {
  background: hsl(251, 55%, 61%);
  color: #fff;
  border: none;
  padding: 12px 28px;
  border-radius: 6px;
  font-weight: 600;
  font-family: 'Roboto', sans-serif;
  width: 100%;
}

#enquiry .btn-send:hover {
  background: hsl(275, 41%, 28%);
  color: #fff;
}

@media (max-width: 767px) {
  #enquiry .contact-card, #enquiry .form-card {
    margin-bottom: 24px;
  }
}

#legal {
  background-color: #f8f9fa;
  padding: 52px 0;
  font-family: 'Open Sans', sans-serif;
  color: #222;
}
#legal h2 {
  font-family: 'Roboto', sans-serif;
  color: hsl(275, 41%, 28%);
  font-weight: 700;
  margin-bottom: 24px;
}
#legal .disclaimer-box {
  background-color: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 32px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
#legal .bi-info-circle-fill {
  color: hsl(251, 55%, 61%);
  font-size: 2rem;
  flex-shrink: 0;
}
#legal p {
  font-size: 1rem;
  line-height: 1.7;
  color: #333;
  margin-bottom: 0;
}
@media (max-width: 576px) {
  #legal .disclaimer-box {
    flex-direction: column;
    padding: 24px;
  }
}
