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

:root {
  --primary: hsl(94, 33%, 37%);
  --secondary: hsl(100, 20%, 23%);
  --accent: hsl(86, 45%, 43%);
}

body{
  font-family: 'Libre Baskerville', serif;
  color: #262626;
  background-color: #fdfdfb;
}
h1,h2,h3,h4,h5,h6{
  font-family: 'Quicksand', sans-serif;
  color: var(--secondary);
}
a{
  color: var(--primary);
}
a:hover{
  color: var(--accent);
}
.navbar{
  border-bottom: 1px solid #e5e5e0;
  background-color: #ffffff;
}
.navbar-brand{
  font-family: 'Quicksand', sans-serif;
  font-weight: 700;
  color: var(--secondary);
  display: flex;
  align-items: center;
  gap: 12px;
}
.navbar-brand:hover{
  color: var(--primary);
}
.navbar-nav .nav-link{
  font-family: 'Quicksand', sans-serif;
  font-weight: 600;
  color: var(--secondary);
  padding: 8px 16px;
}
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link:focus{
  color: var(--primary);
}
.navbar-toggler{
  border-color: var(--primary);
}
.navbar-toggler:focus{
  box-shadow: 0 0 0 0.2rem hsla(94, 33%, 37%, 0.25);
}

footer {
  background: hsl(100, 20%, 23%);
  color: #f5f5f5;
  font-family: 'Libre Baskerville', serif;
  padding: 80px 0 40px;
  margin-top: 80px;
  border-radius: 24px 24px 0 0;
}
footer h3, footer h5 {
  font-family: 'Quicksand', sans-serif;
  color: #ffffff;
}
footer a {
  color: #f5f5f5;
  text-decoration: none;
}
footer a:hover {
  color: hsl(86, 45%, 43%);
  text-decoration: underline;
}
footer .footer-desc {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #e0e0e0;
}
footer hr {
  border-color: rgba(255,255,255,0.2);
  margin: 40px 0 20px;
}
.social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: hsl(94, 33%, 37%);
  color: #ffffff;
  margin-right: 10px;
  font-size: 1.1rem;
  transition: background 0.3s ease;
}
.social-icons a:hover {
  background: hsl(86, 45%, 43%);
  color: #ffffff;
}
.footer-links li {
  margin-bottom: 8px;
}
#consentBar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #ffffff;
  color: #222222;
  z-index: 2000;
  border-top: 3px solid hsl(94, 33%, 37%);
  box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
  font-family: 'Libre Baskerville', serif;
  max-height: 60vh;
  overflow-y: auto;
  border-radius: 16px 16px 0 0;
}
#consentBar h5 {
  font-family: 'Quicksand', sans-serif;
  color: hsl(100, 20%, 23%);
  font-size: 1.1rem;
}
#consentBar p, #consentBar li {
  font-size: 0.85rem;
  color: #333333;
}
.consent-btn {
  border-radius: 16px;
  padding: 10px 18px;
  font-family: 'Quicksand', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  border: 2px solid transparent;
  transition: all 0.3s ease;
  width: 100%;
}
.btn-accept-all {
  background: hsl(94, 33%, 37%);
  color: #ffffff;
}
.btn-accept-all:hover {
  background: hsl(86, 45%, 43%);
  color: #ffffff;
}
.btn-reject-optional {
  background: #ffffff;
  color: hsl(100, 20%, 23%);
  border-color: hsl(100, 20%, 23%);
}
.btn-reject-optional:hover {
  background: hsl(100, 20%, 23%);
  color: #ffffff;
}
.consent-manage-link {
  color: hsl(94, 33%, 37%);
  font-size: 0.85rem;
  text-decoration: underline;
}



  

  .thankyou-section {
    font-family: 'Libre Baskerville', serif;
    background: linear-gradient(135deg, hsl(94, 33%, 96%) 0%, hsl(86, 45%, 94%) 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 4rem 1rem;
  }

  .thankyou-card {
    background: #ffffff;
    border-radius: 1.25rem;
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.1);
    padding: 3rem 2rem;
    max-width: 640px;
    margin: 0 auto;
    text-align: center;
    border: 1px solid hsl(94, 33%, 90%);
  }

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

  .thankyou-text {
    color: var(--secondary);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 0.75rem;
  }

  .icon-wrapper {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.75rem;
    box-shadow: 0 0.5rem 1.5rem hsla(94, 33%, 37%, 0.35);
    animation: popIn 0.5s ease-out;
  }

  .icon-wrapper svg {
    width: 50px;
    height: 50px;
    stroke: #fff;
    stroke-width: 3;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

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

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

  .info-badge {
    background: hsl(94, 33%, 95%);
    border: 1px solid hsl(94, 33%, 85%);
    border-radius: 0.75rem;
    padding: 0.85rem 1.25rem;
    font-family: 'Quicksand', sans-serif;
    font-weight: 600;
    color: var(--secondary);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

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

  .btn-home {
    font-family: 'Quicksand', sans-serif;
    font-weight: 600;
    background-color: var(--primary);
    border: none;
    color: #fff;
    padding: 0.75rem 2.25rem;
    border-radius: 0.75rem;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    box-shadow: 0 0.25rem 0.75rem hsla(94, 33%, 37%, 0.3);
  }

  .btn-home:hover {
    background-color: var(--accent);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 0.5rem 1.25rem hsla(86, 45%, 43%, 0.4);
  }

  @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: 40px;
      height: 40px;
    }
  }

