@import url('https://fonts.googleapis.com/css2?family=Lato:wght@400;700;900&family=Merriweather:wght@300;400;700&display=swap');

:root {
  --primary: hsl(145, 56%, 34%);
  --secondary: hsl(295, 46%, 19%);
  --accent: hsl(355, 75%, 61%);
}

body {
    font-family: 'Merriweather', serif;
    color: #222;
    background-color: #fff;
  }
  h1, h2, h3, h4, h5, h6 {
    font-family: 'Lato', sans-serif;
  }
  .navbar {
    background-color: #fff;
    border-bottom: 1px solid #eee;
  }
  .navbar-brand {
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    color: var(--secondary);
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .navbar-brand img {
    border-radius: 16px;
  }
  .nav-link {
    color: #222;
    font-weight: 600;
    font-family: 'Lato', sans-serif;
    padding: 8px 14px !important;
    border-radius: 16px;
  }
  .nav-link:hover {
    color: var(--primary);
    background-color: #f5f5f5;
  }
  .navbar-toggler {
    border-radius: 16px;
  }

footer {
  background: hsl(295, 46%, 19%);
  color: #f8f9fa;
  font-family: 'Merriweather', serif;
  padding: 48px 0 24px;
  border-radius: 24px 24px 0 0;
}
footer h5 {
  font-family: 'Lato', sans-serif;
  color: #fff;
  margin-bottom: 16px;
}
footer a {
  color: #f8f9fa;
  text-decoration: none;
}
footer a:hover {
  color: hsl(355, 75%, 61%);
  text-decoration: underline;
}
footer .footer-desc {
  color: #e5e5e5;
  font-size: 0.95rem;
}
.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 16px;
  background: hsl(145, 56%, 34%);
  color: #fff;
  margin-right: 10px;
  font-size: 1.1rem;
  transition: background 0.3s ease;
}
.footer-social a:hover {
  background: hsl(355, 75%, 61%);
  color: #fff;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.15);
  margin-top: 32px;
  padding-top: 16px;
  font-size: 0.9rem;
  color: #dcdcdc;
}
#privacyBox {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2000;
  background: #fff;
  color: #222;
  border-top: 3px solid hsl(145, 56%, 34%);
  border-radius: 24px 24px 0 0;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
  max-height: 60vh;
  overflow-y: auto;
  padding: 20px;
  font-family: 'Merriweather', serif;
}
#privacyBox h5 {
  font-family: 'Lato', sans-serif;
  color: hsl(295, 46%, 19%);
  font-size: 1.05rem;
}
#privacyBox p, #privacyBox li {
  font-size: 0.85rem;
  color: #333;
}
#privacyBox ul {
  padding-left: 18px;
  margin-bottom: 12px;
}
.cookie-btn {
  font-family: 'Lato', sans-serif;
  border-radius: 16px;
  padding: 10px 18px;
  font-weight: 700;
  font-size: 0.9rem;
  border: none;
  transition: all 0.3s ease;
  flex: 1;
}
.btn-accept-all {
  background: hsl(145, 56%, 34%);
  color: #fff;
}
.btn-accept-all:hover {
  background: hsl(145, 56%, 26%);
  color: #fff;
}
.btn-reject-optional {
  background: hsl(355, 75%, 61%);
  color: #fff;
}
.btn-reject-optional:hover {
  background: hsl(355, 65%, 51%);
  color: #fff;
}
.cookie-manage-link {
  font-size: 0.85rem;
  color: hsl(295, 46%, 19%);
  text-decoration: underline;
}
.cookie-manage-link:hover {
  color: hsl(355, 75%, 61%);
}

