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

:root {
  --primary: hsl(132, 56%, 32%);
  --secondary: hsl(146, 45%, 14%);
  --accent: hsl(312, 76%, 52%);
}

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

footer {
  background: hsl(146, 45%, 14%);
  color: #f8f9fa;
  font-family: 'Playfair Display', serif;
  padding: 48px 0 24px;
}
footer h5, footer h6 {
  font-family: 'Ubuntu', sans-serif;
  color: #fff;
}
footer a {
  color: #f8f9fa;
  text-decoration: none;
}
footer a:hover {
  color: hsl(312, 76%, 52%);
}
footer .footer-desc {
  color: #e0e0e0;
}
footer hr {
  border-color: rgba(255,255,255,0.2);
}
.social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: hsl(132, 56%, 32%);
  color: #fff;
  margin-right: 10px;
  font-size: 1.2rem;
  transition: background 0.3s ease;
}
.social-icons a:hover {
  background: hsl(312, 76%, 52%);
  color: #fff;
}
#cookiePanel {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1050;
  background: #fff;
  color: #222;
  border-top: 3px solid hsl(132, 56%, 32%);
  box-shadow: 0 -4px 12px rgba(0,0,0,0.15);
  padding: 16px 0;
  max-height: 60vh;
  overflow-y: auto;
  font-family: 'Playfair Display', serif;
}
#cookiePanel h5 {
  font-family: 'Ubuntu', sans-serif;
  color: hsl(146, 45%, 14%);
  font-size: 1.1rem;
  margin-bottom: 8px;
}
#cookiePanel p, #cookiePanel li {
  font-size: 0.9rem;
  color: #333;
  margin-bottom: 6px;
}
#cookiePanel ul {
  padding-left: 18px;
  margin-bottom: 10px;
}
.cookie-btn {
  font-family: 'Ubuntu', sans-serif;
  border-radius: 8px;
  padding: 8px 18px;
  font-weight: 600;
  font-size: 0.9rem;
  border: 2px solid transparent;
  transition: all 0.3s ease;
  width: 100%;
}
.btn-accept-all {
  background: hsl(132, 56%, 32%);
  color: #fff;
}
.btn-accept-all:hover {
  background: hsl(132, 56%, 24%);
  color: #fff;
}
.btn-reject-optional {
  background: #fff;
  color: hsl(146, 45%, 14%);
  border-color: hsl(146, 45%, 14%);
}
.btn-reject-optional:hover {
  background: hsl(146, 45%, 14%);
  color: #fff;
}
.btn-manage {
  color: hsl(312, 76%, 52%);
  text-decoration: underline;
  font-size: 0.85rem;
}
.btn-manage:hover {
  color: hsl(312, 76%, 40%);
}
@media (max-width: 575px) {
  #cookiePanel h5 { font-size: 1rem; }
  #cookiePanel p, #cookiePanel li { font-size: 0.82rem; }
}

#about-body { font-family: 'Playfair Display', serif; color: #262626; background: #f8f9fa; padding: 52px 0; }
#about-body h1, #about-body h2, #about-body h3 { font-family: 'Ubuntu', sans-serif; color: hsl(146, 45%, 14%); }
#about-body .lead-text { font-size: 1.1rem; line-height: 1.75; }
#about-body img { aspect-ratio: 3 / 2; width: 100%; height: auto; object-fit: cover; border-radius: 8px; }
#about-body .value-card { background: #fff; border: 1px solid #e2e2e2; border-radius: 8px; padding: 24px; height: 100%; }
#about-body .value-card h3 { font-size: 1.15rem; margin-bottom: 10px; color: hsl(132, 56%, 32%); }
#about-body .stat-box { background: hsl(146, 45%, 14%); color: #f8f9fa; border-radius: 8px; padding: 20px; text-align: center; }
#about-body .stat-box .num { font-family: 'Ubuntu', sans-serif; font-size: 1.9rem; font-weight: 700; color: hsl(312, 76%, 52%); display: block; }
#about-body .qa-item { background: #fff; border-left: 4px solid hsl(132, 56%, 32%); border-radius: 8px; padding: 18px 20px; margin-bottom: 16px; }
#about-body .qa-item h3 { font-size: 1.05rem; margin-bottom: 8px; }
#about-body .cta-box { background: hsl(132, 56%, 32%); border-radius: 8px; padding: 32px; text-align: center; }
#about-body .cta-box h2 { color: #fff; }
#about-body .cta-box p { color: #f0f0f0; }
#about-body .btn-accent { background: hsl(312, 76%, 52%); color: #fff; border: none; border-radius: 6px; padding: 12px 28px; font-family: 'Ubuntu', sans-serif; }
#about-body .btn-accent:hover { background: hsl(312, 76%, 42%); color: #fff; }
#about-body a { color: hsl(132, 56%, 32%); }
#about-body hr { border-top: 1px solid #ddd; margin: 40px 0; }

