body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #f2f2f2;

    display: flex;
    justify-content: center;
    align-items: center;

    min-height: 100vh;
    text-align: center;

    position: relative;
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;

    padding: 20px;
}

/* LOGO */
.logo {
    width: 900px;
    max-width: 90vw;
    height: auto;

    margin-bottom: 30px;
}

/* ÜBERSCHRIFT */
h1 {
    color: #003366;
    font-size: 1.8rem;
    margin-bottom: 15px;
}

/* TEXT */
p {
    color: #333;
    font-size: 1.1rem;
}

/* MOBILE */
@media (max-width: 600px) {
    .logo {
        width: 320px;
        max-width: 90vw;
    }

    h1 {
        font-size: 1.4rem;
    }
}

/* DATENSCHUTZ */
.datenschutz-link {
    position: fixed;
    bottom: 20px;
    right: 150px;
    font-size: 14px;
    color: #333;
    text-decoration: none;
    background: rgba(255, 255, 255, 0.8);
    padding: 6px 10px;
    border-radius: 6px;
    z-index: 9999;
}

/* IMPRESSUM */
.impressum-link {
    position: fixed;
    bottom: 20px;
    right: 20px;
    font-size: 14px;
    color: #333;
    text-decoration: none;
    background: rgba(255, 255, 255, 0.8);
    padding: 6px 10px;
    border-radius: 6px;
    z-index: 9999;
}