/* ===== Question / FAQ Page ===== */

.question-page {
  background: #f7f9fb;
}

.question-main {
  overflow: hidden;
}

/* ===== Hero ===== */
.question-hero {
  background: #eff4ff;
  padding: 64px 240px;
}

.question-hero__inner {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.question-hero__title {
  font-weight: 700;
  font-size: 48px;
  line-height: 56px;
  letter-spacing: -0.96px;
  color: #000000;
  text-align: center;
}

.question-hero__desc {
  max-width: 672px;
  font-size: 18px;
  line-height: 28px;
  color: #45464d;
  text-align: center;
}

/* ===== FAQ ===== */
.question-faq {
  background: #f7f9fb;
  padding: 76px 64px 96px;
}

.question-faq__inner {
  max-width: 1152px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 34px;
}

.faq-item {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.05);
  overflow: hidden;
}

.faq-item__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px;
  cursor: pointer;
  list-style: none;
}

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

.faq-item__header::marker {
  content: '';
}

.faq-item__left {
  display: flex;
  align-items: center;
  gap: 16px;
}

.faq-item__badge {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  background: #e5eeff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0.14px;
  color: #0058be;
}

.faq-item__title {
  font-weight: 700;
  font-size: 20px;
  line-height: 28px;
  color: #0b1c30;
  margin: 0;
}

.faq-item__chevron {
  flex-shrink: 0;
  width: 12px;
  height: 7.4px;
}

.faq-item__chevron--up {
  display: none;
  transform: rotate(180deg);
}

.faq-item[open] .faq-item__chevron--down {
  display: none;
}

.faq-item[open] .faq-item__chevron--up {
  display: block;
}

.faq-item__body {
  border-left: 2px solid #e5eeff;
  margin: 0 25px 24px 41px;
  padding-left: 50px;
}

.faq-item__body p {
  font-size: 16px;
  line-height: 26px;
  color: #45464d;
  margin: 0;
}

.faq-item__body p + p {
  margin-top: 0;
}
