:root {
  --faq-brand: #fed702;
  --faq-bg-primary: #000000;
  --faq-bg-secondary: #0d0f11;
  --faq-bg-card: #17181a;
  --faq-bg-card2: #1f1f1f;
  --faq-bg-card3: #272727;
  --faq-border: #252525;
  --faq-border2: #2e2e2e;
  --faq-text-primary: #ffffff;
  --faq-text-secondary: #e6e6e6;
  --faq-text-muted: #909090;
  --faq-text-tertiary: #b3b3b3;
  --faq-font: HarmonyOS, -apple-system, "system-ui", Roboto, Arial, sans-serif;
}

/* ===================== FAQ SECTION ON INDEX ===================== */

.faq-section {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  box-sizing: border-box;
  background: var(--faq-bg-secondary);
  border-top: 1px solid var(--faq-border);
  margin-top: 60px;
  padding: 64px 0 80px;
  font-family: var(--faq-font);
}

.faq-section-inner {
  max-width: 860px;
  width: 100%;
  margin: 0 auto;
  padding: 0 24px;
  box-sizing: border-box;
}

.faq-seo-h1 {
  font-family: var(--faq-font);
  font-size: 36px;
  font-weight: 900;
  line-height: 1.15;
  color: var(--faq-brand);
  text-align: center;
  margin: 0 0 12px 0;
  letter-spacing: -0.5px;
}

.faq-seo-subtitle {
  font-family: var(--faq-font);
  font-size: 15px;
  font-weight: 400;
  color: var(--faq-text-muted);
  text-align: center;
  margin: 0 0 48px 0;
  line-height: 1.6;
}

.faq-heading {
  font-family: var(--faq-font);
  font-size: 22px;
  font-weight: 700;
  color: var(--faq-text-primary);
  margin: 0 0 28px 0;
  text-align: center;
  letter-spacing: 0;
}

.faq-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-item {
  background: var(--faq-bg-card);
  border: 1px solid var(--faq-border2);
  border-radius: 10px;
  overflow: hidden;
  transition: border-color 0.2s ease;
}

.faq-item.faq-open {
  border-color: rgba(254, 215, 2, 0.35);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 18px 20px;
  margin: 0;
  background: transparent;
  border: none;
  outline: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--faq-font);
  font-size: 15px;
  font-weight: 600;
  color: var(--faq-text-secondary);
  line-height: 1.4;
  box-sizing: border-box;
  transition: color 0.2s ease;
  gap: 12px;
}

.faq-question:hover {
  color: var(--faq-text-primary);
}

.faq-item.faq-open .faq-question {
  color: var(--faq-brand);
}

.faq-question-text {
  flex: 1;
  display: block;
}

.faq-icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1.5px solid var(--faq-border);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.3s ease;
  background: transparent;
}

.faq-icon svg {
  width: 12px;
  height: 12px;
  fill: var(--faq-text-muted);
  transition: fill 0.2s ease, transform 0.3s ease;
}

.faq-item.faq-open .faq-icon {
  border-color: var(--faq-brand);
  background: rgba(254, 215, 2, 0.1);
}

.faq-item.faq-open .faq-icon svg {
  fill: var(--faq-brand);
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0, 0, 0.2, 1), padding 0.25s ease;
  padding: 0 20px;
  box-sizing: border-box;
  font-family: var(--faq-font);
  font-size: 14px;
  font-weight: 400;
  color: var(--faq-text-muted);
  line-height: 1.7;
  margin: 0;
}

.faq-item.faq-open .faq-answer {
  max-height: 600px;
  padding: 0 20px 20px;
}

.faq-answer-divider {
  height: 1px;
  background: var(--faq-border);
  margin: 0 20px 16px;
  display: none;
}

.faq-item.faq-open .faq-answer-divider {
  display: block;
}

.faq-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-top: 48px;
  flex-wrap: wrap;
}

.faq-link-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 28px;
  border-radius: 24px;
  font-family: var(--faq-font);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, opacity 0.2s ease;
  cursor: pointer;
  line-height: 1;
}

.faq-link-btn-primary {
  background: var(--faq-brand);
  color: #000;
  border: 1.5px solid var(--faq-brand);
}

.faq-link-btn-primary:hover {
  opacity: 0.85;
}

