/* Grund-Layout */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.8;
    color: #333;
    background-color: #f8f9fa;
    display: flex;
    justify-content: center;
    padding: 20px;
}

.container {
    max-width: 850px;
    width: 100%;
    background: #ffffff;
    padding: 50px 40px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

/* Header */
.back-link {
    display: inline-block;
    margin-bottom: 30px;
    text-decoration: none;
    color: #007bff;
    font-weight: 700;
    font-size: 0.9rem;
    transition: color 0.2s;
}
.back-link:hover { color: #0056b3; }

h1 {
    color: #000;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    border-bottom: 5px solid #000;
    padding-bottom: 15px;
    margin-bottom: 30px;
    font-size: 2.2rem;
}

/* Sektionen & Content */
section {
    margin-bottom: 35px;
}

h2 {
    font-size: 1.3rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 15px;
    color: #111;
    border-left: 4px solid #000;
    padding-left: 15px;
}

p {
    margin-bottom: 15px;
}

strong {
    color: #000;
    font-weight: 700;
}

ul {
    margin-bottom: 20px;
    padding-left: 20px;
}

li {
    margin-bottom: 8px;
}

a {
    color: #007bff;
    text-decoration: underline;
}

/* Info-Box */
.info-box {
    background: #f1f3f5;
    padding: 20px;
    border-radius: 8px;
    font-size: 0.85rem;
    color: #666;
    margin-top: 50px;
    text-align: center;
}

/* ── MOBILE OPTIMIERUNG ── */
@media (max-width: 600px) {
    body { padding: 0; }
    .container {
        padding: 30px 20px;
        border-radius: 0;
        box-shadow: none;
    }
    h1 { font-size: 1.8rem; }
    h2 { font-size: 1.1rem; }
}