/* Intake.now - opmaak van de juridische pagina's (privacy, terms,
   account & data deletion). Eén bestand voor alle taalversies, zodat ze
   er per definitie hetzelfde uitzien als de rest van de site. */

* { margin: 0; padding: 0; box-sizing: border-box; }
html, body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: #333; background: #fff; font-size: 16px; line-height: 1.6; scroll-behavior: smooth;
}
.page { position: relative; min-height: 100vh; overflow: hidden; }
.grid-background {
  --container-w: calc(min(1200px, 100vw) - 32px);
  --bg-grid-color: rgba(226, 232, 240, .35);
  --bg-grid-step: calc(var(--container-w) / 18);
  --bg-grid-offset: calc(max(0px, 50vw - .5 * var(--container-w)));
  position: fixed; inset: 0; pointer-events: none; z-index: 0;
  background-image: linear-gradient(var(--bg-grid-color) 1px, transparent 1.5px),
    linear-gradient(to right, var(--bg-grid-color) 1px, transparent 1.5px);
  background-position: var(--bg-grid-offset) 0;
  background-size: var(--bg-grid-step) var(--bg-grid-step);
}
.container { width: 90%; max-width: 1200px; margin: 0 auto; position: relative; z-index: 1; }
header {
  position: fixed; inset: 0 0 auto; width: 100vw; z-index: 1000;
  background: rgba(255,255,255,.82); backdrop-filter: blur(10px);
  display: flex; align-items: center; justify-content: space-between; padding: 1rem 2rem;
}
.logo {
  display: inline-flex; align-items: center; color: #000; font-size: 1.5rem;
  font-weight: 600; text-decoration: none; white-space: nowrap;
}
.logo img { height: 1em; width: auto; margin-right: 8px; }
nav { display: flex; align-items: center; gap: 1.5rem; }
nav a { color: #000; font-size: 1rem; text-decoration: none; }
nav a:hover { opacity: .7; }
main { padding-top: 5rem; }
.policy-hero { padding: 4rem 0 2rem; text-align: center; }
.policy-hero h1 {
  color: #000; font-size: clamp(2.35rem, 7vw, 4.6rem); font-weight: 700;
  line-height: 1.05; margin-bottom: 1rem;
}
.policy-hero p { color: #555; font-size: 1.15rem; }
.policy { max-width: 760px; padding: 1rem 0 5rem; }
.policy section { margin-top: 3rem; }
.policy h2 { color: #000; font-size: 1.75rem; line-height: 1.2; margin-bottom: 1.1rem; }
.policy h3 { color: #000; font-size: 1.1rem; margin: 1.5rem 0 .65rem; }
.policy p { color: #444; margin-bottom: 1.1rem; }
.policy ul { color: #444; margin: 0 0 1.25rem 1.4rem; }
.policy li { margin-bottom: .55rem; padding-left: .25rem; }
.policy a { color: #000; text-underline-offset: 3px; }
.policy a:hover { opacity: .7; }
.effective-date {
  display: inline-block; padding: .45rem .85rem; border: 1px solid #eee;
  border-radius: 999px; background: rgba(255,255,255,.86); color: #777 !important; font-size: .92rem;
}
footer {
  position: relative; z-index: 1; border-top: 1px solid #eee; padding: 2rem 0;
  text-align: center; color: #999; font-size: .9rem;
}
footer a { color: #999; text-decoration: none; }
footer a:hover { color: #555; }
@media (max-width: 820px) {
  .grid-background { --bg-grid-step: calc(var(--container-w) / 12); }
  header { padding: .75rem 1rem; }
  nav { gap: 1rem; }
  /* Zelfde keuze als op de overige pagina's: op smalle schermen blijven
     het uitklapmenu en Over ons staan, de rest wijkt. */
  nav > a { display: none; }
  nav > a#metaAbout { display: inline; font-size: .95rem; }
  .logo { font-size: 1.25rem; }
  main { padding-top: 4.75rem; }
  .policy-hero { padding: 3rem 0 1.5rem; }
  .policy-hero p { font-size: 1.05rem; }
  .policy { padding-bottom: 3.5rem; }
  .policy section { margin-top: 2.5rem; }
}
