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

:root {
  --primary: hsl(125, 47%, 31%);
  --secondary: hsl(139, 34%, 13%);
  --accent: hsl(305, 57%, 56%);
}

body{
    font-family:'Merriweather', serif;
    color:#222;
    background:#ffffff;
  }
  h1,h2,h3,h4,h5,h6{
    font-family:'Lato', sans-serif;
  }
  .navbar{
    background:#ffffff;
    border-bottom:1px solid #e5e5e5;
    padding-top:14px;
    padding-bottom:14px;
  }
  .navbar-brand{
    display:flex;
    align-items:center;
    gap:10px;
    font-family:'Lato', sans-serif;
    font-weight:700;
    color:var(--secondary);
    font-size:1.25rem;
  }
  .navbar-brand img{
    border-radius:8px;
  }
  .navbar-nav .nav-link{
    color:var(--secondary);
    font-weight:600;
    padding:8px 16px;
    border-radius:6px;
  }
  .navbar-nav .nav-link:hover,
  .navbar-nav .nav-link:focus{
    color:var(--primary);
    background:#f2f7f2;
  }
  .navbar-toggler{
    border-color:var(--primary);
  }
  .navbar-toggler:focus{
    box-shadow:0 0 0 0.2rem rgba(37,110,50,0.25);
  }



  

  .thankyou-section {
    font-family: 'Merriweather', serif;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 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.25);
    max-width: 640px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    overflow: hidden;
  }

  .thankyou-card::before {
    content: "";
    position: absolute;
    top: -60px;
    right: -60px;
    width: 160px;
    height: 160px;
    background: var(--accent);
    opacity: 0.12;
    border-radius: 50%;
  }

  .thankyou-card::after {
    content: "";
    position: absolute;
    bottom: -70px;
    left: -70px;
    width: 200px;
    height: 200px;
    background: var(--primary);
    opacity: 0.1;
    border-radius: 50%;
  }

  .success-icon-wrapper {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    margin-bottom: 1.5rem;
    box-shadow: 0 0 0 8px rgba(41, 128, 65, 0.12);
    animation: popIn 0.6s ease-out;
  }

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

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

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

  .thankyou-text {
    color: #4a4a4a;
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
  }

  .thankyou-highlight {
    color: var(--accent);
    font-weight: 700;
  }

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

  .info-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(41, 128, 65, 0.08);
    color: var(--secondary);
    padding: 0.6rem 1.1rem;
    border-radius: 50rem;
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    border: 1px solid rgba(41, 128, 65, 0.2);
  }

  .info-badge svg {
    width: 18px;
    height: 18px;
    stroke: var(--primary);
    flex-shrink: 0;
  }

  .btn-home {
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    background-color: var(--primary);
    border: none;
    color: #ffffff;
    padding: 0.85rem 2.5rem;
    border-radius: 50rem;
    font-size: 1.05rem;
    letter-spacing: 0.03em;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
    box-shadow: 0 0.5rem 1.25rem rgba(41, 128, 65, 0.35);
  }

  .btn-home:hover {
    background-color: var(--secondary);
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 0.75rem 1.5rem rgba(20, 66, 33, 0.4);
  }

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

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

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

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

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

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

    .info-badges {
      flex-direction: column;
      align-items: stretch;
    }
  }

footer {
  background: hsl(139, 34%, 13%);
  color: #f5f5f5;
  font-family: 'Merriweather', serif;
  padding: 80px 0 24px;
}
footer h5, footer h6 {
  font-family: 'Lato', sans-serif;
  color: #ffffff;
  margin-bottom: 18px;
}
footer a {
  color: #e0e0e0;
  text-decoration: none;
}
footer a:hover {
  color: hsl(305, 57%, 56%);
}
footer p, footer li {
  color: #dcdcdc;
}
.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: hsl(125, 47%, 31%);
  color: #ffffff;
  margin-right: 10px;
  font-size: 1.1rem;
  transition: background 0.3s ease;
}
.footer-social a:hover {
  background: hsl(305, 57%, 56%);
  color: #ffffff;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.15);
  margin-top: 40px;
  padding-top: 20px;
  font-size: 0.9rem;
  color: #cccccc;
}
.footer-list {
  list-style: none;
  padding-left: 0;
}
.footer-list li {
  margin-bottom: 10px;
}

