body {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
    margin: 0;
    padding: 20px;
    max-width: 800px;
    margin: 0 auto;
}

h1, h2 {
    color: #222;
    margin-top: 20px;
    margin-bottom: 10px;
}

h1 {
    font-size: 28px;
}

h2 {
    font-size: 22px;
}

p, ul {
    margin-bottom: 15px;
}

ul {
    list-style-type: disc;
    padding-left: 20px;
}

a {
    color: #007bff;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Responsives Design für Mobilgeräte */
@media (max-width: 600px) {
    body {
        font-size: 14px;
        padding: 10px;
    }

    h1 {
        font-size: 24px;
    }

    h2 {
        font-size: 18px;
    }
}

/* Verbesserte Lesbarkeit: Kontrast und Abstände */
body {
    word-wrap: break-word;
    hyphens: auto;
}