#faq-main {
  font-family: 'Merriweather', serif;
  color: #222;
  background-color: #f8f9fa;
  padding: 52px 0;
}
#faq-main h1, #faq-main h2, #faq-main h3 {
  font-family: 'Lato', sans-serif;
  color: hsl(295, 46%, 19%);
}
#faq-main .faq-header {
  margin-bottom: 40px;
}
#faq-main .faq-header p {
  max-width: 720px;
}
#faq-main .accordion-item {
  border: 1px solid #dee2e6;
  border-radius: 16px !important;
  overflow: hidden;
  margin-bottom: 16px;
}
#faq-main .accordion-button {
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  color: hsl(295, 46%, 19%);
  background-color: #fff;
}
#faq-main .accordion-button:not(.collapsed) {
  color: #fff;
  background-color: hsl(145, 56%, 34%);
  box-shadow: none;
}
#faq-main .accordion-button:focus {
  box-shadow: 0 0 0 0.2rem hsla(145, 56%, 34%, 0.25);
}
#faq-main .accordion-button::after {
  filter: none;
}
#faq-main .accordion-body {
  background-color: #fff;
  color: #333;
  line-height: 1.7;
}
#faq-main .extra-qa {
  background-color: #fff;
  border-radius: 20px;
  padding: 32px;
  margin-top: 52px;
}
#faq-main .extra-qa h4 {
  color: hsl(295, 46%, 19%);
  font-family: 'Lato', sans-serif;
  font-weight: 700;
}
#faq-main .extra-qa p {
  color: #333;
}
#faq-main .cta-box {
  background-color: hsl(145, 56%, 34%);
  border-radius: 20px;
  padding: 40px;
  margin-top: 52px;
  text-align: center;
  color: #fff;
}
#faq-main .cta-box h2 {
  color: #fff;
}
#faq-main .cta-box p {
  color: #f0f0f0;
}
#faq-main .cta-box .btn-accent {
  background-color: hsl(355, 75%, 61%);
  border: none;
  color: #fff;
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  padding: 12px 32px;
  border-radius: 16px;
}
#faq-main .cta-box .btn-accent:hover {
  background-color: hsl(355, 75%, 51%);
  color: #fff;
}
#faq-main .badge-info {
  background-color: hsl(145, 56%, 34%);
  color: #fff;
  border-radius: 12px;
  padding: 6px 14px;
  font-family: 'Lato', sans-serif;
  font-size: 0.85rem;
  display: inline-block;
  margin-bottom: 16px;
}

#about-section {
  font-family: 'Merriweather', serif;
  color: #222;
  background-color: #fff;
  padding: 52px 0;
}
#about-section h1, #about-section h2, #about-section h3 {
  font-family: 'Lato', sans-serif;
}
#about-section .about-hero {
  background-color: hsl(145, 56%, 34%);
  color: #fff;
  border-radius: 20px;
  padding: 40px;
  margin-bottom: 50px;
}
#about-section .about-hero h1 {
  color: #fff;
}
#about-section .about-hero p {
  color: #f5f5f5;
}
#about-section .about-img {
  aspect-ratio: 3 / 2;
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 20px;
}
#about-section .value-card {
  background-color: #f8f9fa;
  border-radius: 18px;
  padding: 24px;
  height: 100%;
  border: 1px solid #e9ecef;
}
#about-section .value-card h3 {
  color: hsl(145, 56%, 34%);
  font-size: 1.2rem;
}
#about-section .team-card {
  background-color: #fff;
  border: 2px solid hsl(145, 56%, 34%);
  border-radius: 18px;
  padding: 22px;
  height: 100%;
}
#about-section .team-card h3 {
  color: hsl(295, 46%, 19%);
  font-size: 1.15rem;
  margin-bottom: 2px;
}
#about-section .team-card .role {
  color: hsl(355, 75%, 61%);
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 10px;
}
#about-section .faq-item {
  background-color: #f8f9fa;
  border-radius: 16px;
  padding: 20px 24px;
  margin-bottom: 16px;
}
#about-section .faq-item h3 {
  color: hsl(145, 56%, 34%);
  font-size: 1.1rem;
}
#about-section .cta-box {
  background-color: hsl(295, 46%, 19%);
  color: #fff;
  border-radius: 20px;
  padding: 36px;
  text-align: center;
  margin-top: 20px;
}
#about-section .cta-box h2 {
  color: #fff;
}
#about-section .cta-box p {
  color: #f0e6f0;
}
#about-section .btn-cta {
  background-color: hsl(355, 75%, 61%);
  color: #fff;
  border: none;
  border-radius: 16px;
  padding: 12px 32px;
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  text-decoration: none;
  display: inline-block;
}
#about-section .btn-cta:hover {
  background-color: hsl(355, 75%, 50%);
  color: #fff;
}
#about-section .section-title {
  color: hsl(295, 46%, 19%);
  margin-bottom: 24px;
}
@media (max-width: 767px) {
  #about-section .about-hero {
    padding: 26px;
  }
}





