:root{
  --bg:#f3f6fb;
  --card:#ffffff;
  --text:#0f172a;
  --muted:#475569;
  --line:rgba(15,23,42,.12);
  --accent:#c1121f; /* deep red from German flag */
}
*{box-sizing:border-box}
html,body{
  margin:0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: linear-gradient(180deg, #f3f6fb 0%, #e9eef6 100%);
  color:var(--text);
}
body{
  margin:0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: linear-gradient(180deg, #f3f6fb 0%, #e9eef6 100%);
  color:var(--text);
}
.wrap{max-width:1100px; margin:0 auto; padding:28px 18px 40px}
.card{
  background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.02));
  border:1px solid var(--line);
  border-radius:18px;
  padding:18px;
  box-shadow: 0 16px 40px rgba(0,0,0,.35);
}
.brand{display:flex; gap:14px; align-items:center}
.logo{width:56px; height:56px; border-radius:12px}
h1{margin:0; font-size:28px}
.sub{margin:6px 0 0; color:var(--muted); line-height:1.4}
.badges{margin-top:14px; display:flex; gap:10px; flex-wrap:wrap}
.badge{
  padding:6px 10px;
  border:1px solid var(--line);
  border-radius:999px;
  color:var(--muted);
  font-size:13px;
}
.grid{display:grid; grid-template-columns: 1.1fr .9fr; gap:16px; margin-top:16px}
@media (max-width: 900px){ .grid{grid-template-columns:1fr} }
h2{margin:0 0 10px; font-size:18px}
p{margin:0 0 12px; color:var(--muted); line-height:1.6}
.list{margin:10px 0 0; padding-left:18px; color:var(--muted)}
.list li{margin:6px 0}
.form{display:grid; gap:12px}
label{display:grid; gap:6px; color:var(--muted); font-size:14px}
input, textarea{
  width:100%;
  padding:10px 12px;
  border-radius:12px;
  border:1px solid var(--line);
  background: rgba(0,0,0,.18);
  color: var(--text);
  outline:none;
}
input:focus, textarea:focus{border-color: rgba(122,167,255,.55)}
button{
  padding:11px 14px;
  border-radius:12px;
  border:1px solid rgba(122,167,255,.55);
  background: rgba(122,167,255,.18);
  color: var(--text);
  font-weight:600;
  cursor:pointer;
}
button:hover{background: rgba(122,167,255,.26)}
.consent{
  display:flex;
  gap:10px;
  align-items:flex-start;
  line-height:1.45;
}
.consent input{width:auto; margin-top:3px}
.hint{margin-top:8px; font-size:13px}
a{color:var(--accent); text-decoration:none}
a:hover{text-decoration:underline}
.hp{position:absolute; left:-9999px; top:auto; width:1px; height:1px; overflow:hidden}
.foot{
  margin-top:16px;
  display:flex;
  gap:10px;
  justify-content:center;
  color:var(--muted);
  font-size:13px;
}
.small{font-size:13px;color:var(--muted)}
hr{border:none;border-top:1px solid var(--line);margin:14px 0}

/* --- Header / Navigation --- */
.site-header{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  padding:14px 16px;
  margin-bottom:16px;
}
.brandmark{
  display:flex;
  align-items:center;
  gap:12px;
  min-width: 220px;
}
.brandmark img{
  height:44px;
  width:auto;
  display:block;
}
.brandmark .title{
  display:flex;
  flex-direction:column;
  line-height:1.1;
}
.brandmark .title strong{font-size:14px; color:var(--text)}
.brandmark .title span{font-size:12px; color:var(--muted)}
.navlinks{
  display:flex;
  align-items:center;
  gap:12px;
  flex-wrap:wrap;
  justify-content:flex-end;
}
.navlinks a{
  padding:8px 10px;
  border:1px solid var(--line);
  border-radius:999px;
  background: rgba(0,0,0,.10);
}
.navlinks a:hover{
  border-color: rgba(229,28,35,.45);
  background: rgba(229,28,35,.10);
  text-decoration:none;
}
/* German flag accent line */
.flagline{
  height:4px;
  border-radius:999px;
  overflow:hidden;
  display:flex;
  margin-top:10px;
  border:1px solid var(--line);
}
.flagline i{display:block; flex:1}
.flagline i:nth-child(1){background:#000}
.flagline i:nth-child(2){background:#e51c23}
.flagline i:nth-child(3){background:#ffce00}
