/* Grundlayout */
body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    color: #000;
}

a {
    color: black;
    text-decoration: underline;
}

a:hover {
    text-decoration: underline;
}

/* Wrapper */
.wrapper {
    max-width: 1230px;
    margin: 0 auto;
}

/* Header */
.top-bar {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    padding: 0px 10px;
}

.header-image {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 0 auto;
}

/* Iframes */
.content-frame {
    width: 100%;
    height: 842px;
    border: none;
    display: block;
    overflow: hidden;
}

/* Footer */
footer {
    font-size: 0.8rem;
    padding: 1px;
}

footer p {
    margin: 5px 0;
}

/* Responsive Anpassungen */
@media (max-width: 768px) {
    .top-bar {
        flex-direction: block;
        text-align: center;
        gap: 5px;
    }

    .content-frame {
        height: 842px;
    }
}
.footer-center {
    text-align: center;
}