/* Allgemeine Stile */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f0f2f5;
    color: #333;
}

/* Kopfzeile */
header {
    background-color: #004080;
    color: white;
    padding: 40px 0;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

header h1 {
    margin: 0;
    font-size: 2.5em;
}

header p {
    margin: 10px 0 0;
    font-size: 1.2em;
}

/* Abschnittsstile */
section {
    margin: 20px auto;
    padding: 40px;
    max-width: 800px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

/* Überschriftenstile */
section h2 {
    color: #004080;
    border-bottom: 2px solid #004080;
    padding-bottom: 10px;
    margin-bottom: 20px;
    font-size: 1.8em;
}

/* Textstile */
section p {
    line-height: 1.6;
    margin: 20px 0;
    font-size: 1.1em;
}

/* Linkstile */
a {
    color: #004080;
    text-decoration: none;
    border-bottom: 1px solid #004080;
}

a:hover {
    border-bottom: 2px solid #004080;
}

/* Fußzeile */
footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 20px 0;
    position: fixed;
    width: 100%;
    bottom: 0;
    box-shadow: 0 -4px 6px rgba(0,0,0,0.1);
}

/* Anpassung für verschiedene Geräte */
@media (max-width: 600px) {
    header, section, footer {
        padding: 10px;
    }
    section {
        margin: 10px;
        padding: 20px;
    }
    header h1 {
        font-size: 2em;
    }
    header p {
        font-size: 1em;
    }
}