.thankyou-section {
  font-family: 'Merriweather', serif;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 3rem 1rem;
  background: linear-gradient(135deg, hsl(145, 56%, 97%) 0%, hsl(295, 46%, 97%) 100%);
}

.thankyou-card {
  background: #fff;
  border-radius: 1.25rem;
  padding: 3rem 2rem;
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.1);
  max-width: 640px;
  width: 100%;
  margin: 0 auto;
  text-align: center;
  border-top: 6px solid var(--primary);
}

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

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

.icon-wrapper {
  width: 100px;
  height: 100px;
  margin: 0 auto 1.75rem;
  border-radius: 50%;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0.5rem 1.5rem hsla(145, 56%, 34%, 0.35);
  animation: pop-in 0.5s ease-out;
}

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

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

.info-strip {
  background: hsl(145, 56%, 96%);
  border-radius: 0.75rem;
  padding: 1rem 1.25rem;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  text-align: left;
  margin-bottom: 1rem;
}

.info-strip svg {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  stroke: var(--primary);
  margin-top: 0.2rem;
}

.info-strip p {
  margin: 0;
  font-size: 0.95rem;
  color: #444;
}

.btn-primary-custom {
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  background-color: var(--primary);
  border-color: var(--primary);
  color: #fff;
  padding: 0.75rem 2.25rem;
  border-radius: 50rem;
  font-size: 1.05rem;
  transition: all 0.25s ease;
}

.btn-primary-custom:hover {
  background-color: var(--secondary);
  border-color: var(--secondary);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 0.5rem 1.25rem hsla(295, 46%, 19%, 0.3);
}

.accent-line {
  width: 60px;
  height: 4px;
  background: var(--accent);
  border-radius: 2px;
  margin: 1.25rem auto 1.5rem;
}

@media (max-width: 576px) {
  .thankyou-card {
    padding: 2rem 1.25rem;
  }
  .thankyou-heading {
    font-size: 1.6rem;
  }
  .icon-wrapper {
    width: 80px;
    height: 80px;
  }
  .icon-wrapper svg {
    width: 42px;
    height: 42px;
  }
}

