@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@500;700;900&family=Open+Sans:wght@400;600&display=swap');

:root {
  --primary: hsl(147, 56%, 33%);
  --secondary: hsl(175, 50%, 15%);
  --accent: hsl(123, 75%, 38%);
}

body{
  font-family: 'Open Sans', sans-serif;
  color: #2b2b2b;
  background-color: #ffffff;
}
h1, h2, h3, h4, h5, h6{
  font-family: 'Roboto', sans-serif;
}
.navbar{
  background-color: #ffffff;
  border-bottom: 1px solid #eaeaea;
}
.navbar-brand{
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  color: var(--secondary);
  font-size: 1.25rem;
}
.navbar-brand img{
  border-radius: 16px;
}
.navbar-nav .nav-link{
  color: #2b2b2b;
  font-weight: 600;
  padding-left: 1rem;
  padding-right: 1rem;
}
.navbar-nav .nav-link:hover{
  color: var(--primary);
}
.navbar-toggler{
  border-color: var(--primary);
}

#contact-section {
  background: #f8f9fa;
  padding: 96px 0;
  font-family: 'Open Sans', sans-serif;
  color: #2b2b2b;
}
#contact-section .contact-wrap {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 20px;
}
#contact-section h1 {
  font-family: 'Roboto', sans-serif;
  color: hsl(175, 50%, 15%);
  font-weight: 700;
  font-size: 2.1rem;
  margin-bottom: 24px;
}
#contact-section h2 {
  font-family: 'Roboto', sans-serif;
  color: hsl(175, 50%, 15%);
  font-weight: 700;
  font-size: 1.4rem;
  margin-top: 56px;
  margin-bottom: 16px;
}
#contact-section p {
  line-height: 1.75;
  margin-bottom: 16px;
}
#contact-section .lead-text {
  font-size: 1.05rem;
  color: #3a3a3a;
}
#contact-section .info-block {
  background: #fff;
  border: 1px solid #e2e2e2;
  border-radius: 20px;
  padding: 28px 32px;
  margin-bottom: 32px;
}
#contact-section .info-block dl {
  margin: 0;
}
#contact-section .info-block dt {
  font-weight: 700;
  color: hsl(147, 56%, 33%);
  margin-top: 14px;
}
#contact-section .info-block dt:first-child {
  margin-top: 0;
}
#contact-section .info-block dd {
  margin-left: 0;
  margin-bottom: 0;
}
#contact-section .info-block a {
  color: hsl(147, 56%, 33%);
  text-decoration: underline;
}
#contact-section .info-block a:hover {
  color: hsl(123, 75%, 38%);
}
#contact-section .find-us {
  font-size: 0.95rem;
  color: #444;
  margin-top: 10px;
}
#contact-section .find-us a {
  color: hsl(147, 56%, 33%);
  font-weight: 600;
  text-decoration: underline;
}
#contact-section .find-us a:hover {
  color: hsl(123, 75%, 38%);
}
#contact-section form {
  background: #fff;
  border: 1px solid #e2e2e2;
  border-radius: 20px;
  padding: 32px;
}
#contact-section .form-label {
  font-weight: 600;
  color: hsl(175, 50%, 15%);
  margin-bottom: 6px;
}
#contact-section .form-control {
  border: 1px solid #ccc;
  border-radius: 12px;
  padding: 10px 14px;
  margin-bottom: 18px;
}
#contact-section .form-control:focus {
  border-color: hsl(147, 56%, 33%);
  box-shadow: 0 0 0 0.2rem hsla(147, 56%, 33%, 0.2);
}
#contact-section .btn-submit {
  background: hsl(147, 56%, 33%);
  color: #fff;
  border: none;
  border-radius: 12px;
  padding: 12px 28px;
  font-weight: 600;
  font-family: 'Roboto', sans-serif;
  transition: background 0.2s ease;
}
#contact-section .btn-submit:hover {
  background: hsl(123, 75%, 38%);
  color: #fff;
}
#contact-section .cta-line {
  text-align: center;
  margin-top: 64px;
}
#contact-section .cta-line a {
  display: inline-block;
  background: hsl(175, 50%, 15%);
  color: #fff;
  padding: 14px 30px;
  border-radius: 14px;
  text-decoration: none;
  font-weight: 600;
  font-family: 'Roboto', sans-serif;
}
#contact-section .cta-line a:hover {
  background: hsl(147, 56%, 33%);
}
@media (max-width: 576px) {
  #contact-section form,
  #contact-section .info-block {
    padding: 22px 18px;
  }
}

