/* Add custom CSS styles below */ 

/* إخفاء بنر الجوال على الشاشات الكبيرة */
@media (min-width: 768px) {
    .mobile-banner {
        display: none !important;
    }
}

/* إخفاء بنر الكمبيوتر على الشاشات الصغيرة */
@media (max-width: 767px) {
    .desktop-banner {
        display: none !important;
    }
}