#services-content {
  font-family: 'Merriweather', serif;
  color: #222;
  background: #fff;
  padding: 48px 0;
}
#services-content h1, #services-content h2, #services-content h3 {
  font-family: 'Lato', sans-serif;
}
#services-content .page-header {
  margin-bottom: 48px;
}
#services-content .page-header h1 {
  color: hsl(295, 46%, 19%);
  font-weight: 700;
  font-size: 2.2rem;
}
#services-content .page-header p {
  font-size: 1.05rem;
  max-width: 720px;
}
#services-content .service-list-row {
  border-top: 2px solid hsl(145, 56%, 34%);
}
#services-content .service-item {
  padding: 24px 16px;
  border-bottom: 1px solid #dcdcdc;
  transition: background-color 0.25s ease, transform 0.25s ease;
  border-radius: 16px;
}
#services-content .service-item:hover {
  background-color: #f5f9f6;
  transform: translateY(-3px);
}
#services-content .service-icon {
  font-size: 2rem;
  color: hsl(145, 56%, 34%);
  margin-bottom: 10px;
}
#services-content .service-item h3 {
  font-size: 1.15rem;
  color: hsl(295, 46%, 19%);
  font-weight: 700;
  margin-bottom: 8px;
}
#services-content .service-item p {
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 10px;
}
#services-content .price-tag {
  display: inline-block;
  background: hsl(145, 56%, 34%);
  color: #fff;
  padding: 5px 14px;
  border-radius: 18px;
  font-weight: 700;
  font-size: 0.95rem;
}
#services-content .col-divider {
  border-left: 1px solid #dcdcdc;
}
@media (max-width: 767px) {
  #services-content .col-divider {
    border-left: none;
  }
}
#services-content .steps-block {
  background: #f8f9fa;
  border-radius: 20px;
  padding: 36px 28px;
  margin-top: 52px;
}
#services-content .steps-block h2 {
  color: hsl(295, 46%, 19%);
  font-weight: 700;
  margin-bottom: 20px;
}
#services-content .step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: hsl(355, 75%, 61%);
  color: #fff;
  border-radius: 50%;
  font-weight: 700;
  font-family: 'Lato', sans-serif;
  margin-right: 12px;
  flex-shrink: 0;
}
#services-content .step-row {
  display: flex;
  align-items: flex-start;
  margin-bottom: 16px;
}
#services-content .cta-block {
  background: hsl(145, 56%, 34%);
  color: #fff;
  border-radius: 20px;
  padding: 40px 28px;
  margin-top: 52px;
  text-align: center;
}
#services-content .cta-block h2 {
  color: #fff;
  font-weight: 700;
  margin-bottom: 12px;
}
#services-content .cta-block p {
  color: #f0f0f0;
  margin-bottom: 20px;
}
#services-content .cta-btn {
  background: hsl(355, 75%, 61%);
  color: #fff;
  border: none;
  padding: 12px 32px;
  border-radius: 30px;
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  text-decoration: none;
  display: inline-block;
  transition: background-color 0.25s ease;
}
#services-content .cta-btn:hover {
  background: hsl(355, 75%, 50%);
  color: #fff;
}

#contact-content {
  font-family: 'Merriweather', serif;
  color: #222;
  background: #f8f9fa;
  padding: 52px 0;
}
#contact-content h1,
#contact-content h2,
#contact-content h3 {
  font-family: 'Lato', sans-serif;
}
#contact-content .intro-text {
  max-width: 700px;
}
#contact-content .contact-card {
  background: #fff;
  border-radius: 20px;
  padding: 32px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
  height: 100%;
}
#contact-content .form-card {
  background: #fff;
  border-radius: 20px;
  padding: 32px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
}
#contact-content .form-control {
  border-radius: 14px;
  border: 1px solid #ccc;
  font-family: 'Merriweather', serif;
  padding: 10px 14px;
}
#contact-content .form-control:focus {
  border-color: hsl(145, 56%, 34%);
  box-shadow: 0 0 0 0.2rem hsla(145, 56%, 34%, 0.2);
}
#contact-content .btn-primary-custom {
  background-color: hsl(145, 56%, 34%);
  border: none;
  color: #fff;
  border-radius: 16px;
  padding: 12px 28px;
  font-family: 'Lato', sans-serif;
  font-weight: 700;
}
#contact-content .btn-primary-custom:hover {
  background-color: hsl(145, 56%, 26%);
  color: #fff;
}
#contact-content .info-icon {
  color: hsl(145, 56%, 34%);
  font-size: 1.3rem;
  min-width: 28px;
}
#contact-content .info-block {
  display: flex;
  gap: 12px;
  margin-bottom: 18px;
  align-items: flex-start;
}
#contact-content a {
  color: hsl(145, 56%, 34%);
  text-decoration: none;
}
#contact-content a:hover {
  color: hsl(355, 75%, 61%);
  text-decoration: underline;
}
#contact-content .hours-badge {
  background: hsl(295, 46%, 19%);
  color: #fff;
  border-radius: 14px;
  padding: 14px 18px;
  margin-top: 10px;
}
#contact-content .map-hint {
  font-size: 0.95rem;
  margin-top: 4px;
  color: #444;
}
#contact-content .final-cta {
  background: hsl(145, 56%, 34%);
  color: #fff;
  border-radius: 20px;
  padding: 32px;
  text-align: center;
  margin-top: 48px;
}
#contact-content .final-cta h2 {
  color: #fff;
}
#contact-content .final-cta .btn {
  background: hsl(355, 75%, 61%);
  color: #fff;
  border: none;
  border-radius: 16px;
  padding: 12px 30px;
  font-family: 'Lato', sans-serif;
  font-weight: 700;
}
#contact-content .final-cta .btn:hover {
  background: #fff;
  color: hsl(145, 56%, 34%);
}
@media (max-width: 767px) {
  #contact-content .contact-card,
  #contact-content .form-card {
    padding: 22px;
  }
}