footer {
  background: hsl(175, 50%, 15%);
  color: #f5f5f5;
  font-family: 'Open Sans', sans-serif;
  padding: 80px 0 32px;
  border-radius: 24px 24px 0 0;
}
footer h5, footer h6 {
  font-family: 'Roboto', sans-serif;
  color: #ffffff;
  margin-bottom: 16px;
}
footer p, footer li, footer a {
  color: #e6e6e6;
}
footer a {
  text-decoration: none;
}
footer a:hover {
  color: hsl(123, 75%, 38%);
  text-decoration: underline;
}
footer ul {
  list-style: none;
  padding-left: 0;
}
footer ul li {
  margin-bottom: 8px;
}
.footer-social {
  display: flex;
  gap: 14px;
}
.footer-social a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: hsl(147, 56%, 33%);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: background 0.2s ease;
}
.footer-social a:hover {
  background: hsl(123, 75%, 38%);
  color: #ffffff;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.15);
  margin-top: 48px;
  padding-top: 24px;
  font-size: 0.9rem;
  color: #cfcfcf;
}

#cookieStrip {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1050;
  background: hsl(175, 50%, 15%);
  color: #f5f5f5;
  border-radius: 20px 20px 0 0;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.3);
  font-family: 'Open Sans', sans-serif;
  max-height: 60vh;
  overflow-y: auto;
  padding: 20px 0;
}
#cookieStrip h6 {
  font-family: 'Roboto', sans-serif;
  color: #ffffff;
  margin-bottom: 8px;
}
#cookieStrip p, #cookieStrip li {
  color: #e6e6e6;
  font-size: 0.88rem;
  margin-bottom: 6px;
}
#cookieStrip ul {
  padding-left: 18px;
  margin-bottom: 12px;
}
.cookie-btn {
  border-radius: 14px;
  padding: 10px 18px;
  font-size: 0.9rem;
  font-weight: 600;
  border: none;
  flex: 1;
  transition: all 0.2s ease;
  font-family: 'Open Sans', sans-serif;
}
.btn-accept-all {
  background: hsl(123, 75%, 38%);
  color: #ffffff;
}
.btn-accept-all:hover {
  background: hsl(123, 75%, 30%);
  color: #ffffff;
}
.btn-reject-optional {
  background: hsl(147, 56%, 33%);
  color: #ffffff;
}
.btn-reject-optional:hover {
  background: hsl(147, 56%, 26%);
  color: #ffffff;
}
.cookie-manage-link {
  color: #cfe8d9;
  font-size: 0.85rem;
  text-decoration: underline;
}
.cookie-manage-link:hover {
  color: #ffffff;
}

#services-main {
  background: #ffffff;
  color: #222222;
  font-family: 'Open Sans', sans-serif;
  padding: 96px 20px;
}

#services-main .inner-column {
  max-width: 760px;
  margin: 0 auto;
}

#services-main h1 {
  font-family: 'Roboto', sans-serif;
  color: hsl(175, 50%, 15%);
  font-size: 2.1rem;
  margin-bottom: 24px;
}

#services-main .lead-text {
  font-size: 1.05rem;
  line-height: 1.75;
  color: #333333;
  margin-bottom: 56px;
}

#services-main h2 {
  font-family: 'Roboto', sans-serif;
  color: hsl(147, 56%, 33%);
  font-size: 1.3rem;
  margin-top: 64px;
  margin-bottom: 20px;
}

#services-main .price-list {
  border-top: 1px solid #d8d8d8;
}