#cookieNotice {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2000;
  background: #ffffff;
  border-top: 3px solid hsl(125, 47%, 31%);
  box-shadow: 0 -2px 12px rgba(0,0,0,0.2);
  max-height: 60vh;
  overflow-y: auto;
  font-family: 'Merriweather', serif;
  color: #222222;
  padding: 20px 0;
}
#cookieNotice h5 {
  font-family: 'Lato', sans-serif;
  color: hsl(139, 34%, 13%);
  font-size: 1.1rem;
}
#cookieNotice p, #cookieNotice li {
  font-size: 0.88rem;
  color: #333333;
}
.cookie-categories {
  list-style: none;
  padding-left: 0;
  margin-bottom: 12px;
}
.cookie-categories li {
  margin-bottom: 6px;
}
.cookie-btn {
  border-radius: 7px;
  padding: 10px 18px;
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  border: 2px solid hsl(125, 47%, 31%);
  transition: all 0.3s ease;
  width: 100%;
}
.btn-accept-all {
  background: hsl(125, 47%, 31%);
  color: #ffffff;
}
.btn-accept-all:hover {
  background: hsl(305, 57%, 56%);
  border-color: hsl(305, 57%, 56%);
  color: #ffffff;
}
.btn-reject-optional {
  background: #ffffff;
  color: hsl(125, 47%, 31%);
}
.btn-reject-optional:hover {
  background: hsl(139, 34%, 13%);
  border-color: hsl(139, 34%, 13%);
  color: #ffffff;
}
.cookie-manage-link {
  color: hsl(305, 57%, 56%);
  text-decoration: underline;
  font-size: 0.85rem;
}

.hero-section{
  background:#f8f9fa;
  padding:80px 0;
  font-family:'Merriweather',serif;
  color:#222;
}
.hero-section h1{
  font-family:'Lato',sans-serif;
  font-weight:700;
  color:hsl(139,34%,13%);
  font-size:2rem;
}
.hero-section h2{
  font-family:'Lato',sans-serif;
  font-weight:400;
  color:hsl(125,47%,31%);
  font-size:1.2rem;
  margin-bottom:20px;
}
.hero-desc{
  font-size:1rem;
  color:#333;
  margin-bottom:20px;
}
.hero-list{
  list-style:none;
  padding:0;
  margin-bottom:25px;
}
.hero-list li{
  margin-bottom:10px;
  font-size:0.98rem;
  color:#222;
}
.hero-list i{
  color:hsl(125,47%,31%);
  margin-right:8px;
}
.hours-box{
  background:hsl(139,34%,13%);
  color:#f8f9fa;
  border-radius:8px;
  padding:18px 20px;
  margin-bottom:25px;
}
.hours-box h3{
  font-family:'Lato',sans-serif;
  font-size:1.05rem;
  color:#f8f9fa;
  margin-bottom:10px;
}
.hours-box p{
  margin:0;
  font-size:0.92rem;
  color:#f0f0f0;
}
.hours-box i{
  color:hsl(305,57%,56%);
  margin-right:8px;
}
.btn-primary-custom{
  background-color:hsl(125,47%,31%);
  border:2px solid hsl(125,47%,31%);
  color:#fff;
  border-radius:8px;
  padding:10px 24px;
  font-family:'Lato',sans-serif;
  font-weight:700;
  transition:all 0.3s ease;
}
.btn-primary-custom:hover{
  background-color:hsl(305,57%,56%);
  border-color:hsl(305,57%,56%);
  color:#fff;
}
.btn-outline-custom{
  background-color:transparent;
  border:2px solid hsl(139,34%,13%);
  color:hsl(139,34%,13%);
  border-radius:8px;
  padding:10px 24px;
  font-family:'Lato',sans-serif;
  font-weight:700;
  transition:all 0.3s ease;
}
.btn-outline-custom:hover{
  background-color:hsl(139,34%,13%);
  color:#fff;
}
.hero-img{
  aspect-ratio: 3 / 2;
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius:8px;
}
@media (max-width:767px){
  .hero-section{padding:50px 0;}
  .hero-section h1{font-size:1.6rem;}
}

