/* Den gesamten Hintergrund weiß lassen */
html, body {
    height: 100%;
    margin: 0;
    padding: 0;
    background-color: #FFFFFF;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    color: #1a1a1a;
}

body {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.main-container {
    width: 85%;
    max-width: 900px;
    margin: 60px auto;
    /* Ein hauchdünner Rahmen statt Schatten wirkt auf weißem Grund sehr edel */
    border: 1px solid #eeeeee;
    padding: 40px;
    border-radius: 8px;
}

h1 {
    text-align: center;
    font-size: 42px;
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 20px;
    color: #000;
}

/* Eine stylische Trennlinie unter der Überschrift */
.header-line {
    width: 50px;
    height: 3px;
    background-color: #004b93; /* Vereinsblau */
    margin: 0 auto 50px auto;
}

.text-inhalt {
    font-size: 24px;       /* Etwas kleiner als 26px wirkt oft professioneller */
    line-height: 1.8;      /* Mehr Luft zwischen den Zeilen */
    color: #444;
    white-space: pre-line;
    padding-bottom: 30px;
    text-align: left;      /* Linksbündig ist besser für den Lesefluss */
}

/* Links modern gestalten */
a {
    color: #004b93;
    text-decoration: none;
    font-weight: 600;
    transition: opacity 0.2s ease;
}

a:hover {
    opacity: 0.7;
    text-decoration: underline;
}

/* Responsive Anpassung */
@media (max-width: 600px) {
    .main-container {
        width: 95%;
        padding: 20px;
        border: none; /* Auf dem Handy weniger Rahmen */
    }
    h1 {
        font-size: 32px;
    }
}