#services-main .price-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid #d8d8d8;
}

#services-main .price-row .row-left {
  flex: 1;
}

#services-main .service-name {
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  color: #1e1e1e;
  margin-bottom: 6px;
}

#services-main .service-desc {
  font-size: 0.92rem;
  color: #4a4a4a;
  line-height: 1.6;
  max-width: 540px;
}

#services-main .service-price {
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  color: hsl(147, 56%, 33%);
  white-space: nowrap;
  padding-top: 2px;
}

#services-main .terms-block {
  background: #f5f5f5;
  border-radius: 20px;
  padding: 32px 28px;
  margin-top: 72px;
}

#services-main .terms-block h2 {
  margin-top: 0;
}

#services-main dl.terms-list {
  margin: 0;
}

#services-main dl.terms-list dt {
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  color: hsl(175, 50%, 15%);
  margin-top: 16px;
  font-size: 0.95rem;
}

#services-main dl.terms-list dt:first-child {
  margin-top: 0;
}

#services-main dl.terms-list dd {
  color: #3d3d3d;
  font-size: 0.92rem;
  line-height: 1.6;
  margin-bottom: 0;
}

#services-main .table-responsive {
  margin-top: 24px;
}

#services-main table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

#services-main table caption {
  text-align: left;
  color: #555555;
  font-size: 0.85rem;
  padding-bottom: 10px;
  caption-side: top;
}

#services-main th {
  font-family: 'Roboto', sans-serif;
  background: hsl(175, 50%, 15%);
  color: #ffffff;
  text-align: left;
  padding: 10px 14px;
}

#services-main th:last-child,
#services-main td:last-child {
  text-align: right;
}

#services-main td {
  padding: 10px 14px;
  border-bottom: 1px solid #e0e0e0;
  color: #333333;
}

#services-main tr:nth-child(even) td {
  background: #f8f9fa;
}

#services-main .cta-box {
  margin-top: 88px;
  padding: 40px 32px;
  border-radius: 20px;
  background: hsl(147, 56%, 33%);
  text-align: center;
}

#services-main .cta-box h2 {
  color: #ffffff;
  margin-top: 0;
  margin-bottom: 12px;
}

#services-main .cta-box p {
  color: #eafff0;
  margin-bottom: 22px;
  font-size: 0.95rem;
}

#services-main .cta-box a.btn-cta {
  display: inline-block;
  background: #ffffff;
  color: hsl(147, 56%, 33%);
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  padding: 12px 30px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 0.95rem;
}