#faq-section {
  background-color: #f8f9fa;
  color: #222;
  font-family: 'Playfair Display', serif;
  padding: 52px 0;
}
#faq-section h1, #faq-section h2, #faq-section h3 {
  font-family: 'Ubuntu', sans-serif;
  color: hsl(146, 45%, 14%);
}
#faq-section .intro-block {
  max-width: 800px;
  margin: 0 auto 40px auto;
}
#faq-section .intro-block p {
  font-size: 1.05rem;
  line-height: 1.65;
}
#faq-section .subheading-block {
  margin-bottom: 36px;
}
#faq-section .subheading-block h2 {
  font-size: 1.4rem;
  margin-bottom: 12px;
  border-left: 4px solid hsl(132, 56%, 32%);
  padding-left: 12px;
}
#faq-section .subheading-block p {
  line-height: 1.65;
  font-size: 1rem;
}
#faq-section .accordion-item {
  border: 1px solid #dfe3e0;
  border-radius: 8px;
  margin-bottom: 12px;
  overflow: hidden;
}
#faq-section .accordion-button {
  font-family: 'Ubuntu', sans-serif;
  font-weight: 600;
  color: #222;
  background-color: #ffffff;
  border-radius: 8px;
}
#faq-section .accordion-button:not(.collapsed) {
  background-color: hsl(132, 56%, 32%);
  color: #ffffff;
  box-shadow: none;
}
#faq-section .accordion-button:focus {
  box-shadow: 0 0 0 0.15rem hsla(132, 56%, 32%, 0.35);
}
#faq-section .accordion-button::after {
  filter: none;
}
#faq-section .accordion-body {
  background-color: #ffffff;
  color: #333;
  line-height: 1.7;
  font-size: 0.98rem;
}
#faq-section .cta-box {
  background-color: hsl(146, 45%, 14%);
  color: #ffffff;
  border-radius: 8px;
  padding: 32px 24px;
  text-align: center;
  margin-top: 48px;
}
#faq-section .cta-box h2 {
  color: #ffffff;
}
#faq-section .cta-box p {
  color: #e8ece9;
}
#faq-section .cta-box a.btn {
  background-color: hsl(312, 76%, 52%);
  border-color: hsl(312, 76%, 52%);
  color: #ffffff;
  font-family: 'Ubuntu', sans-serif;
  font-weight: 600;
  border-radius: 6px;
  padding: 10px 28px;
}
#faq-section .cta-box a.btn:hover {
  background-color: hsl(312, 76%, 42%);
  border-color: hsl(312, 76%, 42%);
  color: #ffffff;
}
#faq-section .meta-line {
  font-size: 0.92rem;
  color: #555;
  margin-bottom: 4px;
}





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

.thankyou-card {
  background: #fff;
  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.25);
  animation: fadeInUp 0.7s ease-out;
}

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

.thankyou-icon-wrap {
  width: 100px;
  height: 100px;
  margin: 0 auto 1.75rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0.5rem 1.5rem rgba(199, 21, 133, 0.25);
  animation: popIn 0.6s ease-out 0.2s both;
}

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

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

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

.thankyou-text {
  color: #495057;
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 0.75rem;
}

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

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

.btn-thankyou {
  font-family: 'Ubuntu', sans-serif;
  background-color: var(--primary);
  border: none;
  color: #fff;
  padding: 0.85rem 2.5rem;
  border-radius: 50px;
  font-weight: 500;
  font-size: 1.05rem;
  letter-spacing: 0.3px;
  transition: all 0.3s ease;
  box-shadow: 0 0.4rem 1rem rgba(23, 92, 46, 0.3);
}

.btn-thankyou:hover {
  background-color: var(--secondary);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 0.6rem 1.4rem rgba(23, 92, 46, 0.4);
}