.hero-section {
    background-color: #f8f9fa;
    padding: 52px 0;
    font-family: 'Merriweather', serif;
    color: #222;
  }
  .hero-section h1 {
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    color: hsl(295, 46%, 19%);
    font-size: 2.1rem;
  }
  .hero-section h2 {
    font-family: 'Lato', sans-serif;
    font-weight: 400;
    color: hsl(145, 56%, 34%);
    font-size: 1.3rem;
    margin-bottom: 20px;
  }
  .hero-section p.desc {
    font-size: 1rem;
    line-height: 1.7;
    color: #333;
  }
  .hero-list {
    list-style: none;
    padding-left: 0;
    margin: 20px 0;
  }
  .hero-list li {
    margin-bottom: 10px;
    font-size: 0.98rem;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: #222;
  }
  .hero-list i {
    color: hsl(145, 56%, 34%);
    font-size: 1.1rem;
    margin-top: 3px;
  }
  .hours-box {
    background-color: #fff;
    border: 2px solid hsl(145, 56%, 34%);
    border-radius: 20px;
    padding: 18px 22px;
    margin: 22px 0;
  }
  .hours-box h3 {
    font-family: 'Lato', sans-serif;
    font-size: 1.05rem;
    color: hsl(295, 46%, 19%);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
  }
  .hours-box p {
    margin-bottom: 4px;
    font-size: 0.92rem;
    color: #333;
  }
  .hero-buttons {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 24px;
  }
  .btn-primary-custom {
    background-color: hsl(355, 75%, 61%);
    border: none;
    color: #fff;
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    padding: 12px 28px;
    border-radius: 18px;
    transition: background-color 0.3s ease, transform 0.2s ease;
  }
  .btn-primary-custom:hover {
    background-color: hsl(355, 75%, 50%);
    color: #fff;
    transform: translateY(-2px);
  }
  .btn-secondary-custom {
    background-color: transparent;
    border: 2px solid hsl(145, 56%, 34%);
    color: hsl(145, 56%, 34%);
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    padding: 10px 26px;
    border-radius: 18px;
    transition: all 0.3s ease;
  }
  .btn-secondary-custom:hover {
    background-color: hsl(145, 56%, 34%);
    color: #fff;
    transform: translateY(-2px);
  }
  .hero-img {
    aspect-ratio: 3 / 2;
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 22px;
  }
  @media (max-width: 767px) {
    .hero-section h1 {
      font-size: 1.7rem;
    }
    .hero-section {
      padding: 40px 0;
    }
  }

