/* Allgemeine Zentrierung für Titel */
h1.center {
    text-align: center;
    margin: 40px 0 20px;
    font-size: 2rem;
}

/* Grid für zwei Spalten (links Info, rechts Quellen) */
section.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto 60px;
    padding: 0 5%;
}

/* Box-Styling für Abschnitte */
.shadow {
    background-color: #fff;
    padding: 25px 30px;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    line-height: 1.6;
    font-size: 1rem;
}

/* Etwas mehr Abstand zwischen Absätzen */
.lineSpace p {
    margin-bottom: 10px;
}

/* Titel unterhalb von h1 */
h2 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    text-align: center;
}

/* Responsive Verhalten */
@media (max-width: 600px) {
    section.grid {
        grid-template-columns: 1fr;
    }

    .shadow {
        padding: 20px;
    }
}
