/* --- Basis-Layout für Inhaltsseiten (Impressum, Datenschutz, etc.) --- */

.content-page {
    padding: 100px 20px 60px 20px; /* Oben Platz für Header lassen */
    max-width: 900px;
    margin: 0 auto;
    font-family: 'Montserrat', sans-serif;
    color: #333;
}

.content-page h1 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: #2c3e50;
    font-weight: 700;
}

.content-page h2 {
    font-size: 1.5rem;
    margin-top: 35px;
    margin-bottom: 20px;
    color: #2c3e50;
    border-left: 4px solid #27ae60; /* Dezenter Akzent passend zu Galabau */
    padding-left: 15px;
}

.content-page p {
    margin-bottom: 15px;
    line-height: 1.8;
    font-size: 1.05rem;
}

.content-page a {
    color: #27ae60;
    text-decoration: none;
    font-weight: 500;
}

.content-page a:hover {
    text-decoration: underline;
}

/* Anpassung für mobile Endgeräte */
@media (max-width: 768px) {
    .content-page {
        padding-top: 80px;
    }
    .content-page h1 {
        font-size: 2rem;
    }
}