body {
    margin: 0;
    font-family: 'Arial', sans-serif;
    background-color: #f4f4f9; /* Helle Hintergrundfarbe */
    color: #333; /* Dunkle Textfarbe */
}

.header {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #0e76a8; /* Dunkelblaue Farbe für den Header */
    padding: 20px;
}

.header-image {
    width: 100%;
    max-width: 800px;
    height: auto;
    cursor: pointer;
}

.balken {
    background-color: #0e76a8; /* Dunkelblaue Farbe für die Trennlinien */
    height: 4px;
    width: 100%;
    margin: 20px 0;
}

.Content {
    max-width: 1000px;
    margin: 20px auto;
    padding: 20px;
    background: white; /* Weißer Hintergrund für die Abschnitte */
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1); /* Leichter Schatten für die Abschnitte */
    word-wrap: break-word; /* Lange Wörter umbrechen */
    overflow-wrap: break-word; /* Lange Wörter umbrechen */
}

.Content h1 {
    color: #0e76a8; /* Dunkelblaue Farbe für die Hauptüberschrift */
    text-align: center;
    margin-bottom: 20px;
}

.Content h2 {
    color: #0e76a8; /* Dunkelblaue Farbe für die Unterüberschriften */
    margin-top: 20px;
}

.Content p {
    line-height: 1.6;
    margin-bottom: 10px;
}

.Content a {
    word-wrap: break-word; /* Lange Wörter umbrechen */
    overflow-wrap: break-word; /* Lange Wörter umbrechen */
}

.Footer {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    background-color: #0e76a8; /* Dunkelblaue Farbe für den Footer */
    color: white;
}

.Footer a {
    color: white;
    text-decoration: none;
    margin: 0 10px;
}

.Footer a:hover {
    text-decoration: underline;
}