.faq-link-btn-secondary {
  background: transparent;
  color: var(--faq-brand);
  border: 1.5px solid rgba(254, 215, 2, 0.5);
}

.faq-link-btn-secondary:hover {
  border-color: var(--faq-brand);
  background: rgba(254, 215, 2, 0.06);
}

/* ===================== SUBPAGE SHARED LAYOUT ===================== */

.subpage-body {
  margin: 0;
  padding: 0;
  background: #000;
  color: var(--faq-text-primary);
  font-family: var(--faq-font);
  min-width: 0;
  overflow-x: hidden;
}

.subpage-wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  background: #000;
  overflow-x: hidden;
}

/* ===================== SUBPAGE HEADER ===================== */

.subpage-header {
  width: 100%;
  max-width: 100%;
  height: 52px;
  background: #000;
  border-bottom: 1px solid var(--faq-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  box-sizing: border-box;
  position: sticky;
  top: 0;
  z-index: 100;
  flex-shrink: 0;
}

.subpage-header-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.subpage-header-logo img {
  display: block;
  height: 28px;
  width: auto;
}

.subpage-header-logo-text {
  font-family: var(--faq-font);
  font-size: 16px;
  font-weight: 700;
  color: var(--faq-brand);
  letter-spacing: 0.5px;
  display: inline-block;
}

.subpage-header-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.subpage-nav-link {
  font-family: var(--faq-font);
  font-size: 13px;
  font-weight: 500;
  color: var(--faq-text-muted);
  text-decoration: none;
  padding: 6px 14px;
  border-radius: 8px;
  transition: color 0.18s ease, background 0.18s ease;
  display: inline-block;
}

.subpage-nav-link:hover {
  color: var(--faq-brand);
  background: rgba(255, 255, 255, 0.06);
}

.subpage-nav-link-active {
  color: var(--faq-brand);
}

.subpage-nav-cta {
  font-family: var(--faq-font);
  font-size: 13px;
  font-weight: 600;
  color: #000;
  background: var(--faq-brand);
  text-decoration: none;
  padding: 7px 18px;
  border-radius: 8px;
  transition: opacity 0.18s ease;
  display: inline-block;
  margin-left: 8px;
}

.subpage-nav-cta:hover {
  opacity: 0.85;
}

/* ===================== SUBPAGE HERO ===================== */

.subpage-hero {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  background: linear-gradient(180deg, #0d0f11 0%, #000 100%);
  border-bottom: 1px solid var(--faq-border);
  padding: 72px 24px 60px;
  text-align: center;
  overflow-x: hidden;
}

.subpage-hero-tag {
  display: inline-block;
  background: rgba(254, 215, 2, 0.12);
  color: var(--faq-brand);
  font-family: var(--faq-font);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 20px;
  margin-bottom: 20px;
}

.subpage-hero-h1 {
  font-family: var(--faq-font);
  font-size: 42px;
  font-weight: 900;
  line-height: 1.12;
  color: var(--faq-text-primary);
  margin: 0 0 16px 0;
  letter-spacing: -0.5px;
}

.subpage-hero-h1 span {
  color: var(--faq-brand);
  display: inline;
}

.subpage-hero-desc {
  font-family: var(--faq-font);
  font-size: 16px;
  font-weight: 400;
  color: var(--faq-text-muted);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.65;
}

/* ===================== SUBPAGE CONTENT ===================== */

.subpage-main {
  flex: 1;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  overflow-x: hidden;
}

.subpage-content {
  max-width: 820px;
  width: 100%;
  margin: 0 auto;
  padding: 56px 24px 80px;
  box-sizing: border-box;
}

.subpage-content-wide {
  max-width: 1040px;
  width: 100%;
  margin: 0 auto;
  padding: 56px 24px 80px;
  box-sizing: border-box;
}

.subpage-section {
  margin-bottom: 56px;
}

.subpage-section-label {
  display: inline-block;
  font-family: var(--faq-font);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--faq-brand);
  margin-bottom: 10px;
}

.subpage-section-title {
  font-family: var(--faq-font);
  font-size: 26px;
  font-weight: 700;
  color: var(--faq-text-primary);
  margin: 0 0 16px 0;
  line-height: 1.25;
}

.subpage-section-text {
  font-family: var(--faq-font);
  font-size: 15px;
  font-weight: 400;
  color: var(--faq-text-muted);
  line-height: 1.75;
  margin: 0 0 14px 0;
}

.subpage-section-text:last-child {
  margin-bottom: 0;
}

.subpage-divider {
  width: 100%;
  height: 1px;
  background: var(--faq-border);
  border: none;
  margin: 0 0 56px 0;
}

/* ===================== INFO CARDS GRID ===================== */

.subpage-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 8px;
}