#services-main a {
  color: hsl(147, 56%, 33%);
}

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



  

  .thank-you-section {
    font-family: 'Open Sans', sans-serif;
    background: linear-gradient(135deg, hsl(175, 50%, 15%) 0%, hsl(147, 56%, 33%) 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 3rem 1rem;
  }

  .thank-you-card {
    background: #ffffff;
    border-radius: 1.25rem;
    padding: 3rem 2rem;
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.25);
    max-width: 640px;
    margin: 0 auto;
    text-align: center;
    animation: fadeInUp 0.7s ease-out;
  }

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

  .success-icon-wrapper {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: hsla(123, 75%, 38%, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.75rem;
    animation: popIn 0.6s ease-out 0.15s both;
  }

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

  .success-icon-wrapper svg {
    width: 56px;
    height: 56px;
    stroke: var(--accent);
  }

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

  .thank-you-message {
    color: #4a4a4a;
    font-size: 1.05rem;
    line-height: 1.75;
    margin-bottom: 1rem;
  }

  .info-list {
    text-align: left;
    background: hsla(147, 56%, 33%, 0.06);
    border-left: 4px solid var(--primary);
    border-radius: 0.5rem;
    padding: 1.25rem 1.5rem;
    margin: 1.75rem 0;
  }

  .info-list li {
    color: var(--secondary);
    font-size: 0.98rem;
    padding: 0.4rem 0;
  }

  .info-list li i,
  .info-list li svg {
    color: var(--primary);
    margin-right: 0.6rem;
  }

  .btn-home {
    background-color: var(--primary);
    border: none;
    color: #fff;
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    padding: 0.75rem 2.5rem;
    border-radius: 50px;
    font-size: 1rem;
    letter-spacing: 0.3px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 14px hsla(147, 56%, 33%, 0.35);
  }

  .btn-home:hover {
    background-color: var(--accent);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px hsla(123, 75%, 38%, 0.4);
  }

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

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

    .thank-you-heading {
      font-size: 1.5rem;
    }

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

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

.hero-section {
  background-color: #f8f9fa;
  padding: 96px 20px;
}
.hero-column {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.hero-column h1 {
  font-family: 'Roboto', sans-serif;
  color: hsl(175, 50%, 15%);
  font-weight: 700;
  font-size: 2.5rem;
  margin-bottom: 16px;
}
.hero-column h2 {
  font-family: 'Roboto', sans-serif;
  color: hsl(147, 56%, 33%);
  font-weight: 400;
  font-size: 1.25rem;
  margin-bottom: 24px;
}
.hero-column p {
  font-family: 'Open Sans', sans-serif;
  color: #333;
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 32px;
}
.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: hsl(147, 56%, 33%);
  color: #fff;
  font-family: 'Roboto', sans-serif;
  font-weight: 500;
  padding: 14px 32px;
  border-radius: 20px;
  text-decoration: none;
  font-size: 1.05rem;
  transition: background-color 0.25s ease, transform 0.25s ease;
}
.hero-cta:hover {
  background-color: hsl(123, 75%, 38%);
  color: #fff;
  transform: translateY(-2px);
}
.hero-image-wrap {
  margin-top: 48px;
}
.hero-image-wrap img {
  aspect-ratio: 3 / 2;
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 20px;
}
@media (max-width: 576px) {
  .hero-section {
    padding: 64px 16px;
  }
  .hero-column h1 {
    font-size: 1.9rem;
  }
}

#who-we-are {
  font-family: 'Open Sans', sans-serif;
  color: #262626;
  background: #f8f9fa;
  padding: 96px 0;
}
#who-we-are .container-narrow {
  max-width: 740px;
  margin: 0 auto;
  padding: 0 20px;
}
#who-we-are h2, #who-we-are h3 {
  font-family: 'Roboto', sans-serif;
  color: hsl(175, 50%, 15%);
}
#who-we-are h2 {
  font-size: 2rem;
  margin-bottom: 28px;
}
#who-we-are h3 {
  font-size: 1.4rem;
  margin-top: 48px;
  margin-bottom: 16px;
}
#who-we-are p {
  font-size: 1.02rem;
  line-height: 1.75;
  margin-bottom: 20px;
}
#who-we-are img {
  aspect-ratio: 3 / 2;
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 20px;
  margin: 40px 0;
}
#who-we-are .lead-text {
  font-size: 1.1rem;
  color: hsl(147, 56%, 33%);
  font-weight: 600;
  margin-bottom: 32px;
}
#who-we-are .team-section {
  margin-top: 80px;
  padding-top: 48px;
  border-top: 1px solid #dcdcdc;
}
#who-we-are .team-card {
  background: #fff;
  border-radius: 20px;
  padding: 28px 26px;
  margin-bottom: 20px;
  border: 1px solid #e5e5e5;
}
#who-we-are .team-card .name {
  font-family: 'Roboto', sans-serif;
  font-size: 1.15rem;
  color: hsl(175, 50%, 15%);
  font-weight: 700;
  margin-bottom: 2px;
}
#who-we-are .team-card .role {
  font-size: 0.92rem;
  color: hsl(147, 56%, 33%);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-bottom: 10px;
}
#who-we-are .team-card p {
  margin-bottom: 0;
  font-size: 0.98rem;
}
@media (max-width: 576px) {
  #who-we-are { padding: 64px 0; }
  #who-we-are h2 { font-size: 1.6rem; }
}

