.faq-page {
  --faq-red: #DC0000;
  --faq-black: #111111;
  --faq-border: #e3e3e3;
  padding-bottom: 64px;
}

/* Hero banner */
.faq-hero {
  background: var(--faq-black);
  padding: 54px 0;
  margin-bottom: 40px;
  text-align: center;
}
.faq-hero__title {
  color: #fff;
  font-weight: 700;
  font-size: 2.4rem;
  letter-spacing: .5px;
  margin: 0;
  text-transform: uppercase;
}

.faq-intro {
  font-size: 1rem;
  color: #444;
  margin-bottom: 28px;
  max-width: 820px;
}

/* Accordion list */
.faq-list { display: flex; flex-direction: column; gap: 14px; }

.faq-item {
  border: 1px solid transparent;
  border-radius: 10px;
  background: #f7f7f7;
  transition: border-color .2s ease, background .2s ease;
}
.faq-item.is-open {
  background: #fff;
  border-color: var(--faq-red);
}

.faq-item__head {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 20px 22px;
  background: none;
  border: 0;
  cursor: pointer;
  text-align: left;
}

.faq-item__num {
  flex: 0 0 auto;
  color: var(--faq-red);
  font-weight: 700;
  font-size: 1.25rem;
  font-variant-numeric: tabular-nums;
  min-width: 34px;
}

.faq-item__q {
  flex: 1 1 auto;
  color: var(--faq-black);
  font-weight: 600;
  font-size: 1.02rem;
  line-height: 1.4;
}
.faq-item.is-open .faq-item__q { color: var(--faq-red); }

.faq-item__icon {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: none;
  color: #333;
  font-size: 1rem;
  transition: transform .25s ease;
}
.faq-item.is-open .faq-item__icon {
  color: var(--faq-red);
  transform: rotate(180deg);
}

/* Answer body — collapsed by default */
.faq-item__body {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .25s ease;
}
.faq-item.is-open .faq-item__body { grid-template-rows: 1fr; }
.faq-item__answer {
  overflow: hidden;
  padding: 0 22px 0 74px;
  color: #1f1f1f;
  font-size: .95rem;
  font-weight: 500;
  line-height: 1.9;
}
.faq-item.is-open .faq-item__answer { padding-bottom: 22px; }
.faq-item__answer p { margin: 0 0 10px; }
.faq-item__answer p:last-child { margin-bottom: 0; }

.faq-empty {
  padding: 40px;
  text-align: center;
  color: #888;
  border: 1px dashed var(--faq-border);
  border-radius: 10px;
}

@media (max-width: 575.98px) {
  .faq-hero { padding: 38px 0; }
  .faq-hero__title { font-size: 1.6rem; }
  .faq-item__head { padding: 16px; gap: 12px; }
  .faq-item__num { font-size: 1.05rem; min-width: 28px; }
  .faq-item__q { font-size: .95rem; }
  .faq-item__answer { padding-left: 16px; padding-right: 16px; }
}
