/* styles.css */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    color: #333;
}

.header {
    background-color: #343a40; /* Gleiche Hintergrundfarbe wie die Fußzeile */
    padding: 10px 20px;
    position: fixed;
    top: 60px;
    width: 100%;
    z-index: 1000;

 border: none;
}

.navbar {
    text-align: center;
    margin-top: 10px;
    color: white;
 border: none;
}

.navbar a {
    color: white;
    text-decoration: none;
    font-size: 14px;
    margin: 0 10px;
}

.navbar a:hover {
    text-decoration: underline;
}

.contact-table {
    width: 100%;
    text-align: center;
    color: white;
    margin-bottom: 10px;
	border: none;
}

.contact-table td {
    padding: 5px 15px;
    color: white;
 border: none;
}

.contact-table a {
    color: white; /* Gleiche Farbe wie die anderen Links */
    text-decoration: none;
}

.contact-table a:hover {
    text-decoration: underline;
}

.site-title {
    font-size: 28px;
    color: white;
    text-align: center;
    margin: 0;
}

/* Abschnitts-Styling */
.section {
    margin: 0 auto;
    min-height: 100vh; /* Jeder Abschnitt nimmt eine gesamte Seitenhöhe ein */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.section h2 {
    position: relative; /* Damit das Offset sicher funktioniert */
    padding-top: 150px; /* Platz für die Überschrift */
    font-size: 24px;
    color: #000000;
}

.section p {
    font-size: 16px;
    margin: 10px 0;
    text-align: center;
}

/* Tabellen-Styling */
table {
    margin: 20px auto;
    border-spacing: 10px;
    text-align: center;
    width: 90%;
    max-width: 1200px;
    border-collapse: collapse;
 border: none;

}

table th, table td {
    padding: 15px;
    border: 1px solid #ddd;
    vertical-align: middle;
 border: none;
}

table td {
    text-align: center;
}

table td strong {
    display: block;
    margin-bottom: 10px;
    color: #343a40;
}

/* Listen-Styling */
ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

ul li {
    margin: 5px 0;
}

/* Footer-Styling */
footer {
    background-color: #343a40;
    color: white;
    text-align: center;
    padding: 10px 0;
    margin-top: 20px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .navbar a {
        display: block;
        margin: 10px 0;
        font-size: 16px;
    }
    .site-title {
        font-size: 20px;
    }
    .section p {
        font-size: 14px;
    }

    .section {
        padding: 15px;
    }

    table {
        width: 100%;
    }
}