#story {
  padding: 52px 0;
  background: #ffffff;
  color: #222222;
  font-family: 'Merriweather', serif;
}
#story h2, #story h3 {
  font-family: 'Lato', sans-serif;
}
#story .section-heading {
  color: hsl(145, 56%, 34%);
  font-weight: 700;
  margin-bottom: 24px;
}
#story .lead-text {
  font-size: 1.05rem;
  line-height: 1.75;
  margin-bottom: 18px;
}
#story .img-wrap {
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 24px;
}
#story .img-wrap img {
  aspect-ratio: 3 / 2;
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}
#story .values-box {
  background: hsl(145, 56%, 34%);
  color: #ffffff;
  border-radius: 20px;
  padding: 28px 24px;
  margin-top: 40px;
}
#story .values-box h3 {
  color: #ffffff;
  font-weight: 700;
  margin-bottom: 14px;
}
#story .values-box ul {
  margin: 0;
  padding-left: 20px;
}
#story .values-box ul li {
  margin-bottom: 8px;
  line-height: 1.6;
}
#story .team-heading {
  margin-top: 48px;
  margin-bottom: 20px;
  color: hsl(295, 46%, 19%);
  font-weight: 700;
}
#story .team-card {
  background: #f8f9fa;
  border-radius: 18px;
  padding: 22px 20px;
  height: 100%;
  border: 1px solid #e6e6e6;
}
#story .team-card .name {
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  color: hsl(295, 46%, 19%);
  margin-bottom: 2px;
}
#story .team-card .role {
  font-family: 'Lato', sans-serif;
  font-size: 0.9rem;
  color: hsl(355, 75%, 61%);
  font-weight: 700;
  margin-bottom: 10px;
}
#story .team-card .desc {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #333333;
}
@media (max-width: 767px) {
  #story { padding: 40px 0; }
}

.services-section{
  padding:52px 0;
  background:#f8f9fa;
}
.services-section h2{
  font-family:'Lato',sans-serif;
  color:#222;
  font-weight:700;
}
.services-section .lead-text{
  font-family:'Merriweather',serif;
  color:#333;
  max-width:700px;
}
.service-card{
  background:#fff;
  border:1px solid #e2e2e2;
  border-radius:20px;
  padding:28px;
  height:100%;
  transition:transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.service-card:hover{
  transform:translateY(-6px);
  box-shadow:0 10px 24px rgba(0,0,0,0.12);
  border-color:hsl(145, 56%, 34%);
}
.service-icon{
  width:60px;
  height:60px;
  border-radius:16px;
  background:hsl(145, 56%, 34%);
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:1.6rem;
  margin-bottom:16px;
}
.service-card h3{
  font-family:'Lato',sans-serif;
  font-weight:700;
  color:#222;
  font-size:1.25rem;
  margin-bottom:10px;
}
.service-card p{
  font-family:'Merriweather',serif;
  color:#444;
  font-size:0.96rem;
  line-height:1.6;
  margin-bottom:16px;
}
.service-price{
  display:inline-block;
  font-family:'Lato',sans-serif;
  font-weight:700;
  color:hsl(295, 46%, 19%);
  background:#f1e9f4;
  padding:6px 16px;
  border-radius:14px;
  font-size:1rem;
}
.service-card .btn-accent{
  background:hsl(355, 75%, 61%);
  color:#fff;
  border:none;
  border-radius:14px;
  font-family:'Lato',sans-serif;
  font-weight:700;
  padding:8px 18px;
}
.service-card .btn-accent:hover{
  background:hsl(355, 75%, 51%);
  color:#fff;
}
@media(max-width:767px){
  .services-section{padding:40px 0;}
}

#benefits {
  padding: 52px 0;
  background-color: #f8f9fa;
  font-family: 'Merriweather', serif;
}
#benefits h2 {
  font-family: 'Lato', sans-serif;
  color: hsl(295, 46%, 19%);
  font-weight: 700;
}
#benefits .lead-text {
  color: #333;
  max-width: 700px;
  margin: 0 auto;
}
#benefits .advantage-card {
  background: #fff;
  border: 1px solid #e9ecef;
  border-radius: 20px;
  padding: 28px 24px;
  height: 100%;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
}
#benefits .advantage-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.12);
  background-color: hsl(145, 56%, 34%);
}
#benefits .advantage-card:hover h3,
#benefits .advantage-card:hover p {
  color: #fff;
}
#benefits .advantage-card:hover .icon-wrap {
  background-color: #fff;
  color: hsl(145, 56%, 34%);
}
#benefits .icon-wrap {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background-color: hsl(145, 56%, 34%);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 18px;
  transition: all 0.25s ease;
}
#benefits h3 {
  font-family: 'Lato', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: hsl(295, 46%, 19%);
  margin-bottom: 10px;
  transition: color 0.25s ease;
}
#benefits p {
  color: #444;
  font-size: 0.96rem;
  line-height: 1.6;
  margin-bottom: 0;
  transition: color 0.25s ease;
}
#benefits .accent-badge {
  display: inline-block;
  background-color: hsl(355, 75%, 61%);
  color: #fff;
  font-family: 'Lato', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 12px;
  margin-bottom: 14px;
}