@media (max-width: 720px) {
  .subpage-cards-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 480px) {
  .subpage-cards-grid {
    grid-template-columns: 1fr;
  }
}

.subpage-card {
  background: var(--faq-bg-card);
  border: 1px solid var(--faq-border2);
  border-radius: 12px;
  padding: 24px 20px;
  box-sizing: border-box;
  transition: border-color 0.2s ease;
}

.subpage-card:hover {
  border-color: rgba(254, 215, 2, 0.25);
}

.subpage-card-icon {
  width: 36px;
  height: 36px;
  background: rgba(254, 215, 2, 0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}

.subpage-card-icon svg {
  width: 18px;
  height: 18px;
  fill: var(--faq-brand);
}

.subpage-card-title {
  font-family: var(--faq-font);
  font-size: 14px;
  font-weight: 600;
  color: var(--faq-text-primary);
  margin: 0 0 6px 0;
  line-height: 1.3;
}

.subpage-card-text {
  font-family: var(--faq-font);
  font-size: 13px;
  font-weight: 400;
  color: var(--faq-text-muted);
  line-height: 1.6;
  margin: 0;
}

/* ===================== HIGHLIGHT BOX ===================== */

.subpage-highlight {
  background: linear-gradient(135deg, rgba(254, 215, 2, 0.08) 0%, rgba(254, 215, 2, 0.03) 100%);
  border: 1px solid rgba(254, 215, 2, 0.2);
  border-radius: 12px;
  padding: 28px 28px;
  margin: 32px 0;
  box-sizing: border-box;
}

.subpage-highlight-title {
  font-family: var(--faq-font);
  font-size: 16px;
  font-weight: 700;
  color: var(--faq-brand);
  margin: 0 0 10px 0;
}

.subpage-highlight-text {
  font-family: var(--faq-font);
  font-size: 14px;
  font-weight: 400;
  color: var(--faq-text-secondary);
  line-height: 1.7;
  margin: 0;
}

/* ===================== STATS ROW ===================== */

.subpage-stats-row {
  display: flex;
  gap: 2px;
  flex-wrap: wrap;
  background: var(--faq-border);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--faq-border2);
  margin: 32px 0;
}

.subpage-stat-item {
  flex: 1;
  min-width: 140px;
  background: var(--faq-bg-card);
  padding: 24px 20px;
  text-align: center;
  box-sizing: border-box;
}

.subpage-stat-value {
  font-family: var(--faq-font);
  font-size: 28px;
  font-weight: 900;
  color: var(--faq-brand);
  line-height: 1;
  margin-bottom: 6px;
  display: block;
}

.subpage-stat-label {
  font-family: var(--faq-font);
  font-size: 12px;
  font-weight: 400;
  color: var(--faq-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  display: block;
}

/* ===================== FAQ PAGE ITEMS ===================== */

.faq-page-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-page-item {
  background: var(--faq-bg-card);
  border: 1px solid var(--faq-border2);
  border-radius: 10px;
  overflow: hidden;
  transition: border-color 0.2s ease;
}

.faq-page-item.faq-open {
  border-color: rgba(254, 215, 2, 0.35);
}

.faq-page-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 18px 22px;
  margin: 0;
  background: transparent;
  border: none;
  outline: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--faq-font);
  font-size: 15px;
  font-weight: 600;
  color: var(--faq-text-secondary);
  line-height: 1.4;
  box-sizing: border-box;
  transition: color 0.2s ease;
  gap: 12px;
}

.faq-page-question:hover {
  color: var(--faq-text-primary);
}

.faq-page-item.faq-open .faq-page-question {
  color: var(--faq-brand);
}

.faq-page-question-text {
  flex: 1;
  display: block;
}