#contact-body {
  background-color: #f8f9fa;
  color: #222;
  font-family: 'Libre Baskerville', serif;
  padding: 96px 0;
}
#contact-body .container-narrow {
  max-width: 740px;
  margin: 0 auto;
  padding: 0 20px;
}
#contact-body h1, #contact-body h2, #contact-body h3 {
  font-family: 'Quicksand', sans-serif;
  color: hsl(100, 20%, 23%);
}
#contact-body p {
  line-height: 1.75;
}
#contact-body .intro {
  margin-bottom: 64px;
}
#contact-body .info-block {
  background-color: #fff;
  border: 1px solid #e2e6df;
  border-radius: 20px;
  padding: 32px;
  margin-bottom: 56px;
}
#contact-body dl {
  margin: 0;
}
#contact-body dt {
  font-family: 'Quicksand', sans-serif;
  font-weight: 700;
  color: hsl(94, 33%, 37%);
  margin-top: 16px;
}
#contact-body dt:first-child {
  margin-top: 0;
}
#contact-body dd {
  margin-left: 0;
  margin-bottom: 4px;
}
#contact-body a {
  color: hsl(94, 33%, 37%);
  text-decoration: underline;
}
#contact-body a:hover {
  color: hsl(100, 20%, 23%);
}
#contact-body .find-us {
  font-size: 0.95rem;
  color: #444;
  margin-top: 12px;
}
#contact-body .form-section {
  background-color: #fff;
  border-radius: 20px;
  padding: 40px;
  border: 1px solid #e2e6df;
}
#contact-body label {
  font-family: 'Quicksand', sans-serif;
  font-weight: 600;
  color: hsl(100, 20%, 23%);
  margin-bottom: 6px;
}
#contact-body .form-control {
  border-radius: 12px;
  border: 1px solid #cdd4c8;
  padding: 10px 14px;
  font-family: 'Libre Baskerville', serif;
}
#contact-body .form-control:focus {
  border-color: hsl(94, 33%, 37%);
  box-shadow: 0 0 0 0.2rem hsla(94, 33%, 37%, 0.2);
}
#contact-body .btn-submit {
  background-color: hsl(94, 33%, 37%);
  color: #fff;
  border: none;
  border-radius: 12px;
  padding: 12px 32px;
  font-family: 'Quicksand', sans-serif;
  font-weight: 600;
  margin-top: 8px;
}
#contact-body .btn-submit:hover {
  background-color: hsl(100, 20%, 23%);
  color: #fff;
}
#contact-body .cta-line {
  text-align: center;
  margin-top: 80px;
}
#contact-body .cta-line a {
  display: inline-block;
  background-color: hsl(86, 45%, 43%);
  color: #fff;
  text-decoration: none;
  padding: 14px 34px;
  border-radius: 16px;
  font-family: 'Quicksand', sans-serif;
  font-weight: 600;
}
#contact-body .cta-line a:hover {
  background-color: hsl(100, 20%, 23%);
  color: #fff;
}
@media (max-width: 576px) {
  #contact-body .form-section, #contact-body .info-block {
    padding: 24px;
  }
}

