/* Überschriften-Styling für rechtliche Seiten */
h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #333;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #455a64;
}

h4 {
    font-size: 1.2rem;
    margin-top: 1.2rem;
    margin-bottom: 0.8rem;
    font-weight: bold;
    color: #455a64;
}

/* Link-Styling in rechtlichen Texten */
.content-section a {
    color: #C47464;
    text-decoration: none;
    transition: color 0.2s ease;
}

.content-section a:hover {
    color: #b36456;
    text-decoration: underline;
}

/* Responsive Anpassungen */
@media only screen and (max-width: 600px) {
    h2 {
        font-size: 1.8rem;
    }
    
    h3 {
        font-size: 1.4rem;
    }
    
    h4 {
        font-size: 1.1rem;
    }
}