.services-section{
  background:#f8f9fa;
  padding:96px 0;
  font-family:'Open Sans', sans-serif;
  color:#2a2a2a;
}
.services-column{
  max-width:760px;
  margin:0 auto;
  padding:0 20px;
}
.services-section h2{
  font-family:'Roboto', sans-serif;
  font-weight:700;
  color:hsl(175, 50%, 15%);
  font-size:2rem;
  margin-bottom:16px;
}
.services-intro{
  font-size:1.05rem;
  line-height:1.7;
  color:#3d3d3d;
  margin-bottom:56px;
}
.price-list{
  border-top:1px solid #d9dcda;
}
.price-row{
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  gap:24px;
  padding:28px 0;
  border-bottom:1px solid #d9dcda;
}
.price-row-left{
  flex:1;
}
.price-row-left h3{
  font-family:'Roboto', sans-serif;
  font-weight:700;
  font-size:1.15rem;
  color:hsl(147, 56%, 33%);
  margin-bottom:8px;
}
.price-row-left p{
  font-size:0.95rem;
  line-height:1.6;
  color:#4a4a4a;
  margin:0;
}
.price-row-right{
  flex-shrink:0;
  font-family:'Roboto', sans-serif;
  font-weight:700;
  font-size:1.15rem;
  color:hsl(175, 50%, 15%);
  padding-top:2px;
  white-space:nowrap;
}
.price-note{
  margin-top:40px;
  font-size:0.9rem;
  line-height:1.6;
  color:#5a5a5a;
  border-radius:16px;
  background:#eef3ef;
  padding:20px 24px;
}
@media (max-width: 576px){
  .price-row{
    flex-direction:column;
    gap:8px;
    padding:22px 0;
  }
  .price-row-right{
    font-size:1.05rem;
  }
}

#answers {
  font-family: 'Open Sans', sans-serif;
  background-color: #f8f9fa;
  color: #222;
  padding: 96px 20px;
}
#answers .faq-column {
  max-width: 760px;
  margin: 0 auto;
}
#answers h2 {
  font-family: 'Roboto', sans-serif;
  color: hsl(175, 50%, 15%);
  font-weight: 700;
  margin-bottom: 16px;
}
#answers .intro-text {
  margin-bottom: 48px;
  color: #333;
  line-height: 1.7;
}
#answers .accordion-item {
  border: 1px solid #e0e0e0;
  border-radius: 16px !important;
  overflow: hidden;
  margin-bottom: 16px;
}
#answers .accordion-button {
  font-family: 'Roboto', sans-serif;
  font-weight: 600;
  color: hsl(175, 50%, 15%);
  background-color: #fff;
  padding: 20px 24px;
}
#answers .accordion-button:not(.collapsed) {
  background-color: hsl(147, 56%, 33%);
  color: #fff;
  box-shadow: none;
}
#answers .accordion-button:focus {
  box-shadow: none;
  border-color: transparent;
}
#answers .accordion-button::after {
  filter: none;
}
#answers .accordion-body {
  background-color: #fff;
  color: #333;
  line-height: 1.7;
  padding: 20px 24px 28px;
}
#answers .accordion-body a {
  color: hsl(147, 56%, 33%);
  text-decoration: underline;
}

