
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    :root {
      --green:       #00C587;
      --green-dark:  #00a872;
      --green-dim:   rgba(0, 197, 135, 0.10);
      --navy:        #191544;
      --text:        #1a1a2e;
      --muted:       #5f5e75;
      --border:      #e8e8f0;
      --bg:          #fafafa;
      --surface:     #ffffff;
      --radius:      12px;
    }

    html { scroll-behavior: smooth; }

    body {
      font-family: 'Inter', system-ui, sans-serif;
      color: var(--text);
      background: var(--bg);
      line-height: 1.7;
      -webkit-font-smoothing: antialiased;
    }

    .header {
      background: var(--navy);
      padding: 0 24px;
      height: 64px;
      display: flex;
      align-items: center;
      position: sticky;
      top: 0;
      z-index: 100;
    }

    .header-inner {
      width: 100%;
      max-width: 860px;
      margin: 0 auto;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

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

    .logo-link img { height: 36px; width: auto; }

    .logo-name {
      font-size: .95rem;
      font-weight: 700;
      color: #fff;
      letter-spacing: -.3px;
    }

    .back-link {
      font-size: .84rem;
      font-weight: 500;
      color: rgba(255,255,255,0.65);
      text-decoration: none;
      display: flex;
      align-items: center;
      gap: 6px;
      transition: color .2s;
    }

    .back-link:hover { color: var(--green); }

    .page-hero {
      background: linear-gradient(135deg, var(--navy) 0%, #1e1a5e 100%);
      padding: 56px 24px 48px;
      text-align: center;
    }

    .page-hero-tag {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      background: rgba(0,197,135,0.12);
      border: 1px solid rgba(0,197,135,0.25);
      color: var(--green);
      font-size: .72rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: .8px;
      padding: 5px 14px;
      border-radius: 999px;
      margin-bottom: 1rem;
    }

    .page-hero h1 {
      font-size: clamp(1.8rem, 4vw, 2.6rem);
      font-weight: 800;
      color: #fff;
      letter-spacing: -.04em;
      margin-bottom: .75rem;
    }

    .page-hero p {
      color: rgba(255,255,255,0.55);
      font-size: .95rem;
      max-width: 480px;
      margin: 0 auto;
    }

    .content {
      max-width: 860px;
      margin: 0 auto;
      padding: 56px 24px 80px;
    }

    .last-updated {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      font-size: .78rem;
      color: var(--muted);
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: 999px;
      padding: 4px 12px;
      margin-bottom: 40px;
    }

    .section {
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      margin-bottom: 16px;
      overflow: hidden;
    }

    .section-header {
      display: flex;
      align-items: center;
      gap: 12px;
      padding: 18px 24px;
      border-bottom: 1px solid var(--border);
      background: rgba(25,21,68,0.02);
    }

    .section-num {
      width: 28px;
      height: 28px;
      border-radius: 8px;
      background: var(--green-dim);
      color: var(--green-dark);
      font-size: .78rem;
      font-weight: 800;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    .section-header h2 {
      font-size: .97rem;
      font-weight: 700;
      color: var(--navy);
    }

    .section-body {
      padding: 20px 24px;
    }

    .section-body p {
      font-size: .9rem;
      color: var(--muted);
      margin-bottom: .85rem;
      line-height: 1.7;
    }

    .section-body p:last-child { margin-bottom: 0; }

    .section-body ul {
      margin: .6rem 0 .85rem 0;
      padding-left: 1.2rem;
      display: flex;
      flex-direction: column;
      gap: .4rem;
    }

    .section-body li {
      font-size: .9rem;
      color: var(--muted);
      line-height: 1.6;
    }

    .section-body strong { color: var(--text); font-weight: 600; }

    .placeholder {
      background: rgba(255,193,7,0.12);
      border: 1px solid rgba(255,193,7,0.35);
      border-radius: 6px;
      padding: 2px 8px;
      font-size: .85rem;
      color: #92650a;
      font-style: italic;
    }

    .highlight-box {
      background: rgba(25,21,68,0.04);
      border: 1px solid var(--border);
      border-radius: 10px;
      padding: 14px 16px;
      margin-top: .75rem;
    }

    .highlight-box p {
      font-size: .88rem !important;
      color: var(--text) !important;
      margin-bottom: 0 !important;
    }

    .footer {
      background: var(--navy);
      padding: 28px 24px;
    }

    .footer-inner {
      max-width: 860px;
      margin: 0 auto;
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 12px;
    }

    .footer p {
      font-size: .82rem;
      color: rgba(255,255,255,0.4);
    }

    .footer-legal {
      display: flex;
      gap: 1.25rem;
    }

    .footer-legal a {
      font-size: .82rem;
      color: rgba(255,255,255,0.4);
      text-decoration: none;
      transition: color .2s;
    }

    .footer-legal a:hover { color: var(--green); }

    @media (max-width: 600px) {
      .content { padding: 36px 16px 60px; }
      .section-body { padding: 16px; }
      .section-header { padding: 14px 16px; }
      .footer-inner { flex-direction: column; text-align: center; }
    }
  