#deal {
  font-family: 'Merriweather', serif;
  color: #222;
  padding: 48px 0;
}
#deal h2, #deal h3, #deal h4 {
  font-family: 'Lato', sans-serif;
}
#deal .deal-card {
  background-color: #fff;
  border: 2px solid hsl(145, 56%, 34%);
  border-radius: 20px;
  padding: 40px;
}
#deal .deal-badge {
  background-color: hsl(355, 75%, 61%);
  color: #fff;
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  display: inline-block;
  padding: 8px 18px;
  border-radius: 16px;
  font-size: 0.95rem;
  margin-bottom: 16px;
}
#deal .deal-heading {
  color: hsl(295, 46%, 19%);
  font-weight: 700;
  margin-bottom: 20px;
}
#deal .deal-text {
  color: #333;
  line-height: 1.7;
  margin-bottom: 24px;
}
#deal .deal-date-box {
  background-color: hsl(145, 56%, 34%);
  color: #fff;
  border-radius: 18px;
  padding: 20px 24px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
}
#deal .deal-date-box .label {
  font-size: 0.95rem;
  color: #f0f0f0;
  display: block;
  margin-bottom: 4px;
}
#deal .deal-date-box .date-value {
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
  font-family: 'Lato', sans-serif;
}
#deal .deal-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 28px;
}
#deal .deal-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  color: #333;
}
#deal .deal-list i {
  color: hsl(145, 56%, 34%);
  font-size: 1.2rem;
  margin-top: 2px;
}
#deal .deal-cta-btn {
  background-color: hsl(355, 75%, 61%);
  color: #fff;
  border: none;
  border-radius: 16px;
  padding: 14px 34px;
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  text-decoration: none;
  display: inline-block;
  transition: opacity 0.2s ease;
}
#deal .deal-cta-btn:hover {
  opacity: 0.9;
  color: #fff;
}
@media (max-width: 576px) {
  #deal .deal-card {
    padding: 28px 20px;
  }
  #deal .deal-date-box {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
}