#testimonials {
  background: #f8f9fa;
  padding: 96px 0;
  font-family: 'Open Sans', sans-serif;
  color: #262626;
}
#testimonials .col-wrap {
  max-width: 760px;
  margin: 0 auto;
}
#testimonials h2 {
  font-family: 'Roboto', sans-serif;
  color: hsl(175, 50%, 15%);
  font-weight: 700;
  margin-bottom: 16px;
}
#testimonials .lead-text {
  color: #444;
  margin-bottom: 56px;
  font-size: 1.05rem;
}
#testimonials .review-card {
  background: #fff;
  border-radius: 18px;
  padding: 28px 30px;
  margin-bottom: 28px;
  border: 1px solid #e7e7e7;
}
#testimonials .review-card.compact {
  padding: 20px 26px;
}
#testimonials .review-card.roomy {
  padding: 34px 34px;
  background: #f4f9f6;
}
#testimonials .review-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 10px;
}
#testimonials .review-name {
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  color: hsl(175, 50%, 15%);
  font-size: 1.02rem;
}
#testimonials .review-loc {
  color: #6b6b6b;
  font-size: 0.88rem;
}
#testimonials .stars {
  color: hsl(123, 75%, 38%);
  letter-spacing: 2px;
  font-size: 0.95rem;
}
#testimonials .stars .empty {
  color: #d5d5d5;
}
#testimonials .review-text {
  color: #333;
  line-height: 1.65;
  margin: 0;
}
#testimonials .review-tag {
  display: inline-block;
  margin-top: 14px;
  font-size: 0.78rem;
  color: hsl(147, 56%, 33%);
  border: 1px solid hsl(147, 56%, 33%);
  border-radius: 20px;
  padding: 3px 12px;
  background: rgba(30, 130, 76, 0.06);
}
#testimonials .divider-line {
  border: none;
  border-top: 1px solid #e2e2e2;
  margin: 64px 0 56px;
}
#testimonials .summary-note {
  text-align: center;
  color: #555;
  font-size: 0.95rem;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid #e2e2e2;
}
@media (max-width: 576px) {
  #testimonials .review-card, #testimonials .review-card.roomy {
    padding: 22px 20px;
  }
}

#contact {
  background: #f8f9fa;
  padding: 96px 20px;
  font-family: 'Open Sans', sans-serif;
  color: #2a2a2a;
}
#contact .contact-column {
  max-width: 760px;
  margin: 0 auto;
}
#contact h2 {
  font-family: 'Roboto', sans-serif;
  color: hsl(175, 50%, 15%);
  font-weight: 700;
  margin-bottom: 16px;
}
#contact .lead-text {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #444;
  margin-bottom: 56px;
}
#contact .info-block {
  background: #fff;
  border-radius: 20px;
  padding: 32px;
  margin-bottom: 48px;
  border: 1px solid #e5e5e5;
}
#contact .info-block dl {
  margin: 0;
}
#contact .info-block dt {
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  color: hsl(147, 56%, 33%);
  margin-top: 18px;
}
#contact .info-block dt:first-child {
  margin-top: 0;
}
#contact .info-block dd {
  margin-left: 0;
  margin-bottom: 0;
  color: #2a2a2a;
  line-height: 1.6;
}
#contact .info-block a {
  color: hsl(147, 56%, 33%);
  text-decoration: none;
  font-weight: 600;
}
#contact .info-block a:hover {
  text-decoration: underline;
  color: hsl(123, 75%, 30%);
}
#contact .find-us {
  font-size: 0.95rem;
  color: #555;
  margin-top: 8px;
}
#contact .find-us a {
  color: hsl(123, 75%, 30%);
  font-weight: 600;
}
#contact .hours-table th,
#contact .hours-table td {
  padding: 4px 8px;
  font-size: 0.95rem;
}
#contact form {
  background: #fff;
  border-radius: 20px;
  padding: 40px;
  border: 1px solid #e5e5e5;
}
#contact form h3 {
  font-family: 'Roboto', sans-serif;
  color: hsl(175, 50%, 15%);
  font-weight: 700;
  margin-bottom: 24px;
  font-size: 1.3rem;
}
#contact label {
  font-weight: 600;
  color: #2a2a2a;
  margin-bottom: 6px;
}
#contact .form-control {
  border-radius: 12px;
  border: 1px solid #cfcfcf;
  padding: 10px 14px;
  margin-bottom: 18px;
  font-family: 'Open Sans', sans-serif;
}
#contact .form-control:focus {
  border-color: hsl(147, 56%, 33%);
  box-shadow: 0 0 0 0.2rem hsla(147, 56%, 33%, 0.2);
}
#contact .btn-submit {
  background: hsl(147, 56%, 33%);
  color: #fff;
  border: none;
  border-radius: 12px;
  padding: 12px 32px;
  font-family: 'Roboto', sans-serif;
  font-weight: 600;
  transition: background 0.2s ease;
}
#contact .btn-submit:hover {
  background: hsl(123, 75%, 30%);
  color: #fff;
}
@media (max-width: 576px) {
  #contact {
    padding: 64px 16px;
  }
  #contact .info-block,
  #contact form {
    padding: 24px;
  }
}

