<link href="https://fonts.googleapis.com/css2?family=Nunito:wght@400;700;800;900&display=swap" rel="stylesheet">

<style>
  .hn-faq-section *  { box-sizing: border-box; margin: 0; padding: 0; }
  .hn-faq-section {
    background: #F7F8FA;
    padding: 56px 60px 64px;
    font-family: 'Nunito', Arial, sans-serif;
  }
  .hn-faq-eyebrow {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #1B75BC;
    text-align: center;
    margin-bottom: 10px;
    display: block;
  }
  .hn-faq-section h2 {
    font-size: 34px;
    font-weight: 900;
    color: #2B7FCD;
    text-align: center;
    margin-bottom: 40px;
    font-family: 'Nunito', Arial, sans-serif;
  }

  /* Desktop: 2-col grid */
  .hn-faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
  .hn-faq-card {
    background: #fff;
    border: 1px solid #e8edf2;
    border-radius: 12px;
    padding: 24px 28px;
  }
  .hn-faq-card h3 {
    font-size: 15px;
    font-weight: 800;
    color: #1B75BC;
    margin-bottom: 8px;
    font-family: 'Nunito', Arial, sans-serif;
  }
  .hn-faq-card p {
    font-size: 14px;
    color: #686868;
    line-height: 1.6;
    font-family: 'Nunito', Arial, sans-serif;
  }

  /* Mobile: accordion */
  @media (max-width: 640px) {
    .hn-faq-section { padding: 40px 20px 48px; }
    .hn-faq-section h2 { font-size: 26px; margin-bottom: 28px; }

    .hn-faq-grid {
      display: flex;
      flex-direction: column;
      gap: 0;
    }
    .hn-faq-card {
      border-radius: 0;
      border-left: none;
      border-right: none;
      border-bottom: none;
      padding: 8px 16px;
    }
    .hn-faq-card:first-child { border-top: 1px solid #e8edf2; }
    .hn-faq-card { border-bottom: 1px solid #e8edf2; }

    .hn-faq-card h3 {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 18px 4px;
      margin: 0;
      cursor: pointer;
      font-size: 15px;
      user-select: none;
    }
    .hn-faq-card h3::after {
      content: '+';
      font-size: 22px;
      font-weight: 400;
      color: #1B75BC;
      flex-shrink: 0;
      margin-left: 12px;
      transition: transform 0.25s;
      display: inline-block;
    }
    .hn-faq-card.hn-open h3::after {
      transform: rotate(45deg);
    }
    .hn-faq-body {
      overflow: hidden;
      max-height: 0;
      transition: max-height 0.3s ease, padding 0.3s ease;
      padding: 0 4px;
    }
    .hn-faq-card.hn-open .hn-faq-body {
      max-height: 300px;
      padding: 0 4px 16px;
    }
  }

  /* Desktop: always show body */
  @media (min-width: 641px) {
    .hn-faq-body { display: block !important; max-height: none !important; }
  }
</style>