#feedback {
  padding: 52px 0;
  background: #f8f9fa;
  font-family: 'Merriweather', serif;
  color: #222;
}
#feedback h2 {
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  color: hsl(295, 46%, 19%);
}
#feedback .lead-text {
  max-width: 700px;
  color: #333;
}
#feedback .review-card {
  background: #fff;
  border-radius: 18px;
  padding: 24px;
  height: 100%;
  border: 1px solid #e9e9e9;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  display: flex;
  flex-direction: column;
}
#feedback .review-stars {
  color: hsl(355, 75%, 61%);
  font-size: 0.95rem;
  margin-bottom: 10px;
  letter-spacing: 2px;
}
#feedback .review-text {
  font-size: 0.98rem;
  line-height: 1.55;
  color: #2a2a2a;
  flex-grow: 1;
}
#feedback .review-footer {
  margin-top: 16px;
  padding-top: 12px;
  border-top: 1px solid #eee;
  display: flex;
  align-items: center;
  gap: 12px;
}
#feedback .review-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: hsl(145, 56%, 34%);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}
#feedback .review-name {
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-size: 0.92rem;
  color: #222;
  margin: 0;
}
#feedback .review-location {
  font-size: 0.8rem;
  color: #666;
  margin: 0;
}
#feedback .review-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: hsl(145, 56%, 34%);
  background: rgba(35,120,66,0.08);
  padding: 3px 10px;
  border-radius: 20px;
  margin-bottom: 10px;
}
#feedback .stats-strip {
  background: hsl(295, 46%, 19%);
  color: #fff;
  border-radius: 20px;
  padding: 24px;
  margin-top: 48px;
}
#feedback .stats-strip .num {
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-size: 1.8rem;
  color: hsl(355, 75%, 61%);
}
#feedback .stats-strip .lbl {
  font-size: 0.85rem;
  color: #eee;
}
@media (max-width: 767px) {
  #feedback .review-card { padding: 20px; }
}

#enquiry {
  font-family: 'Merriweather', serif;
  color: #222;
  background-color: #f8f9fa;
  padding: 52px 0;
}
#enquiry h2, #enquiry h3 {
  font-family: 'Lato', sans-serif;
  color: #222;
}
#enquiry .contact-card {
  background-color: #fff;
  border-radius: 20px;
  padding: 32px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
  height: 100%;
}
#enquiry .form-label {
  font-weight: 700;
  color: #222;
}
#enquiry .form-control {
  border-radius: 16px;
  border: 1px solid #ccc;
  padding: 10px 16px;
}
#enquiry .form-control:focus {
  border-color: hsl(145, 56%, 34%);
  box-shadow: 0 0 0 0.2rem hsla(145, 56%, 34%, 0.2);
}
#enquiry .btn-submit {
  background-color: hsl(145, 56%, 34%);
  color: #fff;
  border: none;
  border-radius: 18px;
  padding: 12px 28px;
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  transition: background-color 0.2s ease;
}
#enquiry .btn-submit:hover {
  background-color: hsl(145, 56%, 26%);
  color: #fff;
}
#enquiry .info-block {
  background-color: hsl(295, 46%, 19%);
  color: #f8f9fa;
  border-radius: 20px;
  padding: 32px;
  height: 100%;
}
#enquiry .info-block h3 {
  color: #fff;
}
#enquiry .info-block a {
  color: hsl(355, 75%, 61%);
  text-decoration: none;
  font-weight: 700;
}
#enquiry .info-block a:hover {
  text-decoration: underline;
  color: #fff;
}
#enquiry .info-item {
  margin-bottom: 20px;
}
#enquiry .info-item strong {
  display: block;
  color: #f8f9fa;
  font-family: 'Lato', sans-serif;
  margin-bottom: 4px;
}
#enquiry .find-us {
  font-size: 0.95rem;
  color: #e8e0ea;
}
#enquiry .badge-hours {
  background-color: hsl(145, 56%, 34%);
  color: #fff;
  border-radius: 12px;
  padding: 4px 10px;
  font-size: 0.85rem;
  display: inline-block;
  margin-top: 6px;
}

#notice {
  font-family: 'Merriweather', serif;
  background-color: #f8f9fa;
  padding: 48px 0;
}
#notice h2 {
  font-family: 'Lato', sans-serif;
  color: hsl(295, 46%, 19%);
  font-weight: 700;
}
#notice .disclaimer-box {
  background-color: #fff;
  border-radius: 20px;
  padding: 32px;
  border: 1px solid #e2e2e2;
}
#notice .bi-info-circle-fill {
  color: hsl(145, 56%, 34%);
  font-size: 2rem;
}
#notice p {
  color: #333;
  line-height: 1.7;
  margin-bottom: 0;
}
