/* NEW/CHANGE: Using Crimson Text as closest free alternative to CSUN's Apex Serif */
        @import url('https://fonts.googleapis.com/css2?family=Crimson+Text:ital,wght@0,400;0,600;0,700;1,400&display=swap');

        * { /* targets every element on page */
            /* resets default margins and padding */
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
        }

        .title {
            font-size: 2.5rem;
            margin-top: 2rem;
            margin-bottom: 2rem;
            padding-left: 2rem;
            padding-right: 2rem;
            font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .title .t1 {
            font-size: 1rem;
            font-weight: 700;
            line-height: 1.33;
            text-transform: none;
            margin-bottom: -40px;
        }

        .title .t2 {
            margin-top: 40px;
            font-weight: 700;
            font-size: 2.5rem;
            margin-bottom: -20px;
            line-height: 1.14;
        }

        .title img {
            align-self: center;
            max-height: 80px;
        }

        .header {
            width: 100vw;
            margin: 0 -2.5rem;
            padding: 0 2.5rem;
        }

        /* NEW/CHANGE: Desktop-first navigation */
        .nav {
            font-family: 'Apex Serif', Georgia, 'Times New Roman', serif;
            padding-left: 2rem;
            background-color: rgb(210, 32, 48);
            color: white;
            display: flex;
            align-items: center;
            list-style: none;
            font-size: 1.125rem;
            width: 100vw;
            height: 5.25rem;
            border-bottom: 0.0625rem solid rgb(190, 198, 195);
        }

        .nav li {
            color: inherit;
            display: flex;
            align-items: center;
            position: relative;
        }

        .nav a {
            padding: 2rem 1rem;
            display: flex;
            align-items: center;
            text-decoration: none;
            text-align: center;
            color: white;
            font-weight: 400;
            font-size: 1.0625rem;
            line-height: 1.2;
            height: 100%;
            margin: .5rem;
            position: relative;
        }

        .nav a::after {
            content: '';
            position: absolute;
            bottom: 1rem;
            left: 50%;
            width: 0;
            height: 3px;
            background-color: white;
            transition: all 0.3s ease;
            transform: translateX(-50%);
        }

        .nav a:hover::after {
            width: 80%;
        }

        .nav a.active::after {
            width: 80%;
        }

        .main-content {
            max-width: 1200px;
            margin: 50px auto;
            padding: 0 2rem;
            min-height: 500px;
        }

        .main-content ul,
        .main-content ol {
            margin: 1rem 0;
            padding-left: 2rem;
        }

        .main-content li {
            margin-bottom: 0.5rem;
            line-height: 1.5;
        }

        .main-content h1 {
            color: #d02030;
            margin-bottom: 1.5rem;
        }

        .main-content h2 {
            color: #d02030;
            margin-top: 2rem;
            margin-bottom: 1rem;
        }

        .main-content p {
            margin-bottom: 1rem;
            line-height: 1.6;
        }

        /* NEW/CHANGE: Desktop table styling */
        .desktop-table {
            border: 2px solid black;
            margin: 10px auto;
            border-collapse: collapse;
            width: 100%;
            max-width: 100%;
        }

        .desktop-table tr th {
            border: 2px solid black;
            background-color: rgb(210, 32, 48);
            color: white;
            padding: 15px 10px;
            font-family: 'Apex Serif', Georgia, 'Times New Roman', serif;
        }

        .desktop-table tr td {
            border: 1px solid black;
            text-align: center;
            padding: 20px 20px;
            vertical-align: top;
        }

        /* NEW/CHANGE: Mobile schedule cards - hidden by default */
        .mobile-schedule {
            display: none;
        }

        .schedule-day {
            background: white;
            border: 2px solid #d02030;
            border-radius: 8px;
            margin: 1rem 0;
            padding: 1rem;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        }

        .schedule-day h3 {
            color: #d02030;
            font-size: 1.2rem;
            margin-bottom: 0.5rem;
            padding-bottom: 0.5rem;
            border-bottom: 1px solid #eee;
        }

        .schedule-event {
            margin: 0.75rem 0;
            padding: 0.5rem;
            background: #f8f9fa;
            border-radius: 4px;
        }

        .schedule-event strong {
            display: block;
            color: #d02030;
            font-size: 1rem;
            margin-bottom: 0.25rem;
        }

        .schedule-event p {
            margin: 0;
            font-size: 0.9rem;
            color: #666;
        }

        .no-events {
            color: #999;
            font-style: italic;
            text-align: center;
            padding: 1rem;
        }

        .footer {
            width: 100%;
            height: 500px;
            background-image: url(//live-csu-northridge.pantheonsite.io/sites/default/files/2022-06/HomepageFooter_1_1600x800-min.jpg);
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
        }

        .footer-content {
            color: white;
        }

        /* NEW/CHANGE: Tablet responsive styles */
        @media (max-width: 768px) {
            .title {
                flex-direction: column;
                text-align: center;
                padding: 1rem;
                margin-bottom: 1rem;
            }
            
            .title img {
                margin-top: 1rem;
                max-width: 150px;
            }
            
            /* NEW/CHANGE: Mobile navigation - stacks vertically */
            .nav {
                flex-direction: column;
                height: auto;
                padding: 1rem;
                gap: 0.5rem;
            }
            
            .nav li {
                width: 100%;
                text-align: center;
            }
            
            .nav a {
                width: 100%;
                padding: 1rem;
                margin: 0.25rem 0;
                border-radius: 4px;
                transition: background-color 0.3s ease;
                font-size: 1rem;
            }
            
            .nav a:hover,
            .nav a.active {
                background-color: rgba(255, 255, 255, 0.1);
            }
            
            /* NEW/CHANGE: Hide bottom border animation on mobile, use background instead */
            .nav a::after {
                display: none;
            }
            
            .main-content {
                padding: 0 1rem;
                margin: 25px auto;
            }
            
            /* NEW/CHANGE: Hide desktop table, show mobile schedule */
            .desktop-table {
                display: none;
            }
            
            .mobile-schedule {
                display: block;
            }
            
            .footer {
                height: 400px;
            }
        }

        /* NEW/CHANGE: Phone responsive styles */
        @media (max-width: 480px) {
            .title .t1 {
                font-size: 0.9rem;
            }
            
            .title .t2 {
                font-size: 1.8rem;
            }
            
            .nav a {
                font-size: 0.9rem;
                padding: 0.875rem;
            }
            
            .main-content {
                padding: 0 0.5rem;
                margin: 20px auto;
            }
            
            .main-content h1 {
                font-size: 1.4rem;
                margin-bottom: 1rem;
            }
            
            .main-content p {
                font-size: 0.9rem;
            }
            
            .footer {
                height: 300px;
            }
        }