#legal {
  font-family: 'Open Sans', sans-serif;
  background-color: #f8f9fa;
  padding: 96px 20px;
  color: #2b2b2b;
}
#legal .disclaimer-box {
  max-width: 760px;
  margin: 0 auto;
  background-color: #ffffff;
  border-radius: 20px;
  padding: 48px 40px;
  border: 1px solid #e2e5e3;
}
#legal .icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background-color: hsl(147, 56%, 33%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
#legal .icon-wrap i {
  color: #ffffff;
  font-size: 1.6rem;
}
#legal h2 {
  font-family: 'Roboto', sans-serif;
  color: hsl(175, 50%, 15%);
  font-weight: 700;
  margin-bottom: 24px;
}
#legal p {
  font-size: 1rem;
  line-height: 1.8;
  color: #3a3a3a;
  margin-bottom: 0;
}
@media (max-width: 576px) {
  #legal .disclaimer-box {
    padding: 32px 24px;
  }
}

#faq-section {
  font-family: 'Open Sans', sans-serif;
  background: #f8f9fa;
  color: #222;
  padding: 96px 0;
}
#faq-section h1, #faq-section h2, #faq-section h3 {
  font-family: 'Roboto', sans-serif;
}
#faq-section .faq-wrap {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 16px;
}
#faq-section .intro {
  margin-bottom: 56px;
}
#faq-section .intro h1 {
  color: hsl(175, 50%, 15%);
  font-size: 2.1rem;
  margin-bottom: 20px;
}
#faq-section .intro p {
  font-size: 1.02rem;
  line-height: 1.7;
  color: #333;
}
#faq-section .accordion-item {
  border: 1px solid #e2e2e2;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 14px;
  background: #fff;
}
#faq-section .accordion-button {
  font-family: 'Roboto', sans-serif;
  font-weight: 600;
  color: hsl(175, 50%, 15%);
  background: #fff;
  font-size: 1rem;
}
#faq-section .accordion-button:not(.collapsed) {
  color: #fff;
  background: hsl(147, 56%, 33%);
  box-shadow: none;
}
#faq-section .accordion-button:focus {
  box-shadow: 0 0 0 0.15rem hsla(147, 56%, 33%, 0.35);
}
#faq-section .accordion-button::after {
  filter: none;
}
#faq-section .accordion-body {
  color: #333;
  line-height: 1.7;
  font-size: 0.98rem;
}
#faq-section .details-table {
  margin: 56px 0;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid #e2e2e2;
}
#faq-section .details-table table {
  margin-bottom: 0;
}
#faq-section .details-table th {
  background: hsl(175, 50%, 15%);
  color: #fff;
  font-family: 'Roboto', sans-serif;
  font-weight: 600;
  width: 45%;
}
#faq-section .details-table td {
  color: #222;
  background: #fff;
}
#faq-section .cta-box {
  margin-top: 80px;
  padding: 40px 32px;
  border-radius: 24px;
  background: hsl(147, 56%, 33%);
  text-align: center;
}
#faq-section .cta-box h2 {
  color: #fff;
  font-size: 1.5rem;
  margin-bottom: 14px;
}
#faq-section .cta-box p {
  color: #eef7f1;
  margin-bottom: 24px;
  line-height: 1.6;
}
#faq-section .cta-box a.btn {
  background: hsl(123, 75%, 38%);
  color: #0d2b1a;
  font-weight: 600;
  border-radius: 12px;
  padding: 12px 32px;
  border: none;
}
#faq-section .cta-box a.btn:hover {
  background: #fff;
  color: hsl(175, 50%, 15%);
}
#faq-section .section-label {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.8rem;
  color: hsl(147, 56%, 33%);
  font-weight: 600;
  margin-bottom: 10px;
  display: block;
}
