        /* --- STICKY FOOTER FÜR MOBILE GERÄTE --- */
        .mobile-sticky-footer {
            display: none; /* Standardmäßig auf Desktop ausgeblendet */
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            background-color: #ffffff;
            box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
            padding: 12px 16px;
            box-sizing: border-box;
            z-index: 9999; /* Damit es immer über dem anderen Content liegt */
            text-align: center;
        }

        /* Media Query: Nur anzeigen, wenn der Bildschirm kleiner als 768px ist (Handys/Tablets) */
        /*@media screen and (max-width: 991px) { */
	        body {
	            padding-bottom: 40px; 
    	    }
            .mobile-sticky-footer {
                display: block;
            }
        /*} */
