@import url('https://fonts.googleapis.com/css2?family=Inter:wght@600;700;800&family=Raleway:wght@400;500;600&display=swap');

:root {
  --primary: hsl(103, 36%, 37%);
  --secondary: hsl(131, 23%, 15%);
  --accent: hsl(79, 42%, 44%);
}

body{
  font-family: 'Raleway', sans-serif;
  color: #222;
  background-color: #ffffff;
}
h1,h2,h3,h4,h5,h6{
  font-family: 'Inter', sans-serif;
}
.navbar{
  background-color: #ffffff;
  border-bottom: 1px solid #eee;
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.navbar-brand{
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  color: var(--secondary);
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  gap: 10px;
}
.navbar-brand img{
  border-radius: 10px;
}
.navbar-nav .nav-link{
  color: var(--secondary);
  font-weight: 600;
  margin-left: 12px;
  margin-right: 12px;
}
.navbar-nav .nav-link:hover{
  color: var(--primary);
}
.navbar-toggler{
  border-color: var(--primary);
}

#contact-page {
  font-family: 'Raleway', sans-serif;
  background: #f8f9fa;
  color: #222;
  padding: 96px 0;
}
#contact-page h1, #contact-page h2, #contact-page h3 {
  font-family: 'Inter', sans-serif;
  color: hsl(131, 23%, 15%);
}
#contact-page .intro-text {
  max-width: 700px;
  margin: 0 auto 56px;
  color: #333;
  font-size: 1.05rem;
}
#contact-page .card-panel {
  background: #fff;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 4px 18px rgba(0,0,0,0.06);
  height: 100%;
}
#contact-page .info-list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px 0;
}
#contact-page .info-list li {
  margin-bottom: 20px;
  padding-left: 8px;
  border-left: 3px solid hsl(79, 42%, 44%);
  padding-left: 14px;
}
#contact-page .info-list strong {
  display: block;
  font-family: 'Inter', sans-serif;
  color: hsl(131, 23%, 15%);
  margin-bottom: 4px;
  font-size: 0.95rem;
}
#contact-page .info-list a {
  color: hsl(103, 36%, 37%);
  text-decoration: none;
  font-weight: 600;
}
#contact-page .info-list a:hover {
  text-decoration: underline;
}
#contact-page .map-note {
  background: hsl(103, 36%, 96%);
  border-radius: 16px;
  padding: 16px 20px;
  font-size: 0.92rem;
  color: #333;
  margin-top: 8px;
}
#contact-page .map-note a {
  color: hsl(131, 23%, 15%);
  font-weight: 700;
  text-decoration: underline;
}
#contact-page .form-control {
  border-radius: 12px;
  border: 1px solid #ccc;
  padding: 12px 16px;
  font-family: 'Raleway', sans-serif;
}
#contact-page .form-control:focus {
  border-color: hsl(103, 36%, 37%);
  box-shadow: 0 0 0 0.2rem hsla(103, 36%, 37%, 0.2);
}
#contact-page label {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  color: hsl(131, 23%, 15%);
  margin-bottom: 6px;
}
#contact-page .btn-primary-custom {
  background: hsl(103, 36%, 37%);
  color: #fff;
  border: none;
  border-radius: 12px;
  padding: 14px 32px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  transition: background 0.2s ease;
}
#contact-page .btn-primary-custom:hover {
  background: hsl(131, 23%, 15%);
  color: #fff;
}
#contact-page .reply-badge {
  display: inline-block;
  background: hsl(79, 42%, 44%);
  color: #fff;
  border-radius: 16px;
  padding: 8px 20px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 32px;
}
#contact-page .cta-bottom {
  background: hsl(131, 23%, 15%);
  border-radius: 20px;
  padding: 40px;
  text-align: center;
  margin-top: 80px;
}
#contact-page .cta-bottom h2 {
  color: #fff;
}
#contact-page .cta-bottom p {
  color: #e2e8dd;
}
#contact-page .cta-bottom .btn-primary-custom {
  background: hsl(79, 42%, 44%);
}
#contact-page .cta-bottom .btn-primary-custom:hover {
  background: #fff;
  color: hsl(131, 23%, 15%);
}
@media (max-width: 767px) {
  #contact-page { padding: 64px 0; }
  #contact-page .card-panel { padding: 28px; }
}