#about-us {
  padding: 96px 0;
  background-color: #f8f9fa;
  color: #222;
  font-family: 'Merriweather', serif;
}
#about-us h2, #about-us h3, #about-us h4 {
  font-family: 'Lato', sans-serif;
  color: hsl(139, 34%, 13%);
}
#about-us .lead-text {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #333;
}
#about-us img.story-img {
  aspect-ratio: 3 / 2;
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 8px;
}
#about-us .values-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}
#about-us .values-list li {
  padding: 10px 0 10px 32px;
  position: relative;
  border-bottom: 1px solid #e0e0e0;
}
#about-us .values-list li:last-child {
  border-bottom: none;
}
#about-us .values-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 16px;
  width: 12px;
  height: 12px;
  background-color: hsl(305, 57%, 56%);
  border-radius: 50%;
}
#about-us .team-card {
  background-color: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 28px;
  height: 100%;
}
#about-us .team-card .role {
  color: hsl(305, 57%, 56%);
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 8px;
}
#about-us .team-card p {
  margin-bottom: 0;
  font-size: 0.95rem;
  color: #333;
}
#about-us .stat-strip {
  background-color: hsl(125, 47%, 31%);
  color: #fff;
  border-radius: 8px;
  padding: 24px;
}
#about-us .stat-strip .num {
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-size: 1.6rem;
  color: #fff;
}
#about-us .stat-strip .label {
  font-size: 0.85rem;
  color: #e8f1ea;
}

.services-section {
  padding: 96px 0;
  background-color: #f8f9fa;
  font-family: 'Merriweather', serif;
  color: #222;
}
.services-section h2, .services-section h3 {
  font-family: 'Lato', sans-serif;
}
.services-section .section-title {
  color: hsl(139, 34%, 13%);
  font-weight: 700;
}
.services-section .section-subtitle {
  color: #444;
  max-width: 700px;
  margin: 0 auto;
}
.service-card {
  background-color: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 32px 24px;
  height: 100%;
  text-align: center;
  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(125, 47%, 31%);
}
.service-icon {
  width: 64px;
  height: 64px;
  border-radius: 8px;
  background-color: hsl(125, 47%, 31%);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px auto;
  font-size: 28px;
  transition: background-color 0.25s ease;
}
.service-card:hover .service-icon {
  background-color: hsl(305, 57%, 56%);
}
.service-title {
  color: hsl(139, 34%, 13%);
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 12px;
}
.service-desc {
  color: #333;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 16px;
}
.service-price {
  display: inline-block;
  background-color: #f0f7f1;
  color: hsl(125, 47%, 31%);
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 6px;
  font-family: 'Lato', sans-serif;
}

#offer .offer-section {padding:96px 0;background:#f8f9fa;font-family:'Merriweather',serif;color:#222;}
#offer .offer-card {background:#fff;border:2px solid hsl(125,47%,31%);border-radius:8px;padding:48px;}
#offer .offer-card h2 {font-family:'Lato',sans-serif;color:hsl(139,34%,13%);font-weight:700;margin-bottom:20px;}
#offer .offer-card p.desc {font-size:1.05rem;line-height:1.7;color:#333;}
#offer .deadline-box {background:hsl(139,34%,13%);color:#fff;border-radius:8px;padding:20px 24px;display:inline-flex;align-items:center;gap:12px;margin:24px 0;}
#offer .deadline-box i {font-size:1.8rem;color:hsl(305,57%,56%);}
#offer .deadline-box .deadline-text {font-size:0.9rem;color:#e8f0e9;margin-bottom:2px;}
#offer .deadline-box .deadline-date {font-size:1.4rem;font-weight:700;font-family:'Lato',sans-serif;color:#fff;}
#offer .benefit-list {list-style:none;padding:0;margin:24px 0;}
#offer .benefit-list li {display:flex;align-items:flex-start;gap:12px;margin-bottom:14px;font-size:1rem;color:#333;}
#offer .benefit-list li i {color:hsl(125,47%,31%);font-size:1.3rem;flex-shrink:0;margin-top:2px;}
#offer .btn-offer {background:hsl(305,57%,56%);color:#fff;border:none;border-radius:8px;padding:14px 32px;font-family:'Lato',sans-serif;font-weight:700;font-size:1.05rem;transition:background 0.2s;}
#offer .btn-offer:hover {background:hsl(305,57%,46%);color:#fff;}
#offer .discount-badge {display:inline-block;background:hsl(125,47%,31%);color:#fff;font-family:'Lato',sans-serif;font-weight:700;font-size:1.1rem;padding:8px 18px;border-radius:6px;margin-bottom:20px;}
@media(max-width:767px){
#offer .offer-card {padding:28px;}
#offer .deadline-box {flex-direction:row;padding:16px 18px;}
}