.hero-section {
  background-color: #f8f9fa;
  padding: 96px 20px;
}

.hero-column {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.hero-column h1 {
  font-family: 'Quicksand', sans-serif;
  font-weight: 700;
  color: hsl(100, 20%, 23%);
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.hero-column h2 {
  font-family: 'Quicksand', sans-serif;
  font-weight: 500;
  color: hsl(94, 33%, 37%);
  font-size: 1.3rem;
  margin-bottom: 24px;
}

.hero-column p.lead-text {
  font-family: 'Libre Baskerville', serif;
  color: #333;
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 32px;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: hsl(94, 33%, 37%);
  color: #fff;
  font-family: 'Quicksand', sans-serif;
  font-weight: 600;
  padding: 14px 32px;
  border-radius: 20px;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.2s ease;
  margin-bottom: 48px;
}

.hero-cta:hover {
  background-color: hsl(100, 20%, 23%);
  color: #fff;
  transform: translateY(-2px);
}

.hero-img-wrap {
  border-radius: 20px;
  overflow: hidden;
}

.hero-img-wrap img {
  aspect-ratio: 3 / 2;
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

@media (max-width: 576px) {
  .hero-section {
    padding: 64px 16px;
  }
  .hero-column h1 {
    font-size: 2rem;
  }
}

#about-us .about-section {
  background: #f8f9fa;
  color: #222;
  font-family: 'Libre Baskerville', serif;
  padding: 96px 0;
}
#about-us .about-section .container-narrow {
  max-width: 740px;
  margin: 0 auto;
  padding: 0 20px;
}
#about-us .about-section h1, #about-us .about-section h2, #about-us .about-section h3 {
  font-family: 'Quicksand', sans-serif;
  color: hsl(100, 20%, 23%);
  font-weight: 600;
}
#about-us .about-section h1 {
  font-size: 2.2rem;
  margin-bottom: 24px;
}
#about-us .about-section h2 {
  font-size: 1.5rem;
  margin-top: 64px;
  margin-bottom: 20px;
}
#about-us .about-section p {
  line-height: 1.8;
  margin-bottom: 20px;
  font-size: 1.02rem;
}
#about-us .about-section .lead-text {
  font-size: 1.15rem;
  color: hsl(94, 33%, 37%);
  font-style: italic;
  margin-bottom: 32px;
}
#about-us .about-section img {
  aspect-ratio: 3 / 2;
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 20px;
  margin: 40px 0;
}
#about-us .about-section .values-list {
  list-style: none;
  padding: 0;
  margin: 24px 0;
}
#about-us .about-section .values-list li {
  padding: 16px 0 16px 28px;
  border-bottom: 1px solid #ddd;
  position: relative;
}
#about-us .about-section .values-list li:last-child {
  border-bottom: none;
}
#about-us .about-section .values-list li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: hsl(86, 45%, 43%);
  font-weight: bold;
}
#about-us .about-section .values-list strong {
  color: hsl(100, 20%, 23%);
  font-family: 'Quicksand', sans-serif;
}
#about-us .about-section .facts-box {
  background: hsl(100, 20%, 23%);
  color: #f8f9fa;
  border-radius: 20px;
  padding: 32px 36px;
  margin: 48px 0;
}
#about-us .about-section .facts-box h3 {
  color: #f8f9fa;
  margin-bottom: 16px;
  font-size: 1.2rem;
}
#about-us .about-section .facts-box p {
  color: #f0f2ee;
  margin-bottom: 10px;
  font-size: 0.98rem;
}
@media (max-width: 576px) {
  #about-us .about-section { padding: 64px 0; }
  #about-us .about-section h1 { font-size: 1.7rem; }
  #about-us .about-section h2 { font-size: 1.3rem; }
  #about-us .about-section .facts-box { padding: 24px 22px; }
}

.services-column {
  max-width: 760px;
  margin: 0 auto;
  padding: 96px 20px;
  font-family: 'Libre Baskerville', serif;
  color: #222;
  background-color: #ffffff;
}

