.home-faq-3 {
  padding: 84px 20px 94px;
  background: #ffffff;
}

.home-faq-3__container {
  max-width: 1560px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr);
  gap: 82px;
  align-items: start;
}

.home-faq-3__content {
  max-width: 720px;
}

.home-faq-3__eyebrow {
  margin: 0 0 18px;
  color: #83a93d;
  font-family: "Montserrat", sans-serif;
  font-size: 17px;
  font-weight: 800;
  text-transform: uppercase;
}

.home-faq-3__divider {
  width: min(620px, 100%);
  margin: 0 0 42px;
  border-top: 4px dotted #9bb55a;
}

.home-faq-3__heading {
  margin: 0 0 30px;
  color: #2f313a;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(2.45rem, 4vw, 4rem);
  line-height: 1.06;
  font-weight: 800;
  letter-spacing: -0.045em;
}

.home-faq-3__description {
  margin: 0;
  color: #4d4f58;
  font-family: "Nunito Sans", sans-serif;
  font-size: 18px;
  line-height: 1.34;
}

.home-faq-3__cta {
  margin-top: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 322px;
  min-height: 84px;
  padding: 18px 42px;
  border-radius: 999px;
  background: #88a93c;
  color: #ffffff;
  font-family: "Montserrat", sans-serif;
  font-size: 19px;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 10px 24px rgba(61, 78, 22, 0.18);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.home-faq-3__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(61, 78, 22, 0.24);
}

.home-faq-3__accordion {
  display: flex;
  flex-direction: column;
}

.home-faq-3__item {
  border-bottom: 1px solid rgba(198, 183, 147, 0.45);
}

.home-faq-3__question {
  width: 100%;
  padding: 28px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  border: 0;
  background: none;
  cursor: pointer;
  text-align: left;
  color: #2f313a;
  font-family: "Montserrat", sans-serif;
  font-size: 23px;
  line-height: 1.14;
  font-weight: 800;
}

.home-faq-3__icon {
  flex-shrink: 0;
  color: #d6b98f;
  font-size: 36px;
  font-weight: 400;
  line-height: 1;
}

.home-faq-3__answer {
  display: none;
  padding: 0 0 28px;
}

.home-faq-3__answer p {
  margin: 0;
  color: #4d4f58;
  font-family: "Nunito Sans", sans-serif;
  font-size: 18px;
  line-height: 1.34;
}

.home-faq-3__item.is-open .home-faq-3__answer {
  display: block;
}

@media (max-width: 1279px) {
  .home-faq-3__container {
    gap: 48px;
  }
}

@media (max-width: 1023px) {
  .home-faq-3 {
    padding: 58px 20px 72px;
  }

  .home-faq-3__container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .home-faq-3__content {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
  }

  .home-faq-3__divider {
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 767px) {
  .home-faq-3__eyebrow {
    font-size: 13px;
    margin-bottom: 12px;
  }

  .home-faq-3__divider {
    margin-bottom: 26px;
    border-top-width: 3px;
  }

  .home-faq-3__heading {
    font-size: 2rem;
    letter-spacing: -0.03em;
    margin-bottom: 22px;
  }

  .home-faq-3__description,
  .home-faq-3__answer p {
    font-size: 16px;
  }

  .home-faq-3__question {
    font-size: 18px;
    padding: 22px 0;
    gap: 18px;
  }

  .home-faq-3__icon {
    font-size: 30px;
  }

  .home-faq-3__cta {
    min-width: 240px;
    min-height: 72px;
    font-size: 17px;
  }
}
