/* Crawlable answer content and FAQ section */
html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

.faq-section {
  padding: 72px 20px;
  background: #f7f4ef;
  color: #2f2f2f;
}

.faq-container {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  text-align: left;
}

.faq-heading {
  margin: 0 0 12px;
  color: #323232;
  font-family: "Roboto Condensed", sans-serif;
  font-size: clamp(2rem, 4vw, 2.75rem);
  line-height: 1.15;
  text-align: center;
}

.faq-intro {
  max-width: 720px;
  margin: 0 auto 32px;
  color: #5c554e;
  font-size: 1.08rem;
  line-height: 1.65;
  text-align: center;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-item {
  overflow: hidden;
  border: 1px solid #e2d9ce;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 2px 10px rgba(50, 50, 50, 0.06);
}

.faq-question {
  position: relative;
  padding: 19px 52px 19px 22px;
  color: #3d342c;
  font-size: 1.13rem;
  font-weight: 700;
  line-height: 1.35;
  cursor: pointer;
  list-style: none;
}

.faq-question::-webkit-details-marker {
  display: none;
}

.faq-question::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 20px;
  color: #946500;
  font-size: 1.65rem;
  font-weight: 400;
  transform: translateY(-50%);
}

.faq-item[open] .faq-question::after {
  content: "−";
}

.faq-question:focus-visible {
  outline: 3px solid #fbb03b;
  outline-offset: -3px;
}

.faq-answer {
  margin: 0;
  padding: 0 22px 20px;
  color: #514a44;
  font-size: 1rem;
  line-height: 1.65;
}

.faq-answer a {
  color: #7b5400;
  font-weight: 600;
}

address.footer-box-content {
  font-style: normal;
}

@media (max-width: 767px) {
  .faq-section {
    padding: 54px 14px;
  }

  .faq-question {
    padding: 17px 46px 17px 17px;
    font-size: 1.05rem;
  }

  .faq-question::after {
    right: 16px;
  }

  .faq-answer {
    padding: 0 17px 18px;
  }
}
