body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #2f2f2f; /* Anthrazitgrau */
    scroll-behavior: smooth; /* Smooth Scroll CSS */

}
.about-us {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
    background-color: #ffffff; /* Weißer Hintergrund */
}

.about-us h1 {
    font-size: 3rem; /* Großer Titel */
    color: #315379; /* Titel in gewünschter Farbe */
    margin-bottom: 20px; /* Abstand zum Text */
}

.about-us p {
    font-size: 1.5rem; /* Größerer Text */
    line-height: 1.8; /* Bessere Lesbarkeit */
    color: #315379; /* Text in gewünschter Farbe */
    max-width: 1200px; /* Begrenzte Breite für besseren Lesefluss */
}

/* Responsive Design für kleinere Bildschirme */
@media (max-width: 768px) {
    .about-us h1 {
        font-size: 2.5rem; /* Kleinere Schriftgröße für Titel */
    }

    .about-us p {
        font-size: 1.2rem; /* Kleinere Schriftgröße für Text */
        max-width: 90%; /* Reduziere Breite für kleine Bildschirme */
    }
}

@media (max-width: 480px) {
    .about-us h1 {
        font-size: 2rem; /* Noch kleinere Schriftgröße für sehr kleine Bildschirme */
    }

    .about-us p {
        font-size: 1rem; /* Noch kleinere Schriftgröße für Text */
        max-width: 100%; /* Nutze die volle Breite des Bildschirms */
    }
}