#reach-us .contact-section {background:#f8f9fa;padding:96px 0;font-family:'Merriweather',serif;color:#222;}
#reach-us .contact-section h2 {font-family:'Lato',sans-serif;color:hsl(139,34%,13%);font-weight:700;}
#reach-us .contact-section .lead-text {color:#333;font-size:1.05rem;}
#reach-us .contact-card {background:#fff;border-radius:8px;padding:32px;box-shadow:0 2px 10px rgba(0,0,0,0.06);}
#reach-us .contact-form label {font-family:'Lato',sans-serif;font-weight:600;color:hsl(139,34%,13%);margin-bottom:4px;}
#reach-us .contact-form .form-control {border-radius:7px;border:1px solid #ccc;padding:10px 14px;font-family:'Merriweather',serif;}
#reach-us .contact-form .form-control:focus {border-color:hsl(125,47%,31%);box-shadow:0 0 0 0.2rem hsla(125,47%,31%,0.15);}
#reach-us .btn-submit {background:hsl(125,47%,31%);color:#fff;border:none;border-radius:7px;padding:12px 28px;font-family:'Lato',sans-serif;font-weight:700;transition:background 0.2s ease;}
#reach-us .btn-submit:hover {background:hsl(305,57%,56%);color:#fff;}
#reach-us .info-block {background:hsl(139,34%,13%);border-radius:8px;padding:32px;color:#f8f9fa;}
#reach-us .info-block h3 {font-family:'Lato',sans-serif;color:#fff;font-weight:700;font-size:1.3rem;margin-bottom:20px;}
#reach-us .info-block a {color:#f8f9fa;text-decoration:none;border-bottom:1px dotted rgba(255,255,255,0.5);}
#reach-us .info-block a:hover {color:hsl(305,57%,56%);border-color:hsl(305,57%,56%);}
#reach-us .info-item {display:flex;align-items:flex-start;gap:12px;margin-bottom:18px;}
#reach-us .info-item i {color:hsl(305,57%,56%);font-size:1.2rem;margin-top:3px;}
#reach-us .info-item div {line-height:1.5;}
#reach-us .map-link {display:inline-block;margin-top:6px;color:hsl(305,57%,56%);font-weight:700;font-size:0.95rem;}
#reach-us .hours-list {list-style:none;padding:0;margin:0;}
#reach-us .hours-list li {display:flex;justify-content:space-between;padding:4px 0;border-bottom:1px solid rgba(255,255,255,0.1);font-size:0.95rem;}
#reach-us .hours-list li:last-child {border-bottom:none;}
@media (max-width:767px){
#reach-us .contact-section {padding:64px 0;}
#reach-us .contact-card, #reach-us .info-block {padding:24px;}
}

.disclaimer-section {
  background-color: #f8f9fa;
  padding: 96px 0;
  font-family: 'Merriweather', serif;
  color: #222;
}
.disclaimer-section h2 {
  font-family: 'Lato', sans-serif;
  color: hsl(139, 34%, 13%);
  font-weight: 700;
}
.disclaimer-icon {
  color: hsl(125, 47%, 31%);
  font-size: 2.2rem;
}
.disclaimer-card {
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 32px;
}
.disclaimer-card p {
  line-height: 1.8;
  color: #333;
  margin-bottom: 0;
}

