/* --- 1. BASIS STYLING (Normal & Modern) --- */
body {
    background-color: #f8f9fa;
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    color: #212529;
    font-size: 1rem; /* Standardgröße (16px) */
    line-height: 1.6;
}

/* --- 2. CONTAINER (Weißer Bereich) --- */
.help-article {
    background-color: #ffffff;
    padding: 40px 50px !important; /* Viel Platz für den Inhalt */
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    margin-bottom: 50px;
}

/* --- 3. ÜBERSCHRIFTEN (Normalisiert) --- */

/* H1 - Haupttitel (Klar und präsent) */
article.help-article h1 {
    font-size: 2.2rem !important; 
    font-weight: 700 !important;
    color: #004a99 !important;
    margin-top: 0 !important;
    margin-bottom: 1.5rem !important;
    border-bottom: 3px solid #f0f0f0 !important;
    padding-bottom: 15px !important;
}

/* H2 - Sektionsüberschriften */
article.help-article h2 {
    font-size: 1.6rem !important; 
    font-weight: 600 !important;
    color: #0056b3 !important;
    margin-top: 2.5rem !important;
    margin-bottom: 1rem !important;
}

/* H3 - Unterpunkte */
article.help-article h3 {
    font-size: 1.3rem !important; 
    font-weight: 600 !important;
    color: #333 !important;
    margin-top: 2rem !important;
    margin-bottom: 0.8rem !important;
}

/* --- 4. TEXT & LISTEN --- */
article.help-article p, 
article.help-article li {
    font-size: 1.1rem !important;
    line-height: 1.7 !important;
    margin-bottom: 1.2rem !important;
}

/* --- 5. BILDER (Volle Wirkung) --- */
article.help-article img {
    max-width: 100% !important; /* Wieder volle Breite möglich */
    height: auto !important;
    display: block !important;
    margin: 40px auto !important;
    border-radius: 8px !important;
    box-shadow: 0 8px 30px rgba(0,0,0,0.12) !important;
    border: 1px solid #eee !important;
}

/* --- 6. INFOKÄSTEN & CODE --- */
article.help-article blockquote {
    background-color: #f0f7ff;
    border-left: 6px solid #004a99;
    padding: 20px 25px;
    margin: 30px 0;
    border-radius: 0 8px 8px 0;
}

article.help-article code {
    background-color: #f4f4f4;
    padding: 3px 6px;
    border-radius: 4px;
    font-size: 0.9em;
    color: #d63384;
}