.faq-detail-page-main {
  margin-top: -230px;
}

.faq-card__scroller {
  height: 975px;
  overflow: hidden auto;
}

/* ── FAQ accordion list ──────────────────────────────────────────── */
.faq-list {
  background: var(--primary-bg-color);
  list-style: none;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding: 1rem;
}

/* ── Individual FAQ item ─────────────────────────────────────────── */
.faq-item {
  background: var(--primary-bg-color);
  border: 1px solid var(--tertiary-text-color);
  border-radius: 8px;
  overflow: hidden;
  transition:
    border-color 1s ease,
    box-shadow 1s ease;
  justify-content: space-between;
  padding: 8px;
}

/* ── Accordion header (trigger button) ──────────────────────────── */
.faq-item__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  width: 100%;
  padding: 8px 16px;
  background: var(--primary-bg-color);
  border: none;
  cursor: pointer;
  gap: 16px;
  text-align: left;
  transition: background 1ms ease;
}

.faq-item.is-open .faq-item__header {
  background: var(--primary-bg-color);
  border-bottom: 1px solid var(--primary-hover-color);
  border-radius: 0;
}

/* ── Question text ───────────────────────────────────────────────── */
.faq-item__question {
  font-family: Montserrat, sans-serif;
  font-weight: 600;
  font-size: 20px;
  color: var(--text-color);
  flex: 1;.faq-card__scroller {
  height: 975px;
  overflow: hidden auto;
}

/* ── FAQ accordion list ──────────────────────────────────────────── */
.faq-list {
  background: var(--primary-bg-color);
  list-style: none;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding: 1rem;
}

/* ── Individual FAQ item ─────────────────────────────────────────── */
.faq-item {
  background: var(--primary-bg-color);
  border: 1px solid var(--tertiary-text-color);
  border-radius: 8px;
  overflow: hidden;
  transition:
    border-color 1s ease,
    box-shadow 1s ease;
  justify-content: space-between;
  padding: 8px;
}

/* ── Accordion header (trigger button) ──────────────────────────── */
.faq-item__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  width: 100%;
  padding: 8px 16px;
  background: var(--primary-bg-color);
  border: none;
  cursor: pointer;
  gap: 16px;
  text-align: left;
  transition: background 1ms ease;
}

.faq-item.is-open .faq-item__header {
  background: var(--primary-bg-color);
  border-bottom: 1px solid var(--primary-hover-color);
  border-radius: 0;
}

/* ── Question text ───────────────────────────────────────────────── */
.faq-item__question {
  font-family: Montserrat, sans-serif;
  font-weight: 600;
  font-size: 20px;
  color: var(--text-color);
  flex: 1;
  line-height: 100%;
  letter-spacing: 0%;
}

/* ── Chevron icon ────────────────────────────────────────────────── */
.faq-item__icon {
  color: var(--text-color);
  -webkit-text-stroke: 1px;
  transition:
    transform 250ms ease-in-out,
    color 250ms ease-in-out;
    transform: rotate(180deg);
}

.faq-item.is-open .faq-item__icon {
  transform: rotate(0);
}

/* ── Answer panel ────────────────────────────────────────────────── */
.faq-item__answer {
  padding: 16px;
  border-top: 1px solid var(--contrast-text-color);
  animation: faqSlideIn 200ms ease-out;
  font-size: 12px;
}

.faq-item__answer p {
  font-family: Montserrat, sans-serif;
  font-weight: 400;
  font-size: 12px;
  line-height: 1.5rem;
  color: var(--text-color);
}

.faq-item__answer p strong {
  font-weight: 600;
  color: var(--text-color);
}

@keyframes faqSlideIn {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ─────────────────────────scroll bar style ─────────────────────────*/

.faq-card__scroller::-webkit-scrollbar {
  width: 6px;
  border-radius: 6px;
  opacity: 1;
}

.faq-card__scroller::-webkit-scrollbar-track {
  background: #ebebeb;
  border-radius: 6px;
  opacity: 1;
}

.faq-card__scroller::-webkit-scrollbar-thumb {
  background: #cbcbcb;
  border-radius: 10px;
  width: 8px;
  opacity: 1;
}

  line-height: 100%;
  letter-spacing: 0%;
}

/* ── Chevron icon ────────────────────────────────────────────────── */
.faq-item__icon {
  color: var(--text-color);
  -webkit-text-stroke: 1px;
  transition:
  transform 250ms ease-in-out,
  color 250ms ease-in-out;
  transform: rotate(180deg);
}

.faq-item.is-open .faq-item__icon {
  transform: rotate(0deg);
}

/* ── Answer panel ────────────────────────────────────────────────── */
.faq-item__answer {
  padding: 16px;
  border-top: 1px solid var(--contrast-text-color);
  animation: faqSlideIn 200ms ease-out;
  font-size: 12px;
}

.faq-item__answer p {
  font-family: Montserrat, sans-serif;
  font-weight: 400;
  font-size: 12px;
  line-height: 1.5rem;
  color: var(--text-color);
}

.faq-item__answer p strong {
  font-weight: 600;
  color: var(--text-color);
}

@keyframes faqSlideIn {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ─────────────────────────scroll bar style ─────────────────────────*/

.faq-card__scroller::-webkit-scrollbar {
  width: 6px;
  border-radius: 6px;
  opacity: 1;
}

.faq-card__scroller::-webkit-scrollbar-track {
  background: #ebebeb;
  border-radius: 6px;
  opacity: 1;
}

.faq-card__scroller::-webkit-scrollbar-thumb {
  background: #cbcbcb;
  border-radius: 10px;
  width: 8px;
  opacity: 1;
}