#about-body {
  font-family: 'Merriweather', serif;
  color: #222;
  background: #ffffff;
  padding: 96px 0;
}
#about-body h1, #about-body h2, #about-body h3 {
  font-family: 'Lato', sans-serif;
  color: hsl(139, 34%, 13%);
}
#about-body .lead-text {
  font-size: 1.05rem;
  line-height: 1.8;
}
#about-body .section-block {
  margin-bottom: 72px;
}
#about-body img {
  aspect-ratio: 3 / 2;
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 8px;
}
#about-body .highlight-box {
  background: hsl(125, 47%, 31%);
  color: #ffffff;
  border-radius: 8px;
  padding: 28px;
}
#about-body .highlight-box h3 {
  color: #ffffff;
}
#about-body .values-list li {
  margin-bottom: 12px;
  padding-left: 4px;
}
#about-body .team-card {
  background: #f8f9fa;
  border: 1px solid #dee2e6;
  border-radius: 8px;
  padding: 24px;
  height: 100%;
}
#about-body .team-card h4 {
  color: hsl(125, 47%, 31%);
  margin-bottom: 4px;
}
#about-body .team-role {
  color: hsl(305, 57%, 56%);
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 10px;
}
#about-body .qa-item {
  border-left: 4px solid hsl(125, 47%, 31%);
  padding-left: 20px;
  margin-bottom: 28px;
}
#about-body .qa-item h4 {
  font-size: 1.1rem;
  color: hsl(139, 34%, 13%);
}
#about-body .cta-final {
  background: hsl(139, 34%, 13%);
  color: #ffffff;
  border-radius: 8px;
  padding: 48px 32px;
  text-align: center;
}
#about-body .cta-final h2 {
  color: #ffffff;
}
#about-body .cta-final p {
  color: #f1f1f1;
}
#about-body .btn-cta {
  background: hsl(305, 57%, 56%);
  color: #ffffff;
  border: none;
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  padding: 12px 32px;
  border-radius: 6px;
}
#about-body .btn-cta:hover {
  background: hsl(305, 57%, 46%);
  color: #ffffff;
}
#about-body .stat-num {
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-size: 1.8rem;
  color: hsl(125, 47%, 31%);
}
@media (max-width: 767px) {
  #about-body {
    padding: 64px 0;
  }
  #about-body .section-block {
    margin-bottom: 48px;
  }
}

#contact-page {
  background: #f8f9fa;
  color: #222;
  font-family: 'Merriweather', serif;
  padding: 96px 0;
}
#contact-page h1, #contact-page h2, #contact-page h3 {
  font-family: 'Lato', sans-serif;
  color: hsl(139, 34%, 13%);
}
#contact-page .lead-text {
  color: #333;
  max-width: 700px;
}
#contact-page .card {
  border: none;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}
#contact-page .form-label {
  font-family: 'Lato', sans-serif;
  font-weight: 600;
  color: #222;
}
#contact-page .form-control {
  border-radius: 6px;
  border: 1px solid #ccc;
}
#contact-page .form-control:focus {
  border-color: hsl(125, 47%, 31%);
  box-shadow: 0 0 0 0.2rem hsla(125, 47%, 31%, 0.25);
}
#contact-page .btn-primary {
  background-color: hsl(125, 47%, 31%);
  border-color: hsl(125, 47%, 31%);
  color: #fff;
  border-radius: 8px;
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  padding: 12px 28px;
}
#contact-page .btn-primary:hover {
  background-color: hsl(139, 34%, 13%);
  border-color: hsl(139, 34%, 13%);
  color: #fff;
}
#contact-page .info-card {
  background: hsl(139, 34%, 13%);
  color: #f8f9fa;
  border-radius: 8px;
  padding: 32px;
}
#contact-page .info-card h3 {
  color: #f8f9fa;
}
#contact-page .info-card a {
  color: hsl(305, 57%, 66%);
  text-decoration: none;
}
#contact-page .info-card a:hover {
  color: #fff;
  text-decoration: underline;
}
#contact-page .info-card p {
  color: #f0f0f0;
  margin-bottom: 6px;
}
#contact-page .hours-box {
  background: rgba(255,255,255,0.08);
  border-radius: 6px;
  padding: 16px;
  margin-top: 16px;
}
#contact-page .map-link {
  display: inline-block;
  margin-top: 8px;
  color: hsl(305, 57%, 56%);
  font-weight: 600;
  text-decoration: underline;
}
#contact-page .map-link:hover {
  color: hsl(305, 57%, 40%);
}
#contact-page .badge-info {
  background: hsl(125, 47%, 31%);
  color: #fff;
  border-radius: 6px;
  padding: 6px 14px;
  font-size: 0.9rem;
  display: inline-block;
  margin-top: 20px;
}
#contact-page .cta-box {
  background: hsl(125, 47%, 31%);
  color: #fff;
  border-radius: 8px;
  padding: 40px;
  text-align: center;
  margin-top: 80px;
}
#contact-page .cta-box h2 {
  color: #fff;
}
#contact-page .cta-box .btn-light-custom {
  background: #fff;
  color: hsl(139, 34%, 13%);
  border-radius: 8px;
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  padding: 12px 32px;
  border: none;
  text-decoration: none;
  display: inline-block;
  margin-top: 16px;
}
#contact-page .btn-light-custom:hover {
  background: hsl(305, 57%, 56%);
  color: #fff;
}
@media (max-width: 767px) {
  #contact-page {
    padding: 60px 0;
  }
  #contact-page .info-card,
  #contact-page .cta-box {
    padding: 24px;
  }
}

