:root{
    --max-width: 980px;
    --container-pad: 16px;
    --gap: 12px;
    --accent: #b22222;
    --bg: #fff;
    --muted: #666;
    --radius: 8px;
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
}

*{box-sizing:border-box}

body{
    margin:0;
    background:#f6f6f6;
    color:#111;
    display:flex;
    justify-content:center;
    padding:24px;
}

.page{
    width:100%;
    max-width:var(--max-width);
    background:var(--bg);
    border-radius:10px;
    box-shadow:0 6px 20px rgba(0,0,0,0.06);
    display:flex;
    flex-direction:column;
    gap:24px;
    padding:24px;
}

.site-header{
    position:relative;
    display:flex;
    justify-content:center;
    align-items:center;
}

.back-link{
    position:absolute;
    left:0;
    top:50%;
    transform:translateY(-50%);
    text-decoration:none;
    font-size:1.4rem;
    color:var(--accent);
    padding:8px 10px;
    border-radius:var(--radius);
    transition:background 0.2s ease, color 0.2s ease;
}

.back-link:hover{
    background:rgba(178,34,34,0.08);
}

.logo{
    width:220px;
    height:60px;
    object-fit:contain;
}

h1{
    font-size:1.3rem;
    color:var(--muted);
    text-align:center;
    margin:0;
}

h2{
    font-size:1.05rem;
    color:var(--muted);
    margin-top:24px;
}

/* Zusätzliche Styles für Datenschutz */
.privacy{
    display:flex;
    flex-direction:column;
    gap:16px;
    line-height:1.6;
    font-size:0.95rem;
}

.privacy p{
    margin:0;
}

.privacy ul{
    margin:0;
    padding-left:20px;
}

.privacy li{
    margin:4px 0;
}

.address{
    font-style:normal;
    line-height:1.5;
}

.site-footer{
    margin-top:32px;
    text-align:center;
    font-size:0.9rem;
}

@media (min-width:900px){
    body{padding:40px;}
    .logo{width:260px;height:72px}
}