.faq-page-body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  background: #f4f7fb;
}

.faq-page {
  flex: 1;
}

.faq-page__hero {
  background: linear-gradient(135deg, #006eb7 0%, #005a96 100%);
  color: #fff;
  padding: 2rem 1.25rem 2.25rem;
}

.faq-page__hero-inner {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.faq-breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.5rem;
  list-style: none;
  margin: 0 0 1rem;
  padding: 0;
  font-size: 0.88rem;
}

.faq-breadcrumb li:not(:last-child)::after {
  content: "/";
  margin-left: 0.5rem;
  opacity: 0.65;
}

.faq-breadcrumb a {
  color: #fff;
  text-decoration: none;
  opacity: 0.92;
}

.faq-breadcrumb a:hover {
  text-decoration: underline;
}

.faq-page__eyebrow {
  margin: 0 0 0.45rem;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  opacity: 0.9;
}

.faq-page__title {
  margin: 0 0 1rem;
  font-size: clamp(1.85rem, 4vw, 2.55rem);
  font-weight: 700;
  line-height: 1.15;
}

.faq-page__summary {
  margin: 0 0 0.85rem;
  font-size: 1.08rem;
  line-height: 1.7;
  opacity: 0.97;
}

.faq-page__meta {
  margin: 0;
  font-size: 0.9rem;
  opacity: 0.85;
}

.faq-page__section {
  padding: 2rem 1.25rem;
  scroll-margin-top: 1rem;
}

.faq-page__section:nth-child(even) {
  background: #eef3f7;
}

.faq-page__section--cta {
  padding-bottom: 3rem;
  background: #f4f7fb;
}

.faq-page__inner {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.faq-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.faq-categories__link {
  padding: 0.5rem 0.95rem;
  border: 1px solid #d0d5dd;
  border-radius: 999px;
  background: #fff;
  color: #344054;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  transition: border-color 0.15s ease, background 0.15s ease;
}

.faq-categories__link:hover {
  border-color: #006eb7;
  color: #006eb7;
}

.faq-section-head {
  margin-bottom: 1rem;
}

.faq-section-head h2 {
  margin: 0;
  font-size: clamp(1.25rem, 3vw, 1.5rem);
  color: #101828;
}

.faq-list {
  display: grid;
  gap: 0.75rem;
}

.faq-item {
  background: #fff;
  border: 1px solid #e4edf5;
  border-radius: 14px;
  box-shadow: 0 8px 24px rgba(0, 62, 142, 0.05);
  overflow: hidden;
  scroll-margin-top: 1rem;
}

.faq-item[open] {
  border-color: #c7e3f5;
}

.faq-item__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.15rem;
  cursor: pointer;
  list-style: none;
}

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

.faq-item__question::after {
  content: "+";
  flex-shrink: 0;
  width: 1.65rem;
  height: 1.65rem;
  border-radius: 999px;
  background: #f2f4f7;
  color: #006eb7;
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.65rem;
  text-align: center;
}

.faq-item[open] .faq-item__question::after {
  content: "−";
}

.faq-item__question h3 {
  margin: 0;
  font-size: 1.02rem;
  line-height: 1.45;
  color: #101828;
  font-weight: 700;
}

.faq-item__answer {
  padding: 0 1.15rem 1.1rem;
  color: #475467;
  line-height: 1.7;
}

.faq-item__answer p {
  margin: 0;
}

.faq-item__answer a {
  color: #006eb7;
  font-weight: 600;
}

.faq-item__answer a:hover {
  text-decoration: underline;
}

.faq-cta {
  display: grid;
  gap: 1.25rem;
  align-items: center;
  background: #fff;
  border: 1px solid #e4edf5;
  border-radius: 16px;
  padding: 1.5rem;
  box-shadow: 0 12px 30px rgba(0, 62, 142, 0.07);
}

.faq-cta h2 {
  margin: 0 0 0.45rem;
  font-size: 1.35rem;
  color: #101828;
}

.faq-cta p {
  margin: 0;
  color: #667085;
  line-height: 1.65;
}

.faq-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

@media (min-width: 768px) {
  .faq-cta {
    grid-template-columns: 1fr auto;
    padding: 1.75rem;
  }

  .faq-cta__actions {
    justify-content: flex-end;
  }
}