#services-content {
  background: #f8f9fa;
  color: #222;
  font-family: 'Merriweather', serif;
  padding: 80px 0;
}
#services-content h1, #services-content h2, #services-content h3, #services-content h4 {
  font-family: 'Lato', sans-serif;
}
#services-content .intro-block {
  max-width: 900px;
  margin: 0 auto 64px auto;
}
#services-content .intro-block h1 {
  color: hsl(139, 34%, 13%);
  font-weight: 700;
  margin-bottom: 24px;
}
#services-content .intro-block p {
  font-size: 1.02rem;
  line-height: 1.7;
}
#services-content .subheading-block {
  margin-bottom: 48px;
}
#services-content .subheading-block h3 {
  color: hsl(125, 47%, 31%);
  font-weight: 700;
  margin-bottom: 14px;
  border-left: 4px solid hsl(305, 57%, 56%);
  padding-left: 12px;
}
#services-content .subheading-block p {
  line-height: 1.7;
}
#services-content .services-grid-title {
  color: hsl(139, 34%, 13%);
  font-weight: 700;
  margin-bottom: 48px;
  text-align: center;
}
#services-content .card {
  border: 1px solid #dfe3e0;
  border-radius: 8px;
  background: #fff;
  height: 100%;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  padding: 28px 22px;
}
#services-content .card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 24px rgba(20, 60, 30, 0.15);
  border-color: hsl(125, 47%, 31%);
}
#services-content .card .icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: 8px;
  background: hsl(125, 47%, 31%);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 18px;
}
#services-content .card h4 {
  color: hsl(139, 34%, 13%);
  font-size: 1.12rem;
  font-weight: 700;
  margin-bottom: 10px;
}
#services-content .card p {
  font-size: 0.94rem;
  line-height: 1.6;
  color: #333;
  margin-bottom: 14px;
}
#services-content .card .price-tag {
  display: inline-block;
  background: hsl(305, 57%, 56%);
  color: #fff;
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 6px;
  font-size: 0.98rem;
}
#services-content .cta-box {
  margin-top: 88px;
  background: hsl(139, 34%, 13%);
  border-radius: 8px;
  padding: 48px 32px;
  text-align: center;
  color: #f8f9fa;
}
#services-content .cta-box h3 {
  color: #fff;
  font-weight: 700;
  margin-bottom: 14px;
}
#services-content .cta-box p {
  color: #e6ece7;
  max-width: 640px;
  margin: 0 auto 24px auto;
}
#services-content .cta-box .btn-cta {
  background: hsl(305, 57%, 56%);
  color: #fff;
  border: none;
  padding: 12px 32px;
  border-radius: 6px;
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  text-decoration: none;
  display: inline-block;
}
#services-content .cta-box .btn-cta:hover {
  background: hsl(125, 47%, 31%);
  color: #fff;
}
@media (max-width: 767px) {
  #services-content { padding: 56px 0; }
  #services-content .cta-box { margin-top: 56px; }
}