.thankyou-note {
  font-size: 0.9rem;
  color: #8a8f98;
  margin-top: 1.75rem;
  font-style: italic;
}

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

#services-content {
  background: #f8f9fa;
  color: #222;
  font-family: 'Playfair Display', serif;
  padding: 52px 0;
}
#services-content h1, #services-content h2, #services-content h3, #services-content h4 {
  font-family: 'Ubuntu', sans-serif;
}
#services-content .page-intro {
  max-width: 780px;
  margin: 0 auto 40px auto;
  text-align: center;
}
#services-content .page-intro h1 {
  color: hsl(146, 45%, 14%);
  font-size: 2.1rem;
  margin-bottom: 14px;
}
#services-content .page-intro p {
  color: #333;
  font-size: 1.05rem;
}
#services-content .service-card {
  background: #fff;
  border: 1px solid #e2e2e2;
  border-radius: 8px;
  padding: 28px 20px;
  text-align: center;
  height: 100%;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
#services-content .service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 22px rgba(0,0,0,0.12);
  border-color: hsl(132, 56%, 32%);
}
#services-content .icon-wrap {
  width: 64px;
  height: 64px;
  border-radius: 8px;
  background: hsl(132, 56%, 32%);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px auto;
  font-size: 1.7rem;
}
#services-content .service-card:hover .icon-wrap {
  background: hsl(312, 76%, 52%);
}
#services-content .service-card h3 {
  font-size: 1.15rem;
  color: hsl(146, 45%, 14%);
  margin-bottom: 10px;
}
#services-content .service-card p {
  color: #444;
  font-size: 0.95rem;
  line-height: 1.55;
  margin-bottom: 14px;
}
#services-content .price-tag {
  display: inline-block;
  background: hsl(146, 45%, 14%);
  color: #fff;
  font-family: 'Ubuntu', sans-serif;
  font-weight: 500;
  padding: 6px 16px;
  border-radius: 6px;
  font-size: 0.95rem;
}
#services-content .qa-section {
  max-width: 860px;
  margin: 48px auto 0 auto;
}
#services-content .qa-section h2 {
  color: hsl(146, 45%, 14%);
  font-size: 1.6rem;
  margin-bottom: 24px;
  text-align: center;
}
#services-content .qa-item {
  background: #fff;
  border: 1px solid #e2e2e2;
  border-radius: 8px;
  padding: 18px 22px;
  margin-bottom: 14px;
}
#services-content .qa-item h4 {
  color: hsl(132, 56%, 32%);
  font-size: 1.05rem;
  margin-bottom: 8px;
}
#services-content .qa-item p {
  color: #333;
  margin: 0;
  font-size: 0.97rem;
}
#services-content .cta-box {
  max-width: 720px;
  margin: 48px auto 0 auto;
  text-align: center;
  background: hsl(132, 56%, 32%);
  color: #fff;
  border-radius: 8px;
  padding: 34px 24px;
}
#services-content .cta-box h2 {
  color: #fff;
  font-size: 1.5rem;
  margin-bottom: 12px;
}
#services-content .cta-box p {
  color: #f0f0f0;
  margin-bottom: 20px;
}
#services-content .cta-box a.btn {
  background: hsl(312, 76%, 52%);
  color: #fff;
  border: none;
  padding: 10px 28px;
  border-radius: 6px;
  font-family: 'Ubuntu', sans-serif;
  text-decoration: none;
  font-weight: 500;
}
#services-content .cta-box a.btn:hover {
  background: #fff;
  color: hsl(146, 45%, 14%);
}