footer.site-footer {
    background: hsl(131, 23%, 15%);
    color: #f5f5f5;
    font-family: 'Raleway', sans-serif;
    padding: 80px 0 24px;
  }
  footer.site-footer h5 {
    font-family: 'Inter', sans-serif;
    color: #ffffff;
    margin-bottom: 18px;
  }
  footer.site-footer p,
  footer.site-footer a {
    color: #e6e6e6;
  }
  footer.site-footer a {
    text-decoration: none;
  }
  footer.site-footer a:hover {
    color: hsl(79, 42%, 44%);
  }
  footer.site-footer .footer-links li {
    margin-bottom: 10px;
  }
  footer.site-footer .social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 16px;
    background: hsl(103, 36%, 37%);
    color: #ffffff;
    margin-right: 10px;
    font-size: 1.1rem;
    transition: background 0.3s ease, transform 0.3s ease;
  }
  footer.site-footer .social-icons a:hover {
    background: hsl(79, 42%, 44%);
    color: #ffffff;
    transform: translateY(-3px);
  }
  footer.site-footer hr {
    border-color: rgba(255,255,255,0.15);
    margin: 40px 0 20px;
  }
  footer.site-footer .footer-bottom {
    font-size: 0.9rem;
    color: #cfcfcf;
  }

  #consentPanel {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 1050;
    background: #ffffff;
    color: #222222;
    border-top: 3px solid hsl(103, 36%, 37%);
    border-radius: 20px 20px 0 0;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
    font-family: 'Raleway', sans-serif;
    max-height: 60vh;
    overflow-y: auto;
    padding: 20px 0;
  }
  #consentPanel h5 {
    font-family: 'Inter', sans-serif;
    color: hsl(131, 23%, 15%);
    margin-bottom: 8px;
    font-size: 1.1rem;
  }
  #consentPanel p, #consentPanel li {
    font-size: 0.88rem;
    color: #333333;
    margin-bottom: 6px;
  }
  #consentPanel ul {
    padding-left: 18px;
    margin-bottom: 12px;
  }
  .consent-btn {
    border: none;
    border-radius: 16px;
    padding: 10px 20px;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    flex: 1;
    transition: background 0.3s ease, transform 0.2s ease;
  }
  .btn-accept-all {
    background: hsl(103, 36%, 37%);
    color: #ffffff;
  }
  .btn-accept-all:hover {
    background: hsl(79, 42%, 44%);
    color: #ffffff;
    transform: translateY(-2px);
  }
  .btn-reject-optional {
    background: hsl(131, 23%, 15%);
    color: #ffffff;
  }
  .btn-reject-optional:hover {
    background: hsl(79, 42%, 44%);
    color: #ffffff;
    transform: translateY(-2px);
  }
  .btn-manage {
    color: hsl(103, 36%, 37%);
    font-size: 0.85rem;
    text-decoration: underline;
    display: inline-block;
    margin-top: 8px;
  }
  .btn-manage:hover {
    color: hsl(79, 42%, 44%);
  }



  

  .thankyou-section {
    font-family: 'Raleway', sans-serif;
    background: linear-gradient(135deg, hsl(131, 23%, 15%) 0%, hsl(103, 36%, 20%) 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 60px 15px;
  }

  .thankyou-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 50px 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    max-width: 640px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    overflow: hidden;
  }

  .thankyou-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
  }

  .success-icon-wrapper {
    width: 110px;
    height: 110px;
    margin: 0 auto 30px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px hsla(103, 36%, 37%, 0.4);
    animation: popIn 0.6s ease-out;
  }

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

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

  .thankyou-heading {
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    color: var(--secondary);
    font-size: 2rem;
    margin-bottom: 18px;
    line-height: 1.3;
  }

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

  .thankyou-highlight {
    background: hsla(79, 42%, 44%, 0.12);
    border-left: 4px solid var(--accent);
    border-radius: 8px;
    padding: 18px 22px;
    margin: 28px 0;
    text-align: left;
  }

  .thankyou-highlight p {
    margin-bottom: 8px;
    color: var(--secondary);
    font-size: 0.98rem;
  }

  .thankyou-highlight p:last-child {
    margin-bottom: 0;
  }

  .thankyou-highlight i {
    color: var(--primary);
    margin-right: 10px;
    font-size: 1.1rem;
    width: 20px;
  }

  .btn-home {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    background: var(--primary);
    color: #ffffff;
    border: none;
    padding: 14px 42px;
    border-radius: 50px;
    font-size: 1rem;
    letter-spacing: 0.3px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px hsla(103, 36%, 37%, 0.35);
  }

  .btn-home:hover {
    background: var(--accent);
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 12px 28px hsla(79, 42%, 44%, 0.4);
  }

  .thankyou-footnote {
    margin-top: 24px;
    font-size: 0.85rem;
    color: #8a8a8a;
  }

  @media (max-width: 576px) {
    .thankyou-card {
      padding: 36px 24px;
    }

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

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

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



.zc-hero {
  background-color: #f8f9fa;
  padding: 72px 0 88px;
}

.zc-hero .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: hsl(79, 42%, 44%, 0.15);
  color: hsl(131, 23%, 15%);
  font-family: 'Raleway', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 8px 18px;
  border-radius: 20px;
  margin-bottom: 20px;
}

