/* ─── Gedeelde styling voor legal pagina's ─────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy: #1A2B4A;
  --cyan: #00BFFF;
  --cyan-hover: #009acc;
  --bg: #FFFFFF;
  --bg-alt: #F8FAFC;
  --text: #1A2B4A;
  --text-muted: #64748B;
  --border: #E2E8F0;
}

html { scroll-behavior: smooth; }

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.container {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Header */
header {
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
  background: white;
}
.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.brand-mark {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: var(--navy);
  position: relative;
  flex-shrink: 0;
}
.brand-mark::before {
  content: "";
  position: absolute;
  inset: 8px;
  background: var(--cyan);
  border-radius: 50%;
}
.brand-text { line-height: 1.1; }
.brand-name {
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.01em;
}
.brand-sub {
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 2px;
}
.back-link {
  font-size: 14px;
  color: var(--text);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.15s;
}
.back-link:hover { color: var(--cyan); }

/* Main content */
main { padding: 56px 0 80px; }

main h1 {
  font-size: 36px;
  font-weight: 800;
  letter-spacing: -0.025em;
  margin-bottom: 8px;
  color: var(--navy);
  line-height: 1.15;
}
main .updated {
  color: var(--text-muted);
  font-size: 13px;
  margin-bottom: 36px;
}
main .lede {
  font-size: 17px;
  color: var(--text-muted);
  margin-bottom: 36px;
  line-height: 1.55;
}
main h2 {
  font-size: 19px;
  font-weight: 700;
  color: var(--navy);
  margin-top: 36px;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
main h2:first-of-type { margin-top: 0; }
main h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  margin-top: 22px;
  margin-bottom: 6px;
}
main p {
  font-size: 15px;
  color: var(--text);
  margin-bottom: 14px;
}
main ul, main ol {
  font-size: 15px;
  margin-bottom: 14px;
  padding-left: 22px;
}
main li { margin-bottom: 6px; }
main strong { color: var(--navy); font-weight: 700; }
main a {
  color: var(--cyan);
  text-decoration: none;
  font-weight: 500;
}
main a:hover { text-decoration: underline; }

main .note {
  background: var(--bg-alt);
  border-left: 3px solid var(--cyan);
  padding: 14px 18px;
  margin: 20px 0;
  font-size: 14px;
  border-radius: 4px;
  color: var(--text);
}

/* Footer */
footer {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  padding: 36px 0;
  font-size: 13px;
  color: var(--text-muted);
  text-align: center;
}
footer .footer-row { margin-bottom: 8px; }
footer strong { color: var(--navy); font-weight: 700; }
footer a {
  color: var(--text-muted);
  text-decoration: none;
  margin: 0 6px;
  transition: color 0.15s;
}
footer a:hover { color: var(--cyan); }

@media (max-width: 640px) {
  main { padding: 36px 0 60px; }
  main h1 { font-size: 28px; }
  main h2 { font-size: 17px; }
  main .lede { font-size: 16px; }
  .brand-sub { display: none; }
}
