@media (max-width: 768px) {
    .menu-toggle {
        display: flex !important;
    }

    .nav-menu {
        position: fixed !important;
        left: -100% !important;
        top: 70px !important;
        flex-direction: column !important;
        background-color: #ffffff !important;
        background-image: none !important;
        width: 100% !important;
        text-align: center !important;
        transition: left 0.3s ease-in-out !important;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.15) !important;
        z-index: 999 !important;
        padding: 2rem 0 !important;
        max-height: calc(100vh - 70px) !important;
        overflow-y: auto !important;
    }

    .nav-menu.active {
        left: 0 !important;
    }

    .nav-menu a {
        padding: 1.25rem 2rem !important;
        border-bottom: 1px solid #f3f4f6 !important;
        color: #1e3a8a !important;
        font-size: 1.125rem !important;
        font-weight: 600 !important;
        transition: all 0.2s ease !important;
        background: transparent !important;
    }

    .nav-menu a:hover {
        background-color: #f9fafb !important;
        color: #d4af37 !important;
        padding-left: 2.5rem !important;
    }

    .nav-menu a::after {
        display: none !important;
    }

    /* Style the Get Consultation button differently in mobile menu */
    .nav-menu a.btn {
        margin: 1rem 2rem !important;
        padding: 1rem 1.5rem !important;
        border-radius: 0.75rem !important;
        background: linear-gradient(135deg, #d4af37 0%, #c5a028 100%) !important;
        color: #1e3a8a !important;
        font-weight: 700 !important;
        border: none !important;
    }

    .nav-menu a.btn:hover {
        background: linear-gradient(135deg, #c5a028 0%, #d4af37 100%) !important;
        transform: translateY(-2px) !important;
        padding-left: 1.5rem !important;
    }

    .menu-toggle.active span:nth-child(2) {
        opacity: 0 !important;
    }

    .menu-toggle.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg) !important;
    }

    .menu-toggle.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg) !important;
    }

    /* Mobile Hero Section */
    .hero h1 {
        font-size: 2rem !important;
    }

    .hero p {
        font-size: 1.0625rem !important;
    }

    /* Mobile Grid Adjustments */
    .grid-2,
    .grid-3,
    .grid-4 {
        grid-template-columns: 1fr !important;
    }

    /* Mobile Contact Grid */
    .contact-grid {
        grid-template-columns: 1fr !important;
    }

    /* Mobile Footer */
    .footer-content {
        grid-template-columns: 1fr !important;
        text-align: center !important;
    }

    /* Mobile Typography */
    h1 {
        font-size: 2.25rem !important;
    }

    h2 {
        font-size: 1.875rem !important;
    }

    h3 {
        font-size: 1.5rem !important;
    }
}