.services-column h2 {
  font-family: 'Quicksand', sans-serif;
  font-weight: 600;
  color: hsl(100, 20%, 23%);
  font-size: 2rem;
  margin-bottom: 16px;
}

.services-column .intro {
  color: #333;
  margin-bottom: 56px;
  line-height: 1.7;
}

.price-list {
  border-top: 1px solid hsl(94, 33%, 37%, 0.3);
}

.price-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(0,0,0,0.12);
}

.price-row .row-left {
  flex: 1;
}

.price-row h3 {
  font-family: 'Quicksand', sans-serif;
  font-weight: 600;
  font-size: 1.15rem;
  color: hsl(100, 20%, 23%);
  margin: 0 0 6px 0;
}

.price-row p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.6;
  color: #444;
}

.price-row .row-right {
  flex-shrink: 0;
  font-family: 'Quicksand', sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
  color: hsl(94, 33%, 37%);
  white-space: nowrap;
  padding-top: 2px;
}

.services-note {
  margin-top: 56px;
  padding: 24px;
  border-radius: 20px;
  background-color: #f5f5f5;
  color: #333;
  font-size: 0.95rem;
  line-height: 1.7;
}

.services-note strong {
  color: hsl(100, 20%, 23%);
}

@media (max-width: 576px) {
  .price-row {
    flex-direction: column;
  }
  .price-row .row-right {
    padding-top: 0;
  }
  .services-column {
    padding: 64px 16px;
  }
}

#strengths {
  background: #f8f9fa;
  padding: 96px 0;
  font-family: 'Libre Baskerville', serif;
}
#strengths .container {
  max-width: 780px;
}
#strengths h2 {
  font-family: 'Quicksand', sans-serif;
  color: hsl(100, 20%, 23%);
  font-weight: 600;
  margin-bottom: 16px;
}
#strengths .lead-text {
  color: #333;
  margin-bottom: 56px;
  line-height: 1.8;
}
#strengths .strength-card {
  background: #fff;
  border-radius: 20px;
  padding: 32px 28px;
  height: 100%;
  border: 1px solid #e5e5e5;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
#strengths .strength-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 30px rgba(60, 90, 40, 0.15);
  border-color: hsl(94, 33%, 37%);
}
#strengths .icon-wrap {
  width: 58px;
  height: 58px;
  border-radius: 16px;
  background: hsl(94, 33%, 37%);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 18px;
}
#strengths .strength-card h3 {
  font-family: 'Quicksand', sans-serif;
  color: hsl(100, 20%, 23%);
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 12px;
}
#strengths .strength-card p {
  color: #333;
  font-size: 0.97rem;
  line-height: 1.7;
  margin: 0;
}
@media (max-width: 767px) {
  #strengths {
    padding: 64px 0;
  }
}

#voices {
  background: #f8f9fa;
  padding: 96px 0;
  font-family: 'Libre Baskerville', serif;
  color: #222;
}
#voices .voices-inner {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 20px;
}
#voices h2 {
  font-family: 'Quicksand', sans-serif;
  color: hsl(100, 20%, 23%);
  font-weight: 600;
  margin-bottom: 12px;
  text-align: center;
}
#voices .lead-text {
  text-align: center;
  color: #444;
  margin-bottom: 56px;
  font-size: 1.05rem;
}
#voices .review-block {
  border-radius: 20px;
  padding: 28px 32px;
  margin-bottom: 32px;
  background: #fff;
  border: 1px solid #e4e8e0;
}
#voices .review-block.alt {
  background: hsl(94, 33%, 37%, 0.06);
  border-left: 4px solid hsl(94, 33%, 37%);
}
#voices .review-block.plain {
  background: #fff;
  border: 1px dashed #ccc;
}
#voices .review-top {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 10px;
}
#voices .review-name {
  font-family: 'Quicksand', sans-serif;
  font-weight: 600;
  color: hsl(100, 20%, 23%);
  font-size: 1.05rem;
}
#voices .review-loc {
  font-size: 0.88rem;
  color: #666;
}
#voices .stars {
  color: hsl(86, 45%, 43%);
  letter-spacing: 2px;
  font-size: 0.95rem;
}
#voices .stars .empty {
  color: #ccc;
}
#voices .review-text {
  color: #333;
  line-height: 1.7;
  font-size: 1rem;
  margin: 0;
}
#voices .review-tag {
  display: inline-block;
  margin-top: 14px;
  font-size: 0.82rem;
  color: hsl(94, 33%, 37%);
  font-family: 'Quicksand', sans-serif;
  font-weight: 600;
  border-top: 1px solid #e4e8e0;
  padding-top: 10px;
  width: 100%;
}
@media (max-width: 576px) {
  #voices .review-block {
    padding: 22px 20px;
  }
}