#contact-main {
  background: #f8f9fa;
  color: #222;
  padding: 52px 0;
  font-family: 'Playfair Display', serif;
}
#contact-main h1, #contact-main h2, #contact-main h3 {
  font-family: 'Ubuntu', sans-serif;
  color: hsl(146, 45%, 14%);
}
#contact-main .intro-text {
  max-width: 700px;
  margin: 0 auto 32px;
  color: #333;
}
#contact-main .card {
  border-radius: 8px;
  border: 1px solid #e0e0e0;
  background: #fff;
}
#contact-main .form-card {
  padding: 32px;
}
#contact-main .info-card {
  padding: 32px;
  background: hsl(146, 45%, 14%);
  color: #f8f9fa;
}
#contact-main .info-card h2 {
  color: #f8f9fa;
}
#contact-main .info-card a {
  color: #f8f9fa;
  text-decoration: underline;
}
#contact-main .info-card a:hover {
  color: hsl(312, 76%, 65%);
}
#contact-main .form-label {
  font-weight: 600;
  color: #222;
}
#contact-main .form-control {
  border-radius: 6px;
  border: 1px solid #ccc;
  font-family: 'Playfair Display', serif;
}
#contact-main .form-control:focus {
  border-color: hsl(132, 56%, 32%);
  box-shadow: 0 0 0 0.2rem hsla(132, 56%, 32%, 0.25);
}
#contact-main .btn-primary {
  background-color: hsl(132, 56%, 32%);
  border-color: hsl(132, 56%, 32%);
  color: #fff;
  border-radius: 6px;
  padding: 10px 28px;
  font-family: 'Ubuntu', sans-serif;
}
#contact-main .btn-primary:hover {
  background-color: hsl(312, 76%, 52%);
  border-color: hsl(312, 76%, 52%);
  color: #fff;
}
#contact-main .info-list {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
}
#contact-main .info-list li {
  margin-bottom: 14px;
  padding-left: 4px;
}
#contact-main .info-list strong {
  display: block;
  font-family: 'Ubuntu', sans-serif;
  font-size: 0.9rem;
  color: hsl(312, 76%, 70%);
  margin-bottom: 2px;
}
#contact-main .hours-box {
  background: rgba(255,255,255,0.08);
  border-radius: 6px;
  padding: 16px;
  margin-top: 16px;
}
#contact-main .find-us {
  font-size: 0.95rem;
  color: #e8e8e8;
  margin-top: 8px;
}
#contact-main .find-us a {
  color: hsl(312, 76%, 70%);
}
#contact-main .cta-strip {
  text-align: center;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid #dcdcdc;
}
#contact-main .cta-strip a.btn {
  background-color: hsl(312, 76%, 52%);
  border-color: hsl(312, 76%, 52%);
  color: #fff;
  padding: 12px 32px;
  border-radius: 6px;
  font-family: 'Ubuntu', sans-serif;
  text-decoration: none;
  display: inline-block;
}
#contact-main .cta-strip a.btn:hover {
  background-color: hsl(132, 56%, 32%);
  border-color: hsl(132, 56%, 32%);
}
@media (max-width: 767px) {
  #contact-main .form-card, #contact-main .info-card {
    padding: 20px;
  }
}

.hero-pool-section{background:#f8f9fa;padding:48px 0;}
.hero-pool-section h1{font-family:'Ubuntu',sans-serif;font-weight:700;color:hsl(146, 45%, 14%);font-size:2.2rem;}
.hero-pool-section h2{font-family:'Ubuntu',sans-serif;font-weight:400;color:hsl(132, 56%, 32%);font-size:1.3rem;margin-bottom:16px;}
.hero-pool-section p.hero-desc{font-family:'Playfair Display',serif;color:#333;font-size:1.05rem;margin-bottom:20px;}
.hero-pool-section .hours-box{background:#fff;border:1px solid #e0e0e0;border-radius:8px;padding:16px 20px;margin-bottom:20px;font-family:'Playfair Display',serif;color:#222;}
.hero-pool-section .hours-box strong{font-family:'Ubuntu',sans-serif;color:hsl(146, 45%, 14%);}
.hero-pool-section ul.key-points{list-style:none;padding-left:0;margin-bottom:24px;}
.hero-pool-section ul.key-points li{font-family:'Playfair Display',serif;color:#333;margin-bottom:10px;display:flex;align-items:flex-start;gap:10px;}
.hero-pool-section ul.key-points li i{color:hsl(132, 56%, 32%);font-size:1.15rem;margin-top:2px;}
.hero-pool-section .btn-main-cta{background:hsl(132, 56%, 32%);border:none;color:#fff;font-family:'Ubuntu',sans-serif;border-radius:8px;padding:12px 28px;font-weight:500;transition:all 0.25s ease;}
.hero-pool-section .btn-main-cta:hover{background:hsl(146, 45%, 14%);color:#fff;transform:translateY(-2px);}
.hero-pool-section .btn-secondary-cta{background:transparent;border:2px solid hsl(312, 76%, 52%);color:hsl(312, 76%, 52%);font-family:'Ubuntu',sans-serif;border-radius:8px;padding:10px 26px;font-weight:500;transition:all 0.25s ease;}
.hero-pool-section .btn-secondary-cta:hover{background:hsl(312, 76%, 52%);color:#fff;transform:translateY(-2px);}
.hero-pool-section .hero-img{aspect-ratio:3/2;width:100%;height:auto;object-fit:cover;border-radius:8px;}
@media (max-width:767px){
  .hero-pool-section h1{font-size:1.7rem;}
  .hero-pool-section{padding:36px 0;}
}

#story {
  background: #f8f9fa;
  color: #222;
  padding: 52px 0;
  font-family: 'Playfair Display', serif;
}
#story h2, #story h3 {
  font-family: 'Ubuntu', sans-serif;
  color: hsl(146, 45%, 14%);
}
#story .lead-text {
  color: #333;
  font-size: 1.05rem;
  line-height: 1.7;
}
#story img {
  aspect-ratio: 3 / 2;
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 8px;
}
#story .value-card {
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 18px;
  height: 100%;
}
#story .value-card h5 {
  font-family: 'Ubuntu', sans-serif;
  color: hsl(132, 56%, 32%);
  font-size: 1.05rem;
}
#story .stat-box {
  background: hsl(146, 45%, 14%);
  color: #fff;
  border-radius: 8px;
  padding: 16px 10px;
  text-align: center;
}
#story .stat-box .num {
  font-family: 'Ubuntu', sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: hsl(312, 76%, 52%);
}
#story .stat-box .label {
  font-size: 0.85rem;
  color: #f8f9fa;
}

