/* Mobile Menu Styles */
.mobile-menu-toggle {
    display: none;
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
        position: fixed;
        top: 20px;
        left: 20px;
        z-index: 3000;
        background: #E31E24;
        color: white;
        width: 50px;
        height: 50px;
        border-radius: 10px;
        border: none;
        cursor: pointer;
    }
}