#contact {
  background: #f8f9fa;
  padding: 96px 20px;
  font-family: 'Libre Baskerville', serif;
  color: #222;
}
#contact .inner {
  max-width: 760px;
  margin: 0 auto;
}
#contact h2 {
  font-family: 'Quicksand', sans-serif;
  color: hsl(100, 20%, 23%);
  font-weight: 700;
  margin-bottom: 16px;
}
#contact p.lead-text {
  margin-bottom: 48px;
  color: #333;
  line-height: 1.7;
}
#contact .contact-box {
  background: #fff;
  border-radius: 20px;
  padding: 40px;
  margin-bottom: 40px;
  border: 1px solid #e2e2e2;
}
#contact .contact-box h3 {
  font-family: 'Quicksand', sans-serif;
  color: hsl(94, 33%, 37%);
  font-weight: 600;
  margin-bottom: 20px;
  font-size: 1.3rem;
}
#contact .contact-info-list {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
}
#contact .contact-info-list li {
  margin-bottom: 14px;
  line-height: 1.6;
}
#contact .contact-info-list a {
  color: hsl(94, 33%, 37%);
  text-decoration: none;
  font-weight: 600;
}
#contact .contact-info-list a:hover {
  color: hsl(100, 20%, 23%);
  text-decoration: underline;
}
#contact .find-us {
  font-size: 0.95rem;
  color: #444;
  border-top: 1px dashed #ccc;
  padding-top: 16px;
  margin-top: 8px;
}
#contact .find-us a {
  color: hsl(86, 45%, 43%);
  font-weight: 600;
  text-decoration: none;
}
#contact .find-us a:hover {
  text-decoration: underline;
}
#contact .form-box {
  background: hsl(100, 20%, 23%);
  border-radius: 20px;
  padding: 40px;
  color: #f8f9fa;
}
#contact .form-box h3 {
  font-family: 'Quicksand', sans-serif;
  color: #f8f9fa;
  font-weight: 600;
  margin-bottom: 8px;
  font-size: 1.3rem;
}
#contact .form-box p {
  color: #d9e2d4;
  margin-bottom: 24px;
  font-size: 0.95rem;
}
#contact .form-box label {
  color: #f8f9fa;
  font-weight: 600;
  margin-bottom: 6px;
  display: block;
  font-size: 0.95rem;
}
#contact .form-box .form-control {
  border-radius: 12px;
  border: none;
  padding: 12px 14px;
  margin-bottom: 18px;
  font-family: 'Libre Baskerville', serif;
}
#contact .form-box .form-control:focus {
  box-shadow: 0 0 0 3px hsl(86, 45%, 43%, 0.5);
}
#contact .btn-send {
  background: hsl(86, 45%, 43%);
  color: #1a2213;
  border: none;
  border-radius: 12px;
  padding: 12px 32px;
  font-family: 'Quicksand', sans-serif;
  font-weight: 700;
  font-size: 1rem;
}
#contact .btn-send:hover {
  background: #7a9c4b;
  color: #1a2213;
}

#disclaimer {
  font-family: 'Libre Baskerville', serif;
  background-color: #f8f9fa;
  padding: 96px 20px;
  color: #222;
}
#disclaimer .disclaimer-column {
  max-width: 740px;
  margin: 0 auto;
}
#disclaimer .disclaimer-icon {
  font-size: 2rem;
  color: hsl(94, 33%, 37%);
  margin-bottom: 20px;
}
#disclaimer h2 {
  font-family: 'Quicksand', sans-serif;
  font-weight: 600;
  color: hsl(100, 20%, 23%);
  margin-bottom: 24px;
}
#disclaimer .disclaimer-box {
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 20px;
  padding: 40px;
}
#disclaimer p {
  line-height: 1.8;
  color: #333;
  margin-bottom: 0;
}

