/* Gemeinsames Styling für Impressum, Datenschutz und Nutzungsbedingungen.
   Bewusst schlicht und ohne externe Ressourcen: die Seiten müssen auch dann laden,
   wenn sie aus dem App-Store-Review heraus über eine langsame Verbindung geöffnet werden. */
:root {
  --bg: #ffffff;
  --text: #16161a;
  --muted: #55555f;
  --line: #e2e2e8;
  --accent: #d63b1f;
}
@media (prefers-color-scheme: dark) {
  :root {
    --bg: #0b0b0e;
    --text: #f5f5f7;
    --muted: #a2a2ad;
    --line: #2a2a31;
    --accent: #ff7a4d;
  }
}
* { box-sizing: border-box; }
body {
  margin: 0;
  padding: 32px 20px 80px;
  background: var(--bg);
  color: var(--text);
  font: 16px/1.65 -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  -webkit-text-size-adjust: 100%;
}
main { max-width: 720px; margin: 0 auto; }
h1 { font-size: 28px; line-height: 1.25; margin: 0 0 6px; letter-spacing: -0.02em; }
h2 { font-size: 20px; line-height: 1.3; margin: 38px 0 10px; letter-spacing: -0.01em; }
h3 { font-size: 16.5px; margin: 24px 0 6px; }
p, li { color: var(--text); }
ul, ol { padding-left: 22px; }
li { margin: 5px 0; }
a { color: var(--accent); }
.stand { color: var(--muted); font-size: 14px; margin: 0 0 28px; }
.nav { margin: 36px 0 0; padding-top: 18px; border-top: 1px solid var(--line); font-size: 14.5px; }
.nav a { margin-right: 16px; }
table { width: 100%; border-collapse: collapse; margin: 14px 0; font-size: 14.5px; display: block; overflow-x: auto; }
th, td { text-align: left; padding: 9px 10px; border-bottom: 1px solid var(--line); vertical-align: top; }
th { font-weight: 600; }
.box { border: 1px solid var(--line); border-radius: 10px; padding: 14px 16px; margin: 18px 0; }
.box p:first-child { margin-top: 0; }
.box p:last-child { margin-bottom: 0; }
address { font-style: normal; }