.zc-hero h1 {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  color: hsl(131, 23%, 15%);
  font-size: 2.6rem;
  line-height: 1.15;
  margin-bottom: 14px;
}

.zc-hero h2 {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  color: hsl(103, 36%, 37%);
  font-size: 1.3rem;
  margin-bottom: 18px;
}

.zc-hero p.desc {
  font-family: 'Raleway', sans-serif;
  color: #333;
  font-size: 1.05rem;
  max-width: 640px;
  margin-bottom: 30px;
}

.zc-hero .btn-main {
  background-color: hsl(103, 36%, 37%);
  color: #fff;
  font-family: 'Raleway', sans-serif;
  font-weight: 600;
  padding: 14px 32px;
  border-radius: 18px;
  border: none;
  font-size: 1.05rem;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: background-color 0.25s ease, transform 0.2s ease;
}

.zc-hero .btn-main:hover {
  background-color: hsl(131, 23%, 15%);
  color: #fff;
  transform: translateY(-2px);
}

@media (max-width: 576px) {
  .zc-hero h1 {
    font-size: 2rem;
  }
  .zc-hero h2 {
    font-size: 1.1rem;
  }
}

.services-section {
  background: #ffffff;
  padding: 96px 0;
  font-family: 'Raleway', sans-serif;
}
.services-section h2 {
  font-family: 'Inter', sans-serif;
  color: hsl(131, 23%, 15%);
  font-weight: 700;
}
.services-section .lead-text {
  color: #444;
  max-width: 640px;
}
.services-list {
  margin-top: 56px;
}
.service-item {
  display: flex;
  gap: 20px;
  padding: 32px 20px;
  border-bottom: 1px solid #e0e0e0;
  transition: background 0.3s ease, transform 0.3s ease;
  border-radius: 16px;
}
.service-item:hover {
  background: #f6f9f4;
  transform: translateY(-4px);
}
.service-icon {
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: hsl(103, 36%, 37%);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
}
.service-item:hover .service-icon {
  background: hsl(79, 42%, 44%);
}
.service-content h3 {
  font-family: 'Inter', sans-serif;
  color: hsl(131, 23%, 15%);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.service-content p {
  color: #444;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 10px;
}
.service-price {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  color: #ffffff;
  background: hsl(131, 23%, 15%);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.9rem;
}
.service-item:hover .service-price {
  background: hsl(103, 36%, 37%);
}
@media (max-width: 767px) {
  .services-section {
    padding: 64px 0;
  }
  .service-item {
    flex-direction: column;
  }
}

#works {
  padding: 96px 0;
  background: #f8f9fa;
  font-family: 'Raleway', sans-serif;
  color: #222;
}
#works h2, #works h3, #works h5 {
  font-family: 'Inter', sans-serif;
}
#works .section-heading {
  color: hsl(131, 23%, 15%);
  font-weight: 700;
}
#works .section-sub {
  color: #444;
  max-width: 680px;
  margin: 0 auto;
}
#works .work-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  height: 100%;
  box-shadow: 0 4px 14px rgba(0,0,0,0.06);
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
#works .work-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 24px rgba(0,0,0,0.12);
}
#works .work-img-wrap {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #e9ecef;
}
#works .work-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
#works .work-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
#works .work-badge {
  display: inline-block;
  background: hsl(79, 42%, 44%);
  color: hsl(131, 23%, 15%);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 999px;
  margin-bottom: 12px;
  align-self: flex-start;
}
#works .work-title {
  font-weight: 700;
  color: hsl(131, 23%, 15%);
  margin-bottom: 10px;
  font-size: 1.05rem;
}
#works .work-desc {
  color: #444;
  font-size: 0.92rem;
  line-height: 1.5;
  flex-grow: 1;
}
#works .work-btn {
  margin-top: 16px;
  border: 2px solid hsl(103, 36%, 37%);
  color: hsl(103, 36%, 37%);
  background: transparent;
  border-radius: 14px;
  padding: 8px 16px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: background 0.2s ease, color 0.2s ease;
}
#works .work-btn:hover {
  background: hsl(103, 36%, 37%);
  color: #fff;
}
#works .modal-content {
  border-radius: 20px;
  overflow: hidden;
  border: none;
}
#works .modal-header {
  background: hsl(131, 23%, 15%);
  border-bottom: none;
}
#works .modal-header .modal-title {
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
}
#works .modal-header .btn-close {
  filter: invert(1);
}
#works .modal-body {
  color: #333;
}
#works .modal-body .modal-img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 14px;
  margin-bottom: 16px;
}
#works .modal-body .modal-badge {
  background: hsl(79, 42%, 44%);
  color: hsl(131, 23%, 15%);
  font-weight: 700;
  border-radius: 999px;
  padding: 5px 14px;
  font-size: 0.8rem;
  display: inline-block;
  margin-bottom: 14px;
}