.services-section{background:#f8f9fa;padding:52px 0;font-family:'Playfair Display',serif;color:#222;}
.services-section h2{font-family:'Ubuntu',sans-serif;color:hsl(146,45%,14%);font-weight:700;}
.services-section .lead-text{color:#333;max-width:700px;margin:0 auto 32px;}
.service-card{background:#fff;border:1px solid #e0e0e0;border-radius:8px;padding:28px 22px;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(132,56%,32%);}
.service-icon{width:56px;height:56px;border-radius:8px;background:hsl(132,56%,32%);color:#fff;display:flex;align-items:center;justify-content:center;font-size:1.6rem;margin-bottom:16px;}
.service-card h3{font-family:'Ubuntu',sans-serif;font-size:1.15rem;color:hsl(146,45%,14%);margin-bottom:10px;}
.service-card p{font-size:0.96rem;color:#333;line-height:1.55;margin-bottom:14px;}
.service-price{display:inline-block;font-family:'Ubuntu',sans-serif;font-weight:700;color:#fff;background:hsl(312,76%,52%);padding:6px 14px;border-radius:6px;font-size:0.95rem;}
@media(max-width:767px){.services-section{padding:40px 0;}}

#answers {
  padding: 52px 0;
  background: #f8f9fa;
  font-family: 'Playfair Display', serif;
  color: #222;
}
#answers h2 {
  font-family: 'Ubuntu', sans-serif;
  color: hsl(146, 45%, 14%);
  font-weight: 700;
}
#answers p.lead-text {
  color: #333;
  max-width: 720px;
}
#answers .accordion-item {
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 12px;
}
#answers .accordion-button {
  font-family: 'Ubuntu', sans-serif;
  font-weight: 600;
  color: hsl(146, 45%, 14%);
  background-color: #fff;
  border-radius: 8px;
}
#answers .accordion-button:not(.collapsed) {
  background-color: hsl(132, 56%, 32%);
  color: #fff;
  box-shadow: none;
}
#answers .accordion-button:focus {
  box-shadow: 0 0 0 0.2rem rgba(38, 128, 62, 0.25);
}
#answers .accordion-button::after {
  filter: none;
}
#answers .accordion-button:not(.collapsed)::after {
  filter: brightness(0) invert(1);
}
#answers .accordion-body {
  background-color: #fff;
  color: #333;
  font-size: 1rem;
  line-height: 1.6;
}
#answers .accent-text {
  color: hsl(312, 76%, 52%);
  font-weight: 600;
}

