  /* Header — legal subpagina */
  .header-logo {
    text-decoration: none;
  }
  .header-logo:hover { color: var(--groen-salie); }
  .header-terug {
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: var(--groen-donker);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    border-radius: 100px;
    transition: background 0.15s, color 0.15s;
  }
  .header-terug:hover {
    background: rgba(28, 58, 42, 0.06);
    color: var(--groen-salie);
  }
  .header-terug svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
  }

  /* Sub-hero */
  .sub-hero {
    background: var(--salie-waas);
    padding: var(--s8) 0 var(--s6);
    text-align: center;
  }
  .sub-hero h1 {
    font-family: 'DM Sans', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: var(--groen-donker);
    line-height: 1.2;
    letter-spacing: -0.01em;
    margin-bottom: var(--s1);
  }
  .sub-hero-meta {
    font-family: 'DM Sans', sans-serif;
    font-size: 15px;
    font-weight: 400;
    color: var(--tekst-2);
  }

  .sub-container {
    max-width: 720px;
    margin: 0 auto;
    padding: var(--s8) var(--s4) var(--s12);
  }

  /* Inhoudsopgave */
  .inhoud {
    background: var(--salie-waas);
    border-radius: var(--radius-lg);
    padding: var(--s3) var(--s4);
    margin-bottom: var(--s6);
  }
  .inhoud-titel {
    font-size: 14px;
    font-weight: 600;
    color: var(--groen-donker);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: var(--s2);
  }
  .inhoud ul {
    list-style: none;
    columns: 2;
    column-gap: var(--s4);
  }
  .inhoud li {
    font-size: 14px;
    line-height: 1.7;
    padding: 3px 0;
    break-inside: avoid;
  }
  .inhoud a {
    color: var(--groen-donker);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s, color 0.2s;
  }
  .inhoud a:hover {
    color: var(--groen-salie);
    border-bottom-color: var(--groen-salie);
  }

  /* Artikelen */
  .artikel {
    margin-bottom: var(--s6);
    padding-bottom: var(--s6);
    border-bottom: 1px solid var(--lijn);
  }
  .artikel:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
  }
  .artikel h2 {
    font-family: 'DM Sans', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--groen-donker);
    line-height: 1.3;
    margin-bottom: var(--s3);
    letter-spacing: -0.005em;
  }
  .artikel h3 {
    font-family: 'DM Sans', sans-serif;
    font-size: 17px;
    font-weight: 600;
    color: var(--groen-donker);
    line-height: 1.4;
    margin-top: var(--s3);
    margin-bottom: var(--s1);
  }
  .artikel p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--tekst);
    margin-bottom: var(--s2);
  }
  .artikel ol {
    counter-reset: artikel-item;
    list-style: none;
    padding-left: 0;
  }
  .artikel ol > li {
    counter-increment: artikel-item;
    font-size: 16px;
    line-height: 1.7;
    color: var(--tekst);
    padding-left: 28px;
    position: relative;
    margin-bottom: 12px;
  }
  .artikel ol > li::before {
    content: counter(artikel-item) ".";
    position: absolute;
    left: 0;
    font-weight: 600;
    color: var(--groen-salie);
    font-size: 14px;
  }
  .artikel ol ol {
    counter-reset: sub-item;
    margin-top: 8px;
    margin-bottom: 4px;
  }
  .artikel ol ol > li {
    counter-increment: sub-item;
    padding-left: 24px;
    margin-bottom: 6px;
    font-size: 15px;
  }
  .artikel ol ol > li::before {
    content: counter(sub-item, lower-alpha) ".";
    font-size: 13px;
  }
  .artikel strong {
    font-weight: 600;
    color: var(--groen-donker);
  }
  .artikel em {
    font-style: italic;
    color: var(--tekst-2);
  }

  /* Bijlage formulier */
  .bijlage {
    background: var(--salie-waas);
    border-radius: var(--radius-lg);
    padding: var(--s4);
    margin-top: var(--s6);
  }
  .bijlage h2 {
    font-family: 'DM Sans', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--groen-donker);
    margin-bottom: var(--s2);
  }
  .bijlage p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--tekst);
    margin-bottom: var(--s2);
  }
  .bijlage-veld {
    display: flex;
    gap: var(--s2);
    align-items: baseline;
    margin-bottom: 10px;
    font-size: 15px;
    line-height: 1.6;
  }
  .bijlage-label {
    font-weight: 600;
    color: var(--groen-donker);
    flex-shrink: 0;
    min-width: 180px;
  }
  .bijlage-lijn {
    flex: 1;
    border-bottom: 1px solid var(--lijn);
    min-width: 80px;
  }
  .bijlage-checkbox {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 15px;
    margin-right: var(--s2);
  }
  .bijlage-checkbox input[type="checkbox"] {
    appearance: none;
    width: 16px;
    height: 16px;
    border: 1.5px solid var(--lijn);
    border-radius: 3px;
    background: var(--wit);
    cursor: pointer;
  }

  /* Laatste update */
  .sub-update {
    text-align: center;
    font-size: 13px;
    color: var(--tekst-3);
    padding: var(--s4) 0;
  }

  /* Footer — actieve link */
  .footer-links a.actief {
    font-weight: 600;
    color: var(--groen-donker);
    border-bottom-color: var(--groen-salie);
  }

  /* Responsive — 768px */
  @media (max-width: 768px) {
    .inhoud ul { columns: 1; }
  }

  /* Responsive — 480px */
  @media (max-width: 480px) {
    .sub-hero { padding: var(--s6) 0 var(--s5); }
    .sub-hero h1 { font-size: 26px; }
    .sub-container { padding: var(--s5) var(--s3) var(--s8); }
    .artikel h2 { font-size: 19px; }
    .artikel p,
    .artikel ol > li { font-size: 15px; }
    .artikel ol ol > li { font-size: 14px; }
    .artikel { margin-bottom: var(--s5); padding-bottom: var(--s5); }
    .inhoud { padding: var(--s2) var(--s3); }
    .bijlage { padding: var(--s3); }
    .bijlage-veld { flex-direction: column; gap: 2px; }
    .bijlage-label { min-width: auto; }
  }
