/* Grundlegende Body-Stile */
body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    color: #5a6a7e;
    /* Sanfte Textfarbe für bessere Lesbarkeit */
    background-color: #f8faff;
    /* Sehr helles Blau-Weiß als Hintergrund */
    box-sizing: border-box;
    min-height: 100vh;
    overflow-x: hidden;

}

/* Links */
a {
    text-decoration: none;
    color: #4a6fa5;
    /* Mittelblau für Links, konsistent mit Navbar/Footer */
    transition: color 0.3s ease;
}

a:hover {
    color: #6aa5d8;
    /* Helleres Blau beim Hover */
}

/* Überschriften */
h1,
h2,
h3,
h4,
h5,
h6 {
    color: #4a6fa5;
    /* Mittelblau für Überschriften, konsistent mit Navbar/Footer */
    margin-bottom: clamp(10px, 1.5vw, 20px);
    line-height: 1.3;
}

/* Buttons allgemein */
button {
    background-color: #4a6fa5;
    /* Mittelblau für Buttons */
    color: white;
    border: none;
    border-radius: 6px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

button:hover {
    background-color: #6aa5d8;
    /* Helleres Blau beim Hover */
    transform: translateY(-2px);
}

/* Responsive Design für verschiedene Bildschirmgrößen */

/* Mittlere Bildschirme (Laptops, Desktops) */
@media (min-width: 1200px) and (max-width: 1599px) {
    body {
        font-size: 16px;
        /* Basisgröße für mittlere Bildschirme */
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.6rem;
    }
}

/* Größere Bildschirme (größere Desktops) */
@media (min-width: 1600px) and (max-width: 1919px) {
    body {
        font-size: 18px;
        /* Größere Basisschrift für große Bildschirme */
    }

    h1 {
        font-size: 2.2rem;
    }

    h2 {
        font-size: 1.8rem;
    }
}

/* Sehr große Bildschirme (4K und größer) */
@media (min-width: 1920px) {
    body {
        font-size: 20px;
        /* Noch größere Schrift für sehr große Bildschirme */
    }

    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    button {
        padding: 12px 24px;
        /* Größere Buttons für große Bildschirme */
        font-size: 1.1rem;
    }
}

/* Kleine Bildschirme (Tablets, Mobilgeräte) */
@media (max-width: 768px) {
    body {
        font-size: 15px;
        /* Etwas kleinere Schrift für mobile Geräte */
    }

    h1 {
        font-size: 1.8rem;
    }

    h2 {
        font-size: 1.4rem;
    }

    button {
        padding: 8px 16px;
        /* Kleinere Buttons für mobile Geräte */
    }
}