/* Исправление header - делаем его фиксированным */
@media (max-width: 768px) {
    /* Убираем sticky и делаем fixed */
    .header {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        width: 100% !important;
        z-index: 99999 !important;
        background: white !important;
        box-shadow: 0 2px 5px rgba(0,0,0,0.1) !important;
    }
    
    /* Убираем верхний отступ у body и добавляем к hero */
    body {
        padding-top: 0 !important;
    }
    
    .hero {
        margin-top: 100px !important;
    }
    
    /* Фиксим z-index для всех элементов */
    .hero,
    .features,
    .statistics,
    .categories,
    .business-opportunities,
    .security,
    .cta,
    .footer {
        position: relative !important;
        z-index: 1 !important;
    }
}