body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #ffffff;
    color: #333;
}

.main-header {
    background-color: #162b5f;
    color: white;
    padding: 10px 20px 30px 20px; /* oben | rechts | unten | links (im Uhrzeigersinn) */
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    min-height: 80px;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-text {
    /* font-weight: bold; */
    font-size: 1.1em; /* optional für bessere Sichtbarkeit */
    color: white;     /* oder #fff, je nach Hintergrund */
}

.logo img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    margin-right: 10px;
    vertical-align: middle;
}

.top-nav {
    background-color: #132452;
    color: white;
    padding: 10px 20px;
    border-radius: 20px;
}

.top-nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
    padding: 0;
    margin: 0;
}

.top-nav a {
    color: white;
    text-decoration: none;
    font-size: 0.9em;
    font-weight: bold;
}

.main-nav {
    background-color: #0e1f4b;
    padding: 10px 20px 10px 40px;
}

.main-nav ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 45px;
    padding: 0;
    margin: 0;
}

.main-nav a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

.footer-nav {
    background-color: #0e1f4b;
    padding: 15px 20px;
    text-align: center;
}

.footer-nav ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    padding: 0;
    margin: 0;
}

.footer-nav a {
    text-decoration: none;
    color: white;
    font-size: 0.9em;
}

h1 {
    padding: 20px;
}

.content {
    width: 100%;
    max-width: 960px; /* optional, für lesbare Textbreite */
    margin: 40px 0 200px 40px; /* oben/rechts/unten/links */
    padding: 0;
    text-align: left;
}

.content h1 {
    font-size: 1.8em;
    color: rgb(0, 0, 0);
    margin: 0 0 20px 0;  /* kein linker/rechter Abstand */
    padding: 0;          /* sicherstellen, dass auch kein Padding stört */
    text-align: left;
}

.content p {
    font-size: 1.05em;
    line-height: 1.6;
    margin-bottom: 16px;
}

.breadcrumb {
    font-size: 0.9em;
    margin: 40px 0 10px 40px;
    color: #666;
    display: flex;
    align-items: center;
    gap: 5px;
}

.breadcrumb a {
    text-decoration: none;
    color: #666;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.breadcrumb span {
    color: #666;
    font-weight: bold;
}

.breadcrumb-icon {
    height: 0.8em;
    width: auto;
    display: inline-block;
}