.help-lead {
  position: relative;
  z-index: 2;
  padding-top: 76px;
  padding-bottom: 82px;
}

.help-lead h1 {
  max-width: 850px;
  margin-top: 18px;
  font-size: clamp(52px, 5vw, 68px);
}

.help-lead > p {
  max-width: 690px;
  margin-top: 18px;
  color: var(--text-muted);
  font-size: 18px;
}

.help-lead__links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 26px;
  margin-top: 22px;
}

.help-lead__links a,
.help-group__next a,
.help-handoff a {
  color: var(--accent-dark);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.help-lead__links a {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
}

.help-group {
  padding-top: 36px;
  padding-bottom: 54px;
  border-bottom: 1px solid var(--border);
  scroll-margin-top: 110px;
}

.help-group__heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 440px);
  align-items: end;
  gap: 20px 36px;
  margin-bottom: 24px;
}

.help-group__heading h2 {
  margin-top: 8px;
}

.help-group__heading > p {
  color: var(--text-muted);
}

.help-group .faq-list {
  max-width: 950px;
}

.help-group .faq-item summary {
  line-height: 1.55;
}

.help-group .faq-item__answer {
  max-width: 82ch;
  line-height: 1.8;
}

.help-group__next {
  max-width: 950px;
  margin-top: 20px;
  color: var(--text-muted);
  font-size: 14px;
}

.help-handoff {
  max-width: 950px;
  margin-top: 54px;
}

.help-handoff h2 {
  font-size: 24px;
}

.help-handoff p {
  max-width: 75ch;
  margin-top: 10px;
  color: var(--text-muted);
}

.help-handoff a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  margin-top: 12px;
}

@media (max-width: 768px) {
  .help-lead {
    padding-top: 52px;
    padding-bottom: 58px;
  }

  .help-lead h1 {
    font-size: clamp(28px, 7vw, 40px);
  }

  .help-lead > p {
    font-size: 16px;
  }

  .help-group__heading {
    grid-template-columns: minmax(0, 1fr);
  }

  .help-group {
    padding-top: 24px;
    padding-bottom: 42px;
  }
}