/*
 * Allgemeine Stile
 */
body {
    font-family: sans-serif;
    margin: 0;
    padding: 0;
    background-color: #fff;
    color: #333;
    line-height: 1.6;
}

/*
 * Header-Bereich
 */
header {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 20px;
    background-color: #f8f8f8;
    border-bottom: 1px solid #eee;
}

header > div {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

header button {
    background-color: #fff; /* Weißer Hintergrund für den "STARTSEITE"-Button für besseren Kontrast */
    color: #333; /* Dunkelgraue Textfarbe für den "STARTSEITE"-Button */
    border: 1px solid #ccc; /* Hinzufügen eines Rahmens, da der Hintergrund jetzt weiß ist */
    padding: 12px 25px;
    border-radius: 5px;
    font-size: 1.1rem;
    cursor: pointer;
    margin-right: 15px;
    transition: background-color 0.3s ease;
}

header button:hover {
    background-color: #e0e0e0; /* Etwas dunkleres Grau beim Überfahren mit der Maus */
}

header img {
    height: 60px;
    width: auto;
    display: block;
}

header h1, header p {
    color: #000;
    text-align: center;
}

header h1 {
    margin-bottom: 5px;
}

header p {
    font-size: 1.1rem;
    margin-top: 0;
}

/*
 * Hauptinhaltsbereich
 */
main {
    padding: 20px;
    line-height: 1.6;
    color: #333;
}

main h2, main h3 {
    color: #007bff;
    margin-top: 25px;
    margin-bottom: 15px;
}

main ul, main ol {
    margin-bottom: 15px;
    padding-left: 20px;
}

main li {
    margin-bottom: 8px;
}

main p {
    margin-bottom: 15px;
}

main table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}

main th, main td {
    border: 1px solid #ddd;
    padding: 10px;
    text-align: left;
}

main th {
    background-color: #f4f4f4;
    font-weight: bold;
}

main .comparison-button-container {
    text-align: center;
    margin-top: 40px;
    margin-bottom: 40px;
}

main .comparison-button {
    background-color: #28a745;
    color: white;
    border: none;
    padding: 18px 35px;
    border-radius: 7px;
    font-size: 1.3rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

main .comparison-button:hover {
    background-color: #1e7e34;
}

/*
 * Footer-Bereich
 */
footer {
    text-align: center;
    padding: 20px;
    background-color: #eee; /* Dunklerer Grauton für den Hintergrund für besseren Kontrast */
    border-top: 1px solid #ddd;
    font-size: 0.9rem;
    color: #000; /* Schwarze Textfarbe für maximalen Kontrast */
}

footer ul {
    list-style: none;
    padding: 0;
    margin-top: 10px;
}

footer ul li {
    display: inline;
    margin-right: 15px;
}

footer ul li:last-child {
    margin-right: 0;
}

footer a {
    color: #000; /* Schwarze Farbe für die Links für maximalen Kontrast */
    text-decoration: none;
    transition: color 0.3s ease;
}

footer a:hover {
    text-decoration: underline;
    color: #0056b3;
}