.page-body {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 80px;
  align-items: start;
  padding: 72px 0 96px;
}

.faq-section {
  margin-bottom: 56px;
}

.faq-section:last-child {
  margin-bottom: 0;
}

.category-label {
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--silver-dark);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 4px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(184, 184, 184, 0.12);
}

.category-label::before {
  content: "";
  width: 24px;
  height: 1px;
  background: var(--silver-dark);
}


/* ─────────────────────────────────────────────────────────────────────────────
   4. FAQ ACCORDION
   ───────────────────────────────────────────────────────────────────────────── */

.faq-list {
  list-style: none;
  border-top: 1px solid rgba(184, 184, 184, 0.15);
}

.faq-item {
  border-bottom: 1px solid rgba(184, 184, 184, 0.15);
}

.faq-question {
  width: 100%;
  padding: 28px 0;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.3;
  transition: color 0.2s;
}

.faq-question:hover {
  color: var(--silver-light);
}

.faq-toggle {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border: 1px solid rgba(184, 184, 184, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--silver);
  transition: transform 0.3s, border-color 0.2s, color 0.2s, background 0.2s;
}

.faq-question:hover .faq-toggle {
  border-color: var(--silver);
  color: var(--white);
}

.faq-item.is-open .faq-toggle {
  transform: rotate(45deg);
  background: var(--white);
  border-color: var(--white);
  color: var(--black);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-item.is-open .faq-answer {
  max-height: 1400px;
}

.faq-answer-inner {
  padding: 0 0 28px;
  font-size: 16px;
  color: var(--silver-light);
  line-height: 1.75;
  font-weight: 300;
  max-width: 820px;
}

.faq-answer-inner p {
  margin-bottom: 16px;
}

.faq-answer-inner p:last-child {
  margin-bottom: 0;
}


/* ─────────────────────────────────────────────────────────────────────────────
   5. POLICY BLOCK
   ───────────────────────────────────────────────────────────────────────────── */

.policy-block {
  margin-top: 20px;
  border: 1px solid rgba(184, 184, 184, 0.15);
  background: var(--black-2);
  padding: 24px 28px;
}

.policy-label {
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--silver-dark);
  font-weight: 600;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.policy-label::before {
  content: "";
  width: 20px;
  height: 1px;
  background: var(--silver-dark);
}

.policy-block p {
  font-size: 13px;
  color: #999;
  line-height: 1.7;
  margin-bottom: 12px;
}

.policy-block p:last-child {
  margin-bottom: 0;
}

.policy-definition {
  border-left: 2px solid rgba(184, 184, 184, 0.2);
  padding-left: 16px;
  font-style: italic;
  font-size: 13px;
  color: #888;
  line-height: 1.75;
  margin-top: 12px;
}


/* ─────────────────────────────────────────────────────────────────────────────
   6. SIDEBAR
   ───────────────────────────────────────────────────────────────────────────── */

.sidebar {
  position: sticky;
  top: 120px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.sidebar-card {
  background: var(--black-4);
  border: 1px solid rgba(184, 184, 184, 0.12);
  padding: 32px 28px;
  transition: border-color 0.2s;
}

.sidebar-card:hover {
  border-color: rgba(184, 184, 184, 0.22);
}

.sidebar-card-label {
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--silver-dark);
  font-weight: 600;
  margin-bottom: 16px;
}

.sidebar-card h3 {
  font-family: var(--serif);
  font-size: 21px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 12px;
  color: var(--white);
}

.sidebar-card p {
  font-size: 13px;
  color: var(--silver);
  line-height: 1.65;
  font-weight: 300;
  margin-bottom: 20px;
}

/* Sidebar CTA buttons */
.sidebar-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 11px 20px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid var(--white) !important;
  color: var(--white);
  background: transparent;
  transition: background 0.2s, color 0.2s;
}

.sidebar-cta:hover {
  background: var(--white) !important;
  color: var(--black) !important;
}

.sidebar-cta-dark {
  border-color: var(--black) !important;
  color: var(--black) !important;
  background: transparent !important;
}

.sidebar-cta-dark:hover {
  background: var(--black) !important;
  color: var(--white) !important;
}

/* Join Us sibling nav list */
.join-nav {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1px;
  margin-top: -1px;
}

.join-nav li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 28px;
  background: var(--black-4);
  border: 1px solid rgba(184, 184, 184, 0.12);
  font-size: 12px;
  color: var(--silver);
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.2s, color 0.2s, border-color 0.2s, padding-left 0.2s;
}

.join-nav li a:hover {
  background: var(--black-3);
  color: var(--white);
  border-color: rgba(184, 184, 184, 0.22);
  padding-left: 32px;
}

/* White Apply CTA card variant */
.sidebar-card-white {
  background: var(--white);
  border-color: var(--white);
}

.sidebar-card-white:hover {
  border-color: #ddd;
}

.sidebar-card-white .sidebar-card-label {
  color: #888;
}

.sidebar-card-white h3 {
  color: var(--black);
}

.sidebar-card-white p {
  color: #555;
}


/* ─────────────────────────────────────────────────────────────────────────────
   7. RESPONSIVE
   ───────────────────────────────────────────────────────────────────────────── */

@media (max-width: 1100px) {
  .page-body {
    padding-left: 28px;
    padding-right: 28px;
  }
}

@media (max-width: 1000px) {
  .page-body {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .sidebar {
    position: static;
  }
}

@media (max-width: 900px) {
  .page-hero {
    padding: 56px 20px 48px;
  }

  /* Hide the decorative watermark on mobile */
  .page-hero::before {
    display: none;
  }

  .page-body {
    padding: 40px 20px 60px;
  }

  .faq-question {
    font-size: 17px;
    padding: 22px 0;
  }
}