/* PAGE HERO */
  .page-hero {
    padding: 120px 5vw 60px;
    background: linear-gradient(135deg, var(--brand-light) 0%, var(--white) 60%);
    border-bottom: 1px solid var(--border);
  }
  .page-hero-inner { max-width: 900px; margin: 0 auto; }
  .breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 0.8rem; color: var(--muted); margin-bottom: 1.25rem; }
  .breadcrumb a { color: var(--brand); text-decoration: none; }
  .breadcrumb span { color: var(--border); }
  .page-hero h1 { font-family: Nunito, sans-serif; font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; color: var(--dark); letter-spacing: -0.03em; margin-bottom: 0.75rem; }
  .page-hero p { font-size: 1rem; color: var(--muted); max-width: 560px; }
  .update-badge { display: inline-flex; align-items: center; gap: 6px; background: var(--white); border: 1px solid var(--border); border-radius: 100px; padding: 4px 14px; font-size: 0.78rem; color: var(--muted); margin-top: 1rem; }
  .update-badge strong { color: var(--text); }

  /* LAYOUT */
  .doc-layout { display: grid; grid-template-columns: 240px 1fr; gap: 3rem; max-width: 1100px; margin: 0 auto; padding: 60px 5vw 100px; align-items: start; }

  /* SIDEBAR */
  .doc-sidebar { position: sticky; top: 88px; }
  .sidebar-title { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); margin-bottom: 1rem; }
  .sidebar-nav { list-style: none; }
  .sidebar-nav li { margin-bottom: 2px; }
  .sidebar-nav a { display: block; padding: 6px 12px; border-radius: 8px; font-size: 1rem; color: var(--muted); text-decoration: none; transition: background .2s, color .2s; border-left: 2px solid transparent; }
  .sidebar-nav a:hover { background: var(--brand-light); color: var(--brand); border-left-color: var(--brand); }
  .sidebar-nav a.active { background: var(--brand-light); color: var(--brand); border-left-color: var(--brand); font-weight: 600; }

  /* CONTENT */
  .doc-content {}
  .doc-section { margin-bottom: 3rem; scroll-margin-top: 88px; }
  .doc-section:last-child { margin-bottom: 0; }

  /* Policy intro card */
  .policy-intro {
    background: var(--dark); color: #fff; border-radius: 16px;
    padding: 2rem 2.5rem; margin-bottom: 3rem;
  }
  .policy-intro p { font-size: 1rem; line-height: 1.8; opacity: 0.85; }
  .policy-intro p + p { margin-top: 0.75rem; }

  .section-num {
    display: inline-flex; align-items: center; justify-content: center;
    width: 32px; height: 32px; border-radius: 8px;
    background: var(--brand-light); color: var(--brand);
    font-size: 0.8rem; font-weight: 800; margin-right: 10px; flex-shrink: 0;
  }
  .section-heading {
    display: flex; align-items: center; margin-bottom: 1.25rem;
    padding-bottom: 0.75rem; border-bottom: 1.5px solid var(--border);
  }
  .section-heading h2 { font-family: Nunito, sans-serif; font-size: 1.15rem; font-weight: 800; color: var(--dark); }

  .doc-p { font-size: 1rem; color: var(--text); line-height: 1.85; margin-bottom: 0.85rem; }
  .doc-p:last-child { margin-bottom: 0; }

  .info-table { width: 100%; border-collapse: collapse; margin: 1rem 0; font-size: 1rem; }
  .info-table th { background: var(--brand-light); color: var(--brand); padding: 10px 14px; text-align: left; font-weight: 700; font-size: 0.8rem; }
  .info-table td { padding: 10px 14px; border-bottom: 1px solid var(--border); vertical-align: top; line-height: 1.75; color: var(--text); }
  .info-table tr:last-child td { border-bottom: none; }
  .info-table td:first-child { font-weight: 600; color: var(--dark); width: 220px; background: rgba(253,249,246,0.6); }
  .info-table tr:hover td { background: rgba(255,104,51,0.03); }

  .doc-list { list-style: none; margin: 0.75rem 0 1rem; }
  .doc-list li { position: relative; padding-left: 1.25rem; font-size: 1rem; color: var(--text); line-height: 1.85; margin-bottom: 0.5rem; }
  .doc-list li::before { content: '–'; position: absolute; left: 0; color: var(--brand); font-weight: 700; }
  .doc-list.numbered { counter-reset: item; }
  .doc-list.numbered li { padding-left: 1.75rem; }
  .doc-list.numbered li::before { content: counter(item) '.'; counter-increment: item; font-weight: 700; }

  .highlight-box { background: var(--brand-light); border-left: 3px solid var(--brand); border-radius: 0 10px 10px 0; padding: 1rem 1.25rem; margin: 1rem 0; font-size: 0.88rem; color: var(--text); line-height: 1.75; }
  .highlight-box strong { color: var(--brand); }

  .contact-card { background: var(--white); border: 1px solid var(--border); border-radius: 14px; padding: 1.5rem; margin-top: 1rem; }
  .contact-card h4 { font-size: 0.9rem; font-weight: 700; color: var(--dark); margin-bottom: 0.75rem; }
  .contact-row { display: flex; gap: 0.5rem; font-size: 0.85rem; color: var(--text); margin-bottom: 0.4rem; align-items: flex-start; }
  .contact-row span:first-child { color: var(--muted); min-width: 80px; font-size: 0.8rem; }

@media (max-width: 900px) {
    .doc-layout { grid-template-columns: 1fr; gap: 2rem; }
    .doc-sidebar { position: static; display: none; }
  }
  @media (max-width: 600px) {
    .info-table td:first-child { width: 140px; }
  }