.faq-page-icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1.5px solid var(--faq-border);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s ease, background 0.2s ease;
  background: transparent;
}

.faq-page-icon svg {
  width: 12px;
  height: 12px;
  fill: var(--faq-text-muted);
  transition: fill 0.2s ease, transform 0.3s ease;
}

.faq-page-item.faq-open .faq-page-icon {
  border-color: var(--faq-brand);
  background: rgba(254, 215, 2, 0.1);
}

.faq-page-item.faq-open .faq-page-icon svg {
  fill: var(--faq-brand);
  transform: rotate(45deg);
}

.faq-page-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0, 0, 0.2, 1), padding 0.25s ease;
  padding: 0 22px;
  box-sizing: border-box;
  font-family: var(--faq-font);
  font-size: 14px;
  font-weight: 400;
  color: var(--faq-text-muted);
  line-height: 1.75;
  margin: 0;
}

.faq-page-item.faq-open .faq-page-answer {
  max-height: 800px;
  padding: 0 22px 22px;
}

.faq-page-divider {
  height: 1px;
  background: var(--faq-border);
  margin: 0 22px 16px;
  display: none;
}

.faq-page-item.faq-open .faq-page-divider {
  display: block;
}

/* ===================== FAQ CATEGORY LABEL ===================== */

.faq-category-label {
  font-family: var(--faq-font);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--faq-brand);
  margin: 40px 0 12px 0;
  display: block;
}

.faq-category-label:first-child {
  margin-top: 0;
}

/* ===================== ABOUT PAGE SPECIFIC ===================== */

.about-team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 8px;
}

@media (max-width: 600px) {
  .about-team-grid {
    grid-template-columns: 1fr;
  }
}

.about-team-card {
  background: var(--faq-bg-card);
  border: 1px solid var(--faq-border2);
  border-radius: 12px;
  padding: 24px 22px;
  box-sizing: border-box;
}

.about-team-name {
  font-family: var(--faq-font);
  font-size: 15px;
  font-weight: 700;
  color: var(--faq-text-primary);
  margin: 0 0 4px 0;
}

.about-team-role {
  font-family: var(--faq-font);
  font-size: 12px;
  font-weight: 500;
  color: var(--faq-brand);
  margin: 0 0 10px 0;
  display: block;
}

.about-team-bio {
  font-family: var(--faq-font);
  font-size: 13px;
  font-weight: 400;
  color: var(--faq-text-muted);
  line-height: 1.65;
  margin: 0;
}

.about-timeline {
  position: relative;
  padding-left: 24px;
  border-left: 2px solid var(--faq-border2);
  margin: 8px 0;
}

.about-timeline-item {
  position: relative;
  padding: 0 0 32px 20px;
}

.about-timeline-item:last-child {
  padding-bottom: 0;
}

.about-timeline-dot {
  position: absolute;
  left: -32px;
  top: 3px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--faq-brand);
  border: 2px solid #000;
  box-sizing: border-box;
}

.about-timeline-year {
  font-family: var(--faq-font);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--faq-brand);
  margin: 0 0 4px 0;
  display: block;
}

.about-timeline-title {
  font-family: var(--faq-font);
  font-size: 15px;
  font-weight: 600;
  color: var(--faq-text-primary);
  margin: 0 0 6px 0;
}

.about-timeline-text {
  font-family: var(--faq-font);
  font-size: 13px;
  font-weight: 400;
  color: var(--faq-text-muted);
  line-height: 1.65;
  margin: 0;
}

/* ===================== SUBPAGE CTA SECTION ===================== */

.subpage-cta-section {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  background: var(--faq-bg-secondary);
  border-top: 1px solid var(--faq-border);
  padding: 56px 24px;
  text-align: center;
  overflow-x: hidden;
}

.subpage-cta-title {
  font-family: var(--faq-font);
  font-size: 26px;
  font-weight: 700;
  color: var(--faq-text-primary);
  margin: 0 0 12px 0;
  line-height: 1.25;
}

