
    :root {
      --orange: #FF6B00;
      --orange-dark: #D95400;
      --orange-light: #FFF3EA;
      --text: #1D252B;
      --muted: #66717A;
      --border: #E7EBEE;
      --white: #FFFFFF;
      --radius: 12px;
    }

    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      margin: 0;
      color: var(--text);
      background: linear-gradient(180deg, var(--orange-light) 0, #FFFFFF 430px);
      font-family: Arial, Helvetica, sans-serif;
      line-height: 1.65;
    }

    .faq-page {
      min-height: 100vh;
    }

    .faq-container {
      width: min(1120px, calc(100% - 40px));
      margin: 0 auto;
    }

    .faq-hero {
      padding: 74px 0 52px;
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      margin: 0 0 15px;
      color: var(--orange-dark);
      font-size: 13px;
      font-weight: 800;
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }

    .eyebrow::before {
      content: "";
      width: 28px;
      height: 3px;
      border-radius: 999px;
      background: var(--orange);
    }

    h1,
    h2,
    h3,
    p {
      margin-top: 0;
    }

    h1 {
      max-width: 780px;
      margin-bottom: 18px;
      color: var(--text);
      font-size: clamp(36px, 5vw, 64px);
      line-height: 1.08;
    }

    .hero-copy {
      max-width: 720px;
      margin-bottom: 0;
      color: var(--muted);
      font-size: 18px;
    }

    .faq-layout {
      padding-bottom: 84px;
    }

    .faq-section-title {
      margin-bottom: 20px;
      font-size: 28px;
      line-height: 1.2;
    }

    .faq-list {
      display: grid;
      gap: 12px;
    }

    .faq-item {
      overflow: hidden;
      border: 1px solid var(--border);
      border-radius: var(--radius);
      background: var(--white);
      box-shadow: 0 5px 20px rgba(45, 34, 24, 0.035);
      transition: border-color 180ms ease, box-shadow 180ms ease;
    }

    .faq-item.is-open {
      border-color: rgba(255, 107, 0, 0.55);
      box-shadow: 0 18px 50px rgba(45, 34, 24, 0.08);
    }

    .faq-question {
      width: 100%;
      display: grid;
      grid-template-columns: 42px minmax(0, 1fr) 28px;
      align-items: center;
      gap: 14px;
      padding: 22px 24px;
      border: 0;
      background: transparent;
      color: var(--text);
      cursor: pointer;
      text-align: left;
      font: inherit;
      font-size: 17px;
      font-weight: 800;
      line-height: 1.35;
    }

    .faq-question:hover,
    .faq-question:focus-visible {
      background: #FFF9F5;
    }

    .faq-question:focus-visible {
      outline: 3px solid rgba(255, 107, 0, 0.3);
      outline-offset: -3px;
    }

    .faq-number {
      color: var(--orange);
      font-size: 13px;
      font-weight: 800;
      letter-spacing: 0.06em;
    }

    .faq-icon {
      position: relative;
      width: 24px;
      height: 24px;
      border: 1px solid rgba(255, 107, 0, 0.34);
      border-radius: 50%;
      color: var(--orange);
    }

    .faq-icon::before,
    .faq-icon::after {
      content: "";
      position: absolute;
      top: 50%;
      left: 50%;
      width: 10px;
      height: 2px;
      border-radius: 999px;
      background: currentColor;
      transform: translate(-50%, -50%);
    }

    .faq-icon::after {
      transform: translate(-50%, -50%) rotate(90deg);
      transition: transform 180ms ease;
    }

    .faq-item.is-open .faq-icon::after {
      transform: translate(-50%, -50%) rotate(0deg);
    }

    .faq-answer {
      display: grid;
      grid-template-rows: 0fr;
      transition: grid-template-rows 220ms ease;
    }

    .faq-answer-inner {
      min-height: 0;
      overflow: hidden;
    }

    .faq-answer p {
      margin: 0;
      padding: 0 68px 24px 80px;
      color: var(--muted);
      font-size: 16px;
    }

    .faq-item.is-open .faq-answer {
      grid-template-rows: 1fr;
    }

    .faq-footer {
      padding: 24px 0;
      border-top: 1px solid var(--border);
      color: var(--muted);
      font-size: 13px;
      text-align: center;
    }

    @media (max-width: 600px) {
      .faq-container {
        width: min(100% - 28px, 1120px);
      }

      .faq-hero {
        padding: 52px 0 38px;
      }

      .hero-copy {
        font-size: 16px;
      }

      .faq-question {
        grid-template-columns: 30px minmax(0, 1fr) 24px;
        gap: 10px;
        padding: 18px 16px;
        font-size: 15px;
      }

      .faq-answer p {
        padding: 0 16px 20px 56px;
        font-size: 15px;
      }
    }

    @media (prefers-reduced-motion: reduce) {
      html {
        scroll-behavior: auto;
      }

      *,
      *::before,
      *::after {
        transition-duration: 0.01ms !important;
      }
    }
  