#value {
  padding: 96px 0;
  background-color: #f8f9fa;
  font-family: 'Raleway', sans-serif;
}
#value h2, #value h6 {
  font-family: 'Inter', sans-serif;
}
#value .section-heading {
  color: hsl(131, 23%, 15%);
  font-weight: 700;
}
#value .section-sub {
  color: #444;
  max-width: 640px;
  margin: 0 auto;
}
#value .advantage-card {
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 20px;
  padding: 36px 28px;
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
#value .advantage-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 32px rgba(35, 68, 30, 0.15);
  border-color: hsl(103, 36%, 37%);
}
#value .icon-wrap {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background-color: hsl(103, 36%, 37%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: background-color 0.3s ease;
}
#value .advantage-card:hover .icon-wrap {
  background-color: hsl(79, 42%, 44%);
}
#value .icon-wrap i {
  font-size: 1.8rem;
  color: #fff;
}
#value .advantage-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: hsl(131, 23%, 15%);
  margin-bottom: 12px;
}
#value .advantage-card p {
  color: #4a4a4a;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 0;
}

#figures {
  background-color: #f8f9fa;
  padding: 96px 0;
  font-family: 'Raleway', sans-serif;
}
#figures h2 {
  font-family: 'Inter', sans-serif;
  color: hsl(131, 23%, 15%);
  font-weight: 700;
}
#figures p.section-lead {
  color: #333;
  max-width: 640px;
  margin: 0 auto;
}
#figures .figure-card {
  background: #fff;
  border-radius: 20px;
  padding: 40px 24px;
  height: 100%;
  text-align: center;
  border: 1px solid #e6e6e6;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
#figures .figure-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.08);
}
#figures .figure-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background-color: hsl(103, 36%, 37%);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.8rem;
  animation: pop-in 0.6s ease-out;
}
#figures .figure-number {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 2.4rem;
  color: hsl(131, 23%, 15%);
  display: block;
  animation: count-up 1s ease-out;
}
#figures .figure-label {
  font-weight: 600;
  color: hsl(103, 36%, 37%);
  margin-top: 6px;
  display: block;
}
#figures .figure-context {
  font-size: 0.9rem;
  color: #555;
  margin-top: 4px;
}
@keyframes pop-in {
  0% { transform: scale(0.4); opacity: 0; }
  70% { transform: scale(1.1); opacity: 1; }
  100% { transform: scale(1); }
}
@keyframes count-up {
  0% { opacity: 0; transform: translateY(12px); }
  100% { opacity: 1; transform: translateY(0); }
}

