/* Grundlayout */
body {
    margin: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #FFFFFF;
    color: #323E42;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    text-align: center;
    padding: 20px;
}

/* Logo-Styling */
header {
    margin-bottom: 40px;
}
header img {
    width: 400px;
    max-width: 80%;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    border-radius: 12px;
}

/* Haupttext */
h1 {
    font-size: 2.5em;
    margin-bottom: 15px;
    font-weight: 600;
}
.highlight {
    color: #84B3C1;
}

/* Adresse */
.address {
    font-size: 1.2em;
    margin-bottom: 25px;
    line-height: 1.5;
}

/* Footer */
footer {
    margin-top: 50px;
    font-size: 0.9em;
    color: #323E42;
    max-width: 600px;
}
footer a {
    color: #84B3C1;
    text-decoration: none;
}
footer a:hover {
    text-decoration: underline;
}

/* Farbblock für Akzent */
.accent-block {
    width: 100%;
    background-color: #84B3C1;
    height: 6px;
    margin-bottom: 40px;
    border-radius: 3px;
}

/* Responsive Textgröße */
@media (max-width: 480px) {
    h1 {
        font-size: 1.8em;
    }
    .address {
        font-size: 1em;
    }
}