#services-content {
  font-family: 'Libre Baskerville', serif;
  background: #ffffff;
  color: #222222;
  padding: 96px 20px;
}
#services-content .services-column {
  max-width: 760px;
  margin: 0 auto;
}
#services-content h1 {
  font-family: 'Quicksand', sans-serif;
  color: hsl(100, 20%, 23%);
  font-weight: 700;
  font-size: 2.2rem;
  margin-bottom: 24px;
}
#services-content .intro-text {
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 56px;
  color: #333333;
}
#services-content .intro-text strong {
  color: hsl(94, 33%, 37%);
}
#services-content ol.service-list {
  list-style: none;
  counter-reset: service-counter;
  padding: 0;
  margin: 0 0 72px 0;
}
#services-content ol.service-list li {
  counter-increment: service-counter;
  padding: 22px 0;
  border-bottom: 1px solid #dde3d6;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 8px 16px;
}
#services-content ol.service-list li:first-child {
  padding-top: 0;
}
#services-content .service-title-block {
  display: flex;
  align-items: baseline;
  gap: 10px;
  flex: 1 1 480px;
}
#services-content .service-number {
  font-family: 'Quicksand', sans-serif;
  font-weight: 700;
  color: hsl(94, 33%, 37%);
  min-width: 28px;
}
#services-content .service-text h2 {
  font-family: 'Quicksand', sans-serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: hsl(100, 20%, 23%);
  margin: 0 0 6px 0;
}
#services-content .service-text p {
  margin: 0;
  font-size: 0.97rem;
  line-height: 1.7;
  color: #333333;
}
#services-content .service-price {
  font-family: 'Quicksand', sans-serif;
  font-weight: 700;
  color: hsl(86, 45%, 43%);
  font-size: 1.05rem;
  margin-left: auto;
  white-space: nowrap;
}
#services-content h2.section-heading {
  font-family: 'Quicksand', sans-serif;
  color: hsl(100, 20%, 23%);
  font-weight: 700;
  font-size: 1.6rem;
  margin-bottom: 20px;
}
#services-content .table-responsive {
  margin-bottom: 64px;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid #dde3d6;
}
#services-content table {
  margin: 0;
  width: 100%;
  font-size: 0.95rem;
}
#services-content table th {
  font-family: 'Quicksand', sans-serif;
  background: hsl(100, 20%, 23%);
  color: #f8f9fa;
  font-weight: 600;
  padding: 12px 16px;
}
#services-content table td {
  padding: 12px 16px;
  color: #333333;
  vertical-align: top;
}
#services-content table tr:nth-child(even) {
  background: #f5f7f2;
}
#services-content .terms-box {
  background: #f5f7f2;
  border-radius: 20px;
  padding: 32px 32px;
  margin-bottom: 64px;
}
#services-content .terms-box h2 {
  font-family: 'Quicksand', sans-serif;
  color: hsl(100, 20%, 23%);
  font-size: 1.5rem;
  margin-bottom: 18px;
}
#services-content .terms-box ul {
  margin: 0;
  padding-left: 20px;
  color: #333333;
  line-height: 1.8;
}
#services-content .terms-box li {
  margin-bottom: 8px;
}
#services-content .cta-block {
  text-align: center;
  border-top: 1px solid #dde3d6;
  padding-top: 56px;
}
#services-content .cta-block p {
  font-size: 1.05rem;
  color: #333333;
  margin-bottom: 24px;
  line-height: 1.7;
}
#services-content .btn-cta {
  display: inline-block;
  background: hsl(94, 33%, 37%);
  color: #ffffff;
  font-family: 'Quicksand', sans-serif;
  font-weight: 600;
  padding: 14px 36px;
  border-radius: 18px;
  text-decoration: none;
  font-size: 1rem;
  transition: background 0.2s ease;
}
#services-content .btn-cta:hover {
  background: hsl(100, 20%, 23%);
  color: #ffffff;
}
@media (max-width: 576px) {
  #services-content { padding: 64px 16px; }
  #services-content .service-price { margin-left: 0; }
  #services-content ol.service-list li { flex-direction: column; }
}
