        /* Base improvements for all screens */
        body {
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
            line-height: 1.6;
            margin: 0;
            background-color: #f4f4f4;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
        }

        /* Card Styling */
        .card {
            background: white;
            border-radius: 12px;
            padding: 25px; /* Comfortable padding on desktop */
            margin-bottom: 20px;
            box-shadow: 0 4px 6px rgba(0,0,0,0.05);
        }

        /* Grid System (Desktop default) */
        .grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
        }

        /* Timetable Container (Desktop default) */
        .timetable-container {
            display: flex;
            gap: 20px;
            justify-content: space-between;
        }

        .timetable-column {
            flex: 1;
            background: #fafafa;
            border-radius: 8px;
            padding: 15px;
        }

        table {
            width: 100%;
            border-collapse: collapse;
            font-size: 0.95rem;
        }

        th, td {
            text-align: left;
            padding: 10px;
            border-bottom: 1px solid #ddd;
        }
        
        th { background-color: #eee; }

        /* Highlight Box Styling */
        .highlight-box {
            background-color: #fff3cd;
            border-left: 5px solid #ffc107;
            padding: 15px;
            margin: 15px 0;
            border-radius: 4px;
            font-size: 0.95rem;
        }

        /* Agency Header */
        .agency-header {
            background-color: #2c3e50;
            color: white;
            text-align: center;
            padding: 40px 20px;
        }
        
        .agency-header h1 { margin: 0; font-size: 2.5rem; }

        /* Responsive Image Styling */
        .responsive-img {
            width: 100%;
            height: auto;
            border-radius: 8px;
            margin-bottom: 15px;
            display: block;
        }

        /* MOBILE SPECIFIC STYLES */
        @media screen and (max-width: 768px) {
            
            /* Reduce container padding to maximize screen width */
            .container {
                padding: 10px;
            }

            /* Stack Grids vertically */
            .grid {
                grid-template-columns: 1fr; /* Single column */
                gap: 15px;
            }

            /* Stack Timetables vertically */
            .timetable-container {
                flex-direction: column;
            }
            
            /* Reduce card padding for small screens */
            .card {
                padding: 15px;
                border-radius: 8px;
            }

            /* Adjust Header Sizes */
            .agency-header { padding: 30px 15px; }
            .agency-header h1 { font-size: 2rem; }
            h2 { font-size: 1.5rem; margin-top: 0; }
            h3 { font-size: 1.2rem; }

            /* Make tables scrollable if needed, or just tighter */
            table { font-size: 0.85rem; }
            th, td { padding: 8px 5px; }

            /* Improve Touch Targets */
            ul li { margin-bottom: 8px; }
            
            /* Navigation adjustments (assuming standard topnav structure) */
            .topnav a {
                padding: 14px 16px;
                font-size: 16px;
            }
            
            /* Footer adjustments */
            .bottomnav li {
                display: block;
                width: 100%;
                text-align: center;
                border-bottom: 1px solid #444;
            }
        }