/* Gemeinsame Gestaltung fuer Impressum und Datenschutzerklaerung.
   Liegt auf dem eigenen Server -- keine externen Schriften, keine CDN. */
:root{
  --navy:#102850; --blau:#115FAD; --text:#22303f; --grau:#5c6b7a;
  --linie:#dde5ee; --bg:#f5f8fc;
}
*{box-sizing:border-box}
body{
  margin:0; background:var(--bg); color:var(--text);
  font-family:"Segoe UI",system-ui,-apple-system,"Helvetica Neue",Arial,sans-serif;
  font-size:16px; line-height:1.65;
}
a{color:var(--blau)}

.kopf{
  background:#fff; border-bottom:1px solid var(--linie);
  padding:14px 20px; text-align:center;
}
.mini{height:74px; width:auto; display:inline-block}
.zurueck{display:inline-block}

.blatt{
  max-width:760px; margin:0 auto; padding:34px 22px 50px;
  background:#fff; border-left:1px solid var(--linie); border-right:1px solid var(--linie);
  min-height:calc(100vh - 140px);
}
h1{font-size:26px; color:var(--navy); margin:0 0 22px; font-weight:600}
h2{
  font-size:17px; color:var(--navy); margin:30px 0 8px; font-weight:600;
  padding-bottom:5px; border-bottom:1px solid var(--linie);
}
p{margin:0 0 14px}
ul{margin:0 0 14px; padding-left:22px}
li{margin:4px 0}
strong{color:var(--navy)}

.einleitung{
  background:#eef4fb; border-left:3px solid var(--blau);
  padding:14px 16px; border-radius:8px; margin-bottom:26px;
}
.hinweis{font-size:14.5px; color:var(--grau)}
.stand{margin-top:34px; font-size:14px; color:var(--grau)}

.fuss{
  border-top:1px solid var(--linie); background:#fff;
  padding:16px 20px; text-align:center; font-size:14px; color:var(--grau);
}
.fuss a{margin:0 12px; text-decoration:none; font-weight:500}
.fuss a:hover{text-decoration:underline}

@media (max-width:560px){
  .blatt{padding:24px 16px 40px; border:none}
  h1{font-size:22px}
}
