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

/* --- Startseite --- */

.container {
    max-width: 1400px;
    margin: 40px auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 60px 80px;
    box-sizing: border-box;
}

.left {
    flex: 1;
    display: flex;
    justify-content: center;
}

.left img {
    width: 420px;
    height: auto;
}

.right {
    flex: 1;
    text-align: center;
}

.name {
    color: #0d2c6c;
    font-size: 36px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 30px;
}

.subtitle {
    font-size: 26px;
    margin-bottom: 60px;
}

.years {
    color: #0d2c6c;
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 30px;
}

.text {
    font-size: 18px;
    line-height: 1.6;
    max-width: 520px;
    margin: 0 auto 40px;
}

.footer-links a {
    font-size: 14px;
    color: #0d2c6c;
    text-decoration: none;
}

.footer-links a:hover {
    text-decoration: underline;
}

/* --- Legal Page --- */

.legal-container {
    max-width: 900px;
    margin: 60px auto;
    padding: 20px;
}

.legal-container h1 {
    color: #0d2c6c;
}

.legal-container h2 {
    margin-top: 30px;
}

.legal-container p {
    line-height: 1.6;
}

/* --- Responsive --- */

@media (max-width: 900px) {
    .container {
        flex-direction: column;
        text-align: center;
    }

    .left img {
        width: 260px;
        margin-bottom: 40px;
    }
}