* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: "Segoe UI", Arial, sans-serif;
    background-color: #f5f6f7;
    color: #1d2557;
    min-height: 100vh;
    display: flex;
    flex-direction: column;

    -webkit-hyphens: manual;
    -moz-hyphens: manual;
    -ms-hyphens: manual;
    hyphens: manual;
    -webkit-hyphens: auto;
    -moz-hyphens: auto;
    -ms-hyphens: auto;
    hyphens: auto;
}

.container {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    text-align: center;
}

.header {
    margin-bottom: 40px;
}

.logo {
    max-width: 420px;
    width: 100%;
    height: auto;
}

.content h1 {
    font-size: 2.2rem;
    margin-bottom: 40px;
}

.content h2 {
    margin-top: 40px;
    margin-bottom: 10px;
}

.content h3 {
    margin-top: 40px;
    margin-bottom: 10px;
}

.content p {
    max-width: 800px;
    margin-bottom: 10px;
}

.content ul {
    margin-bottom: 10px;
    padding-left: 20px;
}

.content.agb > *,
.content.impressum > * {
    max-width: 800px;
    margin-right: auto;
    margin-left: auto;
    text-align: left;
}

.subtitle {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 40px;
}

.address-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
    font-size: 0.95rem;
}

.contact a {
    color: #0d6fb8;
    text-decoration: none;
    font-weight: 500;
}

.contact a:hover {
    text-decoration: underline;
}

.note {
    margin-top: 30px;
    font-size: 0.95rem;
    color: #666;
}

.footer {
    background-color: #e9eaec;
    text-align: center;
    padding: 15px 10px;
    font-size: 0.85rem;
}

.footer a {
    color: #1d2557;
    text-decoration: none;
    margin: 0 5px;
}

.footer a:hover {
    text-decoration: underline;
}