.subpage-cta-text {
  font-family: var(--faq-font);
  font-size: 14px;
  font-weight: 400;
  color: var(--faq-text-muted);
  margin: 0 0 28px 0;
  line-height: 1.65;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.subpage-cta-btns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.subpage-cta-btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 32px;
  border-radius: 24px;
  font-family: var(--faq-font);
  font-size: 14px;
  font-weight: 700;
  color: #000;
  background: var(--faq-brand);
  text-decoration: none;
  transition: opacity 0.2s ease;
  cursor: pointer;
  border: none;
}

.subpage-cta-btn-primary:hover {
  opacity: 0.85;
}

.subpage-cta-btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 32px;
  border-radius: 24px;
  font-family: var(--faq-font);
  font-size: 14px;
  font-weight: 600;
  color: var(--faq-brand);
  background: transparent;
  border: 1.5px solid rgba(254, 215, 2, 0.45);
  text-decoration: none;
  transition: border-color 0.2s ease, background 0.2s ease;
  cursor: pointer;
}

.subpage-cta-btn-secondary:hover {
  border-color: var(--faq-brand);
  background: rgba(254, 215, 2, 0.06);
}

/* ===================== SUBPAGE FOOTER ===================== */

.subpage-footer {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  background: var(--faq-bg-secondary);
  border-top: 1px solid var(--faq-border);
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  overflow-x: hidden;
}

.subpage-footer-copy {
  font-family: var(--faq-font);
  font-size: 13px;
  font-weight: 400;
  color: var(--faq-text-muted);
  margin: 0;
}

.subpage-footer-links {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.subpage-footer-link {
  font-family: var(--faq-font);
  font-size: 13px;
  font-weight: 400;
  color: var(--faq-text-muted);
  text-decoration: none;
  transition: color 0.18s ease;
  display: inline-block;
}

.subpage-footer-link:hover {
  color: var(--faq-brand);
}

/* ===================== BREADCRUMB ===================== */

.subpage-breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}

.subpage-breadcrumb-item {
  font-family: var(--faq-font);
  font-size: 13px;
  font-weight: 400;
  color: var(--faq-text-muted);
  text-decoration: none;
  transition: color 0.18s ease;
  display: inline-block;
}

.subpage-breadcrumb-item:hover {
  color: var(--faq-brand);
}

.subpage-breadcrumb-sep {
  font-size: 13px;
  color: var(--faq-border);
  display: inline-block;
  flex-shrink: 0;
}

.subpage-breadcrumb-current {
  font-family: var(--faq-font);
  font-size: 13px;
  font-weight: 400;
  color: var(--faq-text-tertiary);
  display: inline-block;
}

/* ===================== RESPONSIVE ===================== */

@media (max-width: 900px) {
  .subpage-hero-h1 {
    font-size: 30px;
  }
  .faq-seo-h1 {
    font-size: 26px;
  }
  .subpage-cta-title {
    font-size: 22px;
  }
}

@media (max-width: 600px) {
  .subpage-hero {
    padding: 48px 16px 40px;
  }
  .subpage-content,
  .subpage-content-wide {
    padding: 36px 16px 56px;
  }
  .subpage-header {
    padding: 0 16px;
  }
  .faq-section-inner {
    padding: 0 16px;
  }
  .subpage-stats-row {
    flex-direction: column;
  }
  .subpage-stat-item {
    border-right: none;
    border-bottom: 1px solid var(--faq-border);
  }
  .subpage-stat-item:last-child {
    border-bottom: none;
  }
  .subpage-cta-section {
    padding: 40px 16px;
  }
  .subpage-footer {
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 16px;
  }
  .subpage-cards-grid {
    grid-template-columns: 1fr;
  }
}

/* ===================== UTILITY ===================== */

.subpage-text-brand {
  color: var(--faq-brand);
}

.subpage-text-muted {
  color: var(--faq-text-muted);
}

.subpage-mt-8 {
  margin-top: 8px;
}

.subpage-mt-16 {
  margin-top: 16px;
}

.subpage-mt-24 {
  margin-top: 24px;
}

.subpage-mt-32 {
  margin-top: 32px;
}

.subpage-mb-0 {
  margin-bottom: 0;
}

.subpage-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.subpage-list-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-family: var(--faq-font);
  font-size: 14px;
  font-weight: 400;
  color: var(--faq-text-muted);
  line-height: 1.65;
}

.subpage-list-bullet {
  flex-shrink: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--faq-brand);
  margin-top: 8px;
}