@media (max-width: 767px) {
    * {
        scroll-behavior: smooth;
        scroll-padding-top: 18px; /* Adjust this value based on your header height */
        box-sizing: border-box;
    }

    /* Header and Navigation */
    header {
        padding: 12px !important;
    }

    #logo img {
        max-width: 150px;
    }

    .desktop-nav {
        display: none !important;
    }

    .mobile-menu-toggle {
        display: block;
    }

    /* Show mobile nav when active */
    .mobile-nav.active {
        display: flex;
    }

    /* Layout adjustments */
    .layout-content-container {
        padding: 0;
        margin: 0;
    }

    /* Section headings */
    .section-heading {
        font-size: 28px;
        padding: 3rem 1rem 0.7rem;
    }

    /* Grid adjustments */
    .grid-cols-4 {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Business diary section - mobile adjustments */
    .business-diary-bg .flex.md\:flex-row {
        flex-direction: column;
        gap: 1rem;
    }

    /* Center the diary buttons on mobile */
    .business-diary-bg .grid.sm\:grid-cols-1 {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
    }
}
