body {
    margin: 0;
    padding: 0;
    min-height: 100vh;
    background: url('images/page.jpeg') no-repeat center center fixed;
    background-size: cover;
    font-family: Arial, Helvetica, sans-serif;
}
.header {
    position: relative;
    width: 100%;
    height: 300px;
    background: url('images/header.jpg') no-repeat center center;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
}
.header-title {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
}
.header-title img {
    max-width: 787px;
    width: 100%;
    height: auto;
    display: block;
}
.content {
    max-width: 1000px;
    margin: 40px auto;
    background: rgba(255,255,255,0.92);
    padding: 32px;
    border-radius: 12px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
    display: flex;
    gap: 32px;
    align-items: flex-start;
}
.impressum-text {
    flex: 2 1 0;
    min-width: 0;
}
.impressum-bild {
    flex: 1 1 220px;
    min-width: 180px;
    max-width: 260px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
}
.impressum-bild img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.10);
}
h1, h2 {
    text-align: center;
}
a {
    color: #2a4d8f;
}
footer {
    width: 100%;
    background: rgba(255,255,255,0.85);
    text-align: center;
    padding: 18px 0 12px 0;
    position: fixed;
    left: 0;
    bottom: 0;
    font-size: 1rem;
    box-shadow: 0 -2px 12px rgba(0,0,0,0.04);
}
@media (max-width: 900px) {
    .header-title img { max-width: 95vw; }
}