#voices {
  background: #f8f9fa;
  padding: 96px 0;
  font-family: 'Raleway', sans-serif;
}
#voices h2 {
  font-family: 'Inter', sans-serif;
  color: hsl(131, 23%, 15%);
  font-weight: 700;
}
#voices .lead-text {
  color: #333;
  max-width: 640px;
}
#voices .review-card {
  background: #fff;
  border-radius: 20px;
  padding: 28px;
  height: 100%;
  border: 1px solid #e6e6e6;
  box-shadow: 0 4px 14px rgba(0,0,0,0.04);
  display: flex;
  flex-direction: column;
}
#voices .review-card .stars {
  color: hsl(79, 42%, 44%);
  font-size: 1rem;
  letter-spacing: 2px;
  margin-bottom: 10px;
}
#voices .review-card .stars .empty {
  color: #d8d8d8;
}
#voices .review-card .review-text {
  color: #333;
  font-size: 0.98rem;
  line-height: 1.55;
  flex-grow: 1;
}
#voices .review-card .reviewer {
  margin-top: 18px;
  display: flex;
  align-items: center;
  gap: 12px;
}
#voices .review-card .avatar-circle {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: hsl(103, 36%, 37%);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-family: 'Inter', sans-serif;
  flex-shrink: 0;
}
#voices .review-card .reviewer-info strong {
  display: block;
  color: hsl(131, 23%, 15%);
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
}
#voices .review-card .reviewer-info span {
  color: #666;
  font-size: 0.85rem;
}
#voices .review-card.featured {
  background: hsl(131, 23%, 15%);
  color: #fff;
  border: none;
}
#voices .review-card.featured .review-text {
  color: #f1f1f1;
}
#voices .review-card.featured .reviewer-info strong {
  color: #fff;
}
#voices .review-card.featured .reviewer-info span {
  color: #cfd9cf;
}
#voices .review-card.featured .avatar-circle {
  background: hsl(79, 42%, 44%);
}
#voices .review-card.accent-border {
  border-top: 4px solid hsl(79, 42%, 44%);
}
#voices .stats-strip {
  border-radius: 20px;
  background: hsl(103, 36%, 37%);
  color: #fff;
  padding: 24px 32px;
  margin-top: 64px;
}
#voices .stats-strip .num {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 1.8rem;
  display: block;
  color: #fff;
}
#voices .stats-strip .label {
  font-size: 0.85rem;
  color: #e4ede1;
}
@media (max-width: 767px) {
  #voices { padding: 64px 0; }
}

#subscribe {
  background: hsl(131, 23%, 15%);
  padding: 96px 0;
  font-family: 'Raleway', sans-serif;
}
#subscribe h2 {
  font-family: 'Inter', sans-serif;
  color: #f8f9fa;
  font-weight: 700;
  margin-bottom: 16px;
}
#subscribe p {
  color: #e2e6e3;
  font-size: 1.05rem;
  margin-bottom: 32px;
}
#subscribe .subscribe-card {
  background: hsl(103, 36%, 37%);
  border-radius: 24px;
  padding: 48px 40px;
}
#subscribe .form-control {
  border-radius: 16px;
  border: none;
  padding: 14px 20px;
  font-family: 'Raleway', sans-serif;
}
#subscribe .form-control:focus {
  box-shadow: 0 0 0 3px hsl(79, 42%, 44%);
}
#subscribe .btn-subscribe {
  background: hsl(79, 42%, 44%);
  color: #1a1a1a;
  border: none;
  border-radius: 16px;
  padding: 14px 32px;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  white-space: nowrap;
  transition: opacity 0.2s ease;
}
#subscribe .btn-subscribe:hover {
  opacity: 0.9;
  color: #1a1a1a;
}
#subscribe .small-note {
  color: #dce4dc;
  font-size: 0.85rem;
  margin-top: 16px;
}
@media (max-width: 767px) {
  #subscribe .subscribe-card {
    padding: 32px 24px;
  }
}

