/* Allgemeine Styles */
body {
    font-family: Arial, sans-serif;
    background-color: #f0f4f8; /* Leicht blauer Hintergrund für angenehme Lesbarkeit */
    color: #333;
    margin: 0;
    padding: 20px;
}

/* Haupt-Container */
.container {
    max-width: 850px;
    margin: 0 auto;
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 0px 12px rgba(0, 0, 0, 0.1);
}

/* Überschriften */
h1 {
    text-align: center;
    color: #0073e6; /* Hauptfarbe für Überschriften */
    border-bottom: 4px solid #0073e6;
    padding-bottom: 10px;
    margin-bottom: 20px;
}

h2 {
    color: #0073e6;
    border-bottom: 2px solid #ddd;
    padding-bottom: 5px;
    margin-top: 20px;
}

/* Abschnitte */
.section {
    margin-bottom: 20px;
    padding: 15px;
    border-radius: 8px;
    background: #ffffff;
    border-left: 5px solid #0073e6;
    box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.05);
}

/* Alternierende Farben für Abschnitte */
.section:nth-child(odd) {
    background: #eef7ff; /* Heller Blauton für besseren Kontrast */
}

.contact-section {
    background: #fef6e4; /* Leichtes Orange für Kontaktbox */
    border-left: 5px solid #ffaa00;
}

/* Tabellen */
.info-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 10px;
}

.info-table td {
    padding: 8px;
    border-bottom: 1px solid #ddd;
}

.info-table td:first-child {
    font-weight: bold;
    width: 35%;
}

/* Links */
a {
    color: #0073e6;
    text-decoration: none;
    font-weight: bold;
}

a:hover {
    text-decoration: underline;
}

/* Footer mit Links */
.footer {
    text-align: center;
    margin-top: 20px;
    padding-top: 15px;
    border-top: 2px solid #ddd;
}

.footer a {
    margin: 0 10px;
    color: #0073e6;
}

/* Zurück zur Startseite-Button */
.back-button {
    text-align: center;
    margin: 20px 0;
}

.back-button a {
    display: inline-block;
    padding: 12px 20px;
    background: #0073e6;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.15);
    transition: background 0.3s ease;
}

.back-button a:hover {
    background: #005bb5;
}

/* Buttons für Interaktion */
.button {
    display: inline-block;
    padding: 10px 15px;
    background: #ffaa00;
    color: white;
    font-weight: bold;
    text-decoration: none;
    border-radius: 5px;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
    transition: background 0.3s ease;
}

.button:hover {
    background: #cc8800;
}

/* Mobile Optimierung */
@media (max-width: 600px) {
    body {
        padding: 10px;
    }

    .container {
        padding: 15px;
    }

    .info-table td {
        display: block;
        width: 100%;
    }

    .info-table td:first-child {
        font-weight: normal;
        background: #f3f3f3;
        padding-top: 10px;
        font-size: 14px;
    }
}
