/* Grundlegende Stile für den gesamten Body */
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    margin: 35px;
    padding: 0;
    background-color: #f4f4f9;
    color: #333;
}

/* Container für den gesamten Inhalt */
.container {
    width: 80%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 20px;
    background-color: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}

/* Kopfbereich */
header h1 {
    font-size: 2.5em;
    color: #003366;
    text-align: center;
    margin-bottom: 20px;
}

/* Einführungstext */
.intro p.highlight {
    font-weight: bold;
    font-size: 1.1em;
    color: #2f5d99;
    margin-bottom: 20px;
}

.intro h2 {
    font-size: 1.8em;
    color: #003366;
    margin-bottom: 10px;
}

/* Aufgabenbereich */
section h3 {
    font-size: 1.6em;
    color: #003366;
    margin-top: 30px;
}

section ul {
    list-style-type: none;
    padding-left: 0;
}

section li {
    margin-bottom: 10px;
    font-size: 1.1em;
}

/* Profilbereich */
.profile ul {
    list-style-type: none;
    padding-left: 0;
}

.profile li {
    margin-bottom: 10px;
}

/* Angebotbereich */
.offer ul {
    list-style-type: none;
    padding-left: 0;
}

.offer li {
    margin-bottom: 10px;
    font-weight: bold;
    font-size: 1.1em;
}

/* Wie es funktioniert */
.how-to ol {
    margin-left: 20px;
    font-size: 1.1em;
}

/* Fußzeile */
footer p {
    font-size: 1.1em;
    text-align: center;
    color: #555;
    margin-top: 30px;
}

footer p strong {
    color: #003366;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        width: 95%;
        padding: 10px;
    }

    header h1 {
        font-size: 2em;
    }

    section h3, footer p {
        font-size: 1.3em;
    }

    section li {
        font-size: 1em;
    }
}

.how-to a {
    color: black;
    text-decoration: underline;
    font-weight: bold;
    transition: color 0.3s ease; 
}

.how-to a:hover {
    color: #ff9800;
}