#questions {
  background: #f8f9fa;
  padding: 96px 0;
  font-family: 'Raleway', sans-serif;
  color: #222;
}
#questions h2 {
  font-family: 'Inter', sans-serif;
  color: hsl(131, 23%, 15%);
  font-weight: 700;
}
#questions .lead {
  color: #444;
  max-width: 700px;
}
#questions .faq-accordion .accordion-item {
  border: 1px solid #e2e6e0;
  border-radius: 16px !important;
  overflow: hidden;
  margin-bottom: 16px;
  background: #fff;
}
#questions .faq-accordion .accordion-button {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  color: hsl(131, 23%, 15%);
  background: #fff;
  padding: 20px 24px;
  border-radius: 16px;
}
#questions .faq-accordion .accordion-button:not(.collapsed) {
  background: hsl(103, 36%, 37%);
  color: #fff;
  box-shadow: none;
}
#questions .faq-accordion .accordion-button:focus {
  box-shadow: 0 0 0 0.2rem rgba(103, 150, 60, 0.25);
}
#questions .faq-accordion .accordion-button::after {
  filter: none;
}
#questions .faq-accordion .accordion-body {
  padding: 20px 24px 28px;
  color: #333;
  line-height: 1.7;
  font-size: 0.98rem;
}
#questions .faq-badge {
  display: inline-block;
  background: hsl(79, 42%, 44%);
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.8rem;
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 16px;
}
@media (max-width: 767px) {
  #questions { padding: 64px 0; }
  #questions .faq-accordion .accordion-button { font-size: 0.95rem; padding: 16px 18px; }
  #questions .faq-accordion .accordion-body { padding: 16px 18px 22px; }
}

#contacts .contacts-section {
  padding: 96px 0;
  background: #f8f9fa;
  font-family: 'Raleway', sans-serif;
  color: #222;
}
#contacts .contacts-section h2, #contacts .contacts-section h3 {
  font-family: 'Inter', sans-serif;
  color: hsl(131, 23%, 15%);
}
#contacts .contact-card {
  background: #fff;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  height: 100%;
}
#contacts .contact-form .form-control {
  border-radius: 14px;
  border: 1px solid #dcdcdc;
  padding: 12px 16px;
  font-family: 'Raleway', sans-serif;
  color: #222;
  margin-bottom: 18px;
}
#contacts .contact-form .form-control:focus {
  border-color: hsl(103, 36%, 37%);
  box-shadow: 0 0 0 0.2rem hsla(103, 36%, 37%, 0.15);
}
#contacts .contact-form label {
  font-weight: 600;
  color: hsl(131, 23%, 15%);
  margin-bottom: 6px;
  display: block;
}
#contacts .btn-submit {
  background: hsl(103, 36%, 37%);
  color: #fff;
  border: none;
  border-radius: 14px;
  padding: 12px 32px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  transition: background 0.2s ease;
}
#contacts .btn-submit:hover {
  background: hsl(131, 23%, 15%);
  color: #fff;
}
#contacts .info-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
#contacts .info-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 24px;
}
#contacts .info-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 12px;
  background: hsl(79, 42%, 44%);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}
#contacts .info-list a {
  color: hsl(103, 36%, 37%);
  text-decoration: none;
  font-weight: 600;
}
#contacts .info-list a:hover {
  color: hsl(131, 23%, 15%);
  text-decoration: underline;
}
#contacts .info-list p {
  margin: 0;
  color: #333;
}
#contacts .map-link {
  display: inline-block;
  margin-top: 6px;
  color: hsl(103, 36%, 37%);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid hsl(103, 36%, 37%);
}
#contacts .map-link:hover {
  color: hsl(131, 23%, 15%);
  border-color: hsl(131, 23%, 15%);
}
#contacts .hours-box {
  background: hsl(131, 23%, 15%);
  color: #f8f9fa;
  border-radius: 16px;
  padding: 20px 24px;
  margin-top: 8px;
}
#contacts .hours-box p {
  margin: 0;
  color: #f8f9fa;
}
@media (max-width: 767px) {
  #contacts .contacts-section { padding: 64px 0; }
  #contacts .contact-card { padding: 26px; }
}