#offer {
  font-family: 'Playfair Display', serif;
  background-color: #f8f9fa;
  color: #222;
  padding: 50px 0;
}
#offer h2, #offer h3 {
  font-family: 'Ubuntu', sans-serif;
}
#offer .offer-card {
  background-color: #fff;
  border: 2px solid hsl(132, 56%, 32%);
  border-radius: 8px;
  padding: 32px;
}
#offer .offer-badge {
  background-color: hsl(312, 76%, 52%);
  color: #fff;
  font-family: 'Ubuntu', sans-serif;
  font-weight: 700;
  display: inline-block;
  padding: 6px 16px;
  border-radius: 6px;
  font-size: 0.95rem;
  margin-bottom: 12px;
}
#offer .offer-date-box {
  background-color: hsl(146, 45%, 14%);
  color: #fff;
  border-radius: 8px;
  padding: 16px 20px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: 'Ubuntu', sans-serif;
  font-size: 1.15rem;
  font-weight: 500;
}
#offer .offer-date-box i {
  font-size: 1.6rem;
  color: hsl(312, 76%, 52%);
}
#offer .offer-list {
  list-style: none;
  padding-left: 0;
  margin: 0;
}
#offer .offer-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
  font-size: 1.02rem;
}
#offer .offer-list i {
  color: hsl(132, 56%, 32%);
  font-size: 1.2rem;
  margin-top: 3px;
}
#offer .btn-offer {
  background-color: hsl(132, 56%, 32%);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 12px 28px;
  font-family: 'Ubuntu', sans-serif;
  font-weight: 500;
  font-size: 1.05rem;
  transition: background-color 0.2s ease;
}
#offer .btn-offer:hover {
  background-color: hsl(146, 45%, 14%);
  color: #fff;
}
@media (max-width: 767px) {
  #offer .offer-card {
    padding: 22px;
  }
  #offer .offer-date-box {
    font-size: 1rem;
    padding: 14px 16px;
  }
}

#get-in-touch {
  padding: 50px 0;
  background-color: #f8f9fa;
  color: #222;
}
#get-in-touch h2 {
  font-family: 'Ubuntu', sans-serif;
  color: hsl(146, 45%, 14%);
  font-weight: 700;
}
#get-in-touch p, #get-in-touch label, #get-in-touch li {
  font-family: 'Playfair Display', serif;
  color: #333;
}
#get-in-touch .contact-card {
  background-color: #fff;
  border-radius: 8px;
  padding: 28px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
#get-in-touch .form-label {
  font-weight: 600;
  color: #222;
}
#get-in-touch .form-control {
  border-radius: 6px;
  border: 1px solid #ccc;
}
#get-in-touch .form-control:focus {
  border-color: hsl(132, 56%, 32%);
  box-shadow: 0 0 0 0.2rem hsla(132, 56%, 32%, 0.25);
}
#get-in-touch .btn-primary-custom {
  background-color: hsl(132, 56%, 32%);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 10px 28px;
  font-family: 'Ubuntu', sans-serif;
  font-weight: 600;
}
#get-in-touch .btn-primary-custom:hover {
  background-color: hsl(146, 45%, 14%);
  color: #fff;
}
#get-in-touch .info-box {
  background-color: hsl(146, 45%, 14%);
  color: #f8f9fa;
  border-radius: 8px;
  padding: 24px;
}
#get-in-touch .info-box a {
  color: #f8f9fa;
  text-decoration: underline;
}
#get-in-touch .info-box a:hover {
  color: hsl(312, 76%, 52%);
}
#get-in-touch .info-box .icon-label {
  color: hsl(132, 90%, 65%);
  font-weight: 600;
}
#get-in-touch .map-link {
  color: hsl(312, 76%, 52%);
  font-weight: 600;
  text-decoration: none;
}
#get-in-touch .map-link:hover {
  text-decoration: underline;
}
#get-in-touch .hours-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}
#get-in-touch .hours-list li {
  padding: 3px 0;
  color: #f8f9fa;
}

#important {
  font-family: 'Playfair Display', serif;
  background-color: #f8f9fa;
  padding: 48px 0;
  color: #222;
}
#important h2 {
  font-family: 'Ubuntu', sans-serif;
  color: hsl(146, 45%, 14%);
  font-weight: 700;
}
#important .disclaimer-box {
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  border-left: 5px solid hsl(132, 56%, 32%);
  border-radius: 8px;
  padding: 32px;
}
#important .bi-info-circle-fill {
  color: hsl(132, 56%, 32%);
  font-size: 2rem;
}
#important p {
  color: #333;
  line-height: 1.7;
  margin-bottom: 0;
}
