* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body, html {
    height: 100%;
    font-family: Arial, sans-serif; /* Serifenlose Schrift */
    background-color: black; /* Schwarzer Hintergrund */
    color: white; /* Weiße Schrift */
}

/* Gesamtcontainer als Flexbox, um den Footer unten auszurichten */
.container {
    display: flex;
    flex-direction: column;
    min-height: 100vh; /* Mindesthöhe 100% des Viewports */
}

/* Logo oben links mit mehr Abstand */
.logo {
    position: relative;
    top: 20px;
    left: 60px; /* Mehr Abstand links */
    margin-bottom: 20px; /* Abstand zum Content */
}

.logo a img {
    width: 200px; /* Größeres Logo */
    height: auto;
}

/* Content-Bereich, flex-grow sorgt dafür, dass der Content den Rest des Platzes ausfüllt */
.content {
    display: flex;
    flex-direction: column;
    align-items: flex-start; /* Links ausgerichtet */
    padding: 0 60px; /* Gleicher Abstand wie beim Logo */
    text-align: left; /* Text linksbündig */
    flex-grow: 1; /* Content wächst, um den restlichen Platz zu füllen */
    margin-top: 100px;
}

.content h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.content p {
    font-size: 1.2rem;
    max-width: 800px;
    line-height: 1.6;
}

/* Buttons am oberen Rand */
.top-bar {
    position: absolute; /* Buttons auf Desktop oben rechts positioniert */
    top: 20px;
    right: 40px; /* Abstand rechts */
    display: flex;
    gap: 20px;
    justify-content: flex-end; /* Rechtsbündig auf größeren Bildschirmen */
}

.top-bar a {
    padding: 10px 20px;
    border: 2px solid white;
    color: white;
    text-decoration: none;
    background-color: transparent;
    border-radius: 3px; /* Eckigerer Button */
}

/* Schwarzer Balken am unteren Rand */
.footer {
    background-color: black;
    color: white;
    height: 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    flex-shrink: 0; /* Footer bleibt immer unten */
}

.footer .address {
    font-size: 14px;
}

.footer .social-links {
    display: flex;
    align-items: center;
    gap: 20px;
}

.footer a {
    color: white;
    text-decoration: none;
}

.footer .social-links i {
    font-size: 20px;
}

/* Responsive Anpassung */
@media(max-width: 768px) {
    .footer {
        flex-direction: column;
        text-align: center;
        height: auto;
        padding: 10px 0;
    }

    /* Buttons rutschen unter das Logo und vor den Content */
    .top-bar {
        position: relative;
        flex-direction: column;
        align-items: flex-start; /* Links ausgerichtet */
        margin-top: 20px;
        right: auto; /* Kein Rechtspadding mehr */
        top: 0; /* Kein Abstand nach oben */
        padding-left: 60px; /* Gleicher Abstand wie das Logo */
    }

    .content h1 {
        font-size: 2rem;
    }

    .content p {
        font-size: 1rem;
        max-width: 90%;
    }
}

@media(max-width: 480px) {
    .top-bar {
        right: 0;
        margin-top: 20px;
        transform: none;
    }

    .content h1 {
        font-size: 1.5rem;
    }

    .content p {
        font-size: 0.9rem;
    }
}