.disclaimer-section {
  background-color: #f8f9fa;
  padding: 96px 0;
  font-family: 'Raleway', sans-serif;
}
.disclaimer-section h2 {
  font-family: 'Inter', sans-serif;
  color: hsl(131, 23%, 15%);
  font-weight: 700;
}
.disclaimer-card {
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 20px;
  padding: 48px;
}
.disclaimer-icon {
  font-size: 2.5rem;
  color: hsl(103, 36%, 37%);
  margin-bottom: 1rem;
}
.disclaimer-card p {
  color: #333333;
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 0;
}
.disclaimer-card p strong {
  color: hsl(131, 23%, 15%);
}
@media (max-width: 768px) {
  .disclaimer-section {
    padding: 64px 0;
  }
  .disclaimer-card {
    padding: 32px 24px;
  }
}

#services-section {
  font-family: 'Raleway', sans-serif;
  background: #f8f9fa;
  color: #222;
  padding: 96px 0;
}
#services-section h1, #services-section h2, #services-section h3 {
  font-family: 'Inter', sans-serif;
}
#services-section .intro-block {
  max-width: 780px;
  margin: 0 auto 64px;
  text-align: center;
}
#services-section .intro-block h1 {
  color: hsl(131, 23%, 15%);
  font-weight: 700;
  margin-bottom: 20px;
}
#services-section .intro-block p {
  font-size: 1.05rem;
  color: #333;
  line-height: 1.7;
}
#services-section .sub-section {
  max-width: 900px;
  margin: 0 auto 56px;
}
#services-section .sub-section h2 {
  color: hsl(103, 36%, 37%);
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 12px;
  border-left: 4px solid hsl(79, 42%, 44%);
  padding-left: 14px;
}
#services-section .sub-section p {
  color: #333;
  line-height: 1.7;
  margin-bottom: 0;
}
#services-section .card {
  border: none;
  border-radius: 20px;
  background: #fff;
  height: 100%;
  padding: 36px 30px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}
#services-section .card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 34px rgba(20, 60, 20, 0.2);
  background: hsl(131, 23%, 15%);
}
#services-section .card:hover .service-icon {
  background: hsl(79, 42%, 44%);
  color: hsl(131, 23%, 15%);
}
#services-section .card:hover h3,
#services-section .card:hover p,
#services-section .card:hover .price-tag {
  color: #f8f9fa;
}
#services-section .service-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: hsl(103, 36%, 37%);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 20px;
  transition: background 0.3s ease, color 0.3s ease;
}
#services-section .card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: hsl(131, 23%, 15%);
  margin-bottom: 12px;
  transition: color 0.3s ease;
}
#services-section .card p {
  color: #444;
  line-height: 1.65;
  font-size: 0.96rem;
  margin-bottom: 18px;
  transition: color 0.3s ease;
}
#services-section .price-tag {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  color: hsl(103, 36%, 37%);
  border-top: 1px solid #e2e2e2;
  padding-top: 14px;
  width: 100%;
  transition: color 0.3s ease;
}
#services-section .row.g-4 {
  --bs-gutter-x: 1.5rem;
}
#services-section .cta-box {
  margin-top: 88px;
  background: hsl(103, 36%, 37%);
  border-radius: 22px;
  padding: 56px 40px;
  text-align: center;
  color: #fff;
}
#services-section .cta-box h2 {
  color: #fff;
  font-weight: 700;
  margin-bottom: 14px;
}
#services-section .cta-box p {
  color: #eef3ea;
  margin-bottom: 26px;
  font-size: 1.02rem;
}
#services-section .cta-box .btn {
  background: hsl(79, 42%, 44%);
  color: hsl(131, 23%, 15%);
  border: none;
  font-weight: 700;
  padding: 12px 34px;
  border-radius: 14px;
  transition: background 0.3s ease, color 0.3s ease;
}
#services-section .cta-box .btn:hover {
  background: #fff;
  color: hsl(131, 23%, 15%);
}
@media (max-width: 767px) {
  #services-section { padding: 64px 0; }
  #services-section .cta-box { margin-top: 56px; padding: 40px 24px; }
}
