/* Gezielte Anpassung für Ihre Header-Sektion auf Smartphones */
@media (max-width: 768px) {
    #section_1000024 {
        /* Zeigt das Bild vollständig an */
        background-size: contain !important;
        background-repeat: no-repeat !important;
        background-position: center top !important;
        
        /* WICHTIG: Die Höhe muss auf Mobilgeräten oft manuell korrigiert werden, 
           da 'contain' das Bild klein skaliert. Testen Sie diesen Wert: */
        height: auto !important;
        min-height: 250px !important; 
        
        /* Optional: Hintergrundfarbe falls das Bild schmaler als das Display ist */
        background-color: transparent !important;
    }
}