/* ===== Main page (home) — FAQ section, matches Figma "ZABA app" design ===== */

/* Page background is the site-wide MainBg image (see legal.css). */

.home { padding-bottom: 0; }

/* ===== FAQ ===== */
.faq-wrap {
  width: 100%;
  margin: 0 auto;
  padding: 80px 24px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px; /* title + link */
}
.faq {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px; /* title + cards */
  width: 100%;
}
.faq-title {
  font-size: var(--font-size-heading-xl); 
  font-weight: var(--font-weight-extrabold);
  color: var(--color-label-primary);
  text-align: center;
  line-height: var(--line-height-m);
}
.faq-list {
  width: 100%;
  max-width: 718px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* The cards themselves use the shared .qa accordion component (help.css),
   so they stay identical to the Help Center cards. */

.faq-all {
  font-size: var(--font-size-heading-xs); 
  font-weight: var(--font-weight-bold);
  color: var(--color-blue-600);
  text-align: center;
  text-decoration: none;
}

/* Footer spacing on this page */
.site-footer { margin-top: 128px; }

/* ===== Responsive ===== */
@media (max-width: 820px) {
  .faq-title { font-size: var(--font-size-heading-xl-mobile); } /* 40px */
  .faq-wrap { padding: 56px 24px 0; gap: 48px; }
  .faq-all { font-size: var(--font-size-heading-s); } /* 20px */
}
