    @media (max-width: 768px) {
        /* Sidebar adjustments */
        .sidebar {
            position: fixed;
            width: 100%; /* Full width */
            height: 60px; /* Reduced height */
            top: 0;
            left: 0;
            z-index: 1000;
            overflow-y: auto; /* Allows scrolling */
            background: #63C5B4; /* Background color */
            display: flex;
            align-items: center;
            justify-content: space-between; /* Aligns menu items nicely */
            padding: 0 10px;
        }

        /* Toggle visibility of sidebar links */
        .sidebar a {
            display: none; /* Hide all links initially */
        }

        .sidebar-toggle { /* Button to toggle menu */
            display: block;
            color: white;
            font-size: 30px;
            cursor: pointer;
        }

        /* Main content adjustments */
        .main-content {
            padding-top: 70px; /* Push down content below the sidebar */
        }

        /* Text scaling for better readability */
        body, h1, h2, h3, p {
            font-size: 14px;
        }

        /* Adjustments for form elements to use full width */
        input[type="text"], textarea {
            width: 100%;
        }
    }