/* Basis-Styles für Textinhalte */
.content-section {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    box-sizing: border-box;
}

.content-wrapper {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    background: var(--card-bg);
    border-radius: var(--border-radius);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Typography */
.content-section h1 {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.content-section h2 {
    font-size: 1.8rem;
    line-height: 1.3;
    margin: 2rem 0 1rem;
    color: var(--text-primary);
}

.content-section p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.content-section ul {
    margin: 1.5rem 0;
    padding-left: 1.5rem;
}

.content-section li {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.content-section li strong {
    color: var(--primary);
}

.content-section hr {
    margin: 2rem 0;
    border: none;
    border-top: 1px solid var(--border-color);
}

/* Responsive Design */
@media (max-width: 768px) {
    .content-section {
        padding: 1rem;
    }

    .content-wrapper {
        padding: 1.5rem;
    }

    .content-section h1 {
        font-size: 2rem;
        margin-bottom: 1.25rem;
    }

    .content-section h2 {
        font-size: 1.5rem;
        margin: 1.5rem 0 1rem;
    }

    .content-section p,
    .content-section li {
        font-size: 1rem;
        line-height: 1.5;
    }
}

/* Optimierte Lesbarkeit für große Bildschirme */
@media (min-width: 1200px) {
    .content-wrapper {
        max-width: 900px;
    }

    .content-section p,
    .content-section li {
        font-size: 1.15rem;
        line-height: 1.7;
    }
}

/* Druckoptimierung */
@media print {
    .content-section {
        max-width: none;
        padding: 0;
    }

    .content-wrapper {
        box-shadow: none;
        padding: 0;
    }

    .content-section h1 {
        font-size: 2rem;
    }

    .content-section h2 {
        font-size: 1.5rem;
    }

    .content-section p,
    .content-section li {
        font-size: 1rem;
        line-height: 1.5;
    }
}

/* About Section Styles */
#about {
    max-width: 700px;
    margin: 0 auto;
    padding: 2em;
    text-align: left;
}

#about h1 {
    margin-bottom: 1em;
    text-align: center;
}

#about h2 {
    margin: 1.5em 0 1em;
    text-align: left;
}

#about p {
    margin-bottom: 1em;
    line-height: 1.6;
    text-align: left;
}

#about ul {
    margin: 1em 0;
    padding-left: 2em;
    text-align: left;
}

#about li {
    margin-bottom: 0.5em;
    line-height: 1.6;
    text-align: left;
}

#about hr {
    margin: 2em 0;
    border: none;
    border-top: 1px solid #ddd;
}

/* Responsive Design */
@media (max-width: 768px) {
    #about {
        padding: 1em;
    }
} 