/* Grundlegendes Design & Schriftart */
body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
    margin: 0;
    padding: 20px;
    display: flex;
    justify-content: center;
}

/* Container für die Inhalte */
.container {
    max-width: 800px;
    background: #ffffff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Überschriften */
h1 {
    color: #222;
    border-bottom: 2px solid #eee;
    padding-bottom: 10px;
    margin-top: 0;
}

h2 {
    color: #444;
    font-size: 1.25rem;
    margin-top: 25px;
    margin-bottom: 10px;
}

/* Sektionen & Abstände */
section {
    margin-bottom: 20px;
}

address {
    font-style: normal;
    background: #f4f4f4;
    padding: 15px;
    border-radius: 5px;
    display: inline-block;
    min-width: 250px;
}

/* Links */
a {
    color: #0066cc;
    text-decoration: none;
    transition: color 0.2s;
}

a:hover {
    color: #004499;
    text-decoration: underline;
}

/* Footer / Zurück-Link */
footer a {
    font-weight: bold;
    display: inline-block;
    padding: 10px 15px;
    background: #eee;
    border-radius: 4px;
    color: #555;
}

footer a:hover {
    background: #e0e0e0;
    color: #000;
}

/* Mobile Optimierung */
@media (max-width: 600px) {
    .container {
        padding: 20px;
    }
    
    address {
        display: block;
        min-width: 0;
    }
}
