body {
    /* Hintergrundfarbe und Reset */
    background-color: #f0f0f0;
    margin: 0;
    padding: 0;

    /* Volle Höhe des Viewports */
    min-height: 100vh;

    /* Zentrierung des Inhalts */
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Gemeinsamer Container für Logo, Bild und Link */
.logo-container {
    display: flex;
    flex-direction: column;
    align-items: center;

    /* Gemeinsame Breite für Logo + Bild */
    max-width: 320px;   /* <- Hier kannst du die gewünschte Breite ändern */
    width: 100%;
}

/* Logo */
.logo {
    max-width: 100%;
    max-height: 400px;
    display: block;
    margin: 0 auto;
}

/* Bild unter dem Logo (gleiche Breite wie Logo) */
.sub-image {
    width: 100%;
    height: auto;
    display: block;
    margin-top: 12px;
}

/* PDF-Link */
.pdf-link {
    margin-top: 10px;
    font-size: 16px;
    font-family: Arial, Helvetica, sans-serif; /* serifenlos */
    font-weight: 500;
    text-decoration: none;
    color: #000;
    letter-spacing: 0.02em;
}

.pdf-link:hover {
    text-decoration: none;
    opacity: 0.7;
}

/* Fusszeile am unteren Seitenrand */
.site-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;

    text-align: center;
    padding: 8px 10px;

    font-size: 12px;
    font-family: Arial, Helvetica, sans-serif;
    color: #555;

    background-color: transparent;
}
