:root {
    --primary-color: #0D2A4B; /* Deep Navy Blue */
    --secondary-color: #2d9cdb; /* Bright Blue - from logo */
    --accent-red: #c0392b; /* Red - from logo */
    --text-dark: #343A40;
    --text-light: #6C757D;
    --background-light: #F8F9FA;
    --white: #fff;
    --border-color: #dee2e6;
    --font-family: 'Be Vietnam Pro', sans-serif;
    --shadow-sm: 0 4px 15px rgba(0,0,0,0.06);
    --shadow-md: 0 8px 25px rgba(0,0,0,0.1);
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--white);
}

body.no-scroll {
    overflow: hidden;
}

.container {
    width: 90%;
    max-width: 1140px;
    margin: 0 auto;
}

h1, h2, h3, h4 {
    color: var(--text-dark);
    line-height: 1.3;
    font-weight: 700;
}

h1 { font-size: 3.2rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.2rem; }

p {
    margin-bottom: 1rem;
    color: var(--text-light);
}

a {
    text-decoration: none;
    color: var(--primary-color);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.section-header .subtitle {
    color: var(--accent-red);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
    display: block;
}

.section-header h2 {
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 15px;
}

.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    text-align: center;
}

.btn i {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.btn:hover i {
    transform: translateX(3px);
}

.btn-primary {
    background-color: var(--secondary-color);
    color: var(--white);
    border-color: var(--secondary-color);
}

.btn-primary:hover {
    background-color: #2086c3;
    border-color: #2086c3;
    transform: translateY(-3px);
    box-shadow: 0 4px 10px rgba(45, 156, 219, 0.3);
}

.btn-secondary {
    background-color: transparent;
    color: var(--text-dark);
    border-color: var(--border-color);
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

/* Header */
.header {
    background-color: var(--white);
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-top {
    background-color: var(--background-light);
    padding: 8px 0;
    font-size: 0.85rem;
    color: var(--text-light);
    border-bottom: 1px solid var(--border-color);
}

.header-top .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-top-left span {
    margin-right: 20px;
}

.header-top-left i {
    color: var(--primary-color);
    margin-right: 5px;
}

.search-form {
    display: flex;
}

.search-form input {
    border: 1px solid var(--border-color);
    padding: 5px 10px;
    border-radius: 15px 0 0 15px;
    border-right: none;
    outline: none;
}

.search-form button {
    border: 1px solid var(--border-color);
    background-color: var(--white);
    padding: 5px 10px;
    border-radius: 0 15px 15px 0;
    cursor: pointer;
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    position: relative;
}

.nav-logo img {
    height: 50px;
}

.nav-menu {
    display: flex;
    gap: 25px;
}

.nav-menu a {
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s ease;
    padding-bottom: 5px;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--secondary-color);
    transition: width 0.3s ease;
}

.nav-menu a:hover, .nav-menu a.active {
    color: var(--secondary-color);
}

.nav-menu a:hover::after, .nav-menu a.active::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
}

.hamburger {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--text-dark);
    position: relative;
    transition: background-color 0.2s ease-in-out;
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 25px;
    height: 3px;
    background-color: var(--text-dark);
    left: 0;
    transition: transform 0.2s ease-in-out;
}

.hamburger::before { top: -8px; }
.hamburger::after { bottom: -8px; }

/* Mobile Menu Elements - Hidden on Desktop */
.mobile-nav-header, .submenu-arrow {
    display: none;
}

/* Hero Section */
.hero {
    background: url('https://picsum.photos/seed/hero-bg/1920/1080') no-repeat center center/cover;
    position: relative;
    padding: 120px 0;
    color: var(--white);
    text-align: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: linear-gradient(45deg, rgba(13, 42, 75, 0.85), rgba(45, 156, 219, 0.6));
    z-index: 1;
}

.hero-container {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.hero-content {
    max-width: 800px;
}

.hero-content h1 {
    color: var(--white);
    font-size: 3.8rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 5px rgba(0,0,0,0.2);
}

.hero-content p {
    color: var(--white);
    opacity: 0.9;
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.hero-buttons .btn-primary {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
}

.hero-buttons .btn-secondary {
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border-color: var(--white);
}

.hero-buttons .btn-secondary:hover {
    background-color: var(--white);
    color: var(--primary-color);
}


/* Features Section */
.features {
    background-color: var(--background-light);
    padding: 60px 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature-card {
    background-color: var(--white);
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
    line-height: 1;
}

.feature-card h3 {
    color: var(--primary-color);
    margin-bottom: 10px;
    font-size: 1.3rem;
}

/* Courses Section */
.courses { 
    background-color: var(--white); 
}
.courses-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}
.course-card {
    background-color: var(--white);
    border-radius: 10px;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    border: 1px solid var(--border-color);
    overflow: hidden;
}

.course-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.course-info {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.course-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}
.course-icon {
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.8rem;
    flex-shrink: 0;
}
.course-info h3 {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin: 0;
}
.course-description {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 15px;
    flex-grow: 1;
}
.course-card-meta {
    list-style: none;
    padding: 15px 0 0;
    margin-top: auto;
    border-top: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: 0.85rem;
}
.course-card-meta li {
    display: flex;
    align-items: center;
    color: var(--text-dark);
}
.course-card-meta i {
    color: var(--secondary-color);
    margin-right: 10px;
    width: 18px;
    text-align: center;
}

/* Why Us Section */
.why-us { background-color: var(--background-light); }
.why-us-container {
    display: flex;
    align-items: center;
    gap: 60px;
}
.why-us-image {
    flex: 1;
}
.why-us-image img {
    border-radius: 10px;
    box-shadow: var(--shadow-md);
}
.why-us-content {
    flex: 1;
}
.why-us-content .subtitle {
    color: var(--accent-red);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}
.why-us-content h2 {
    color: var(--primary-color);
    margin-bottom: 20px;
}
.why-us-list {
    list-style: none;
    margin-top: 30px;
}
.why-us-list li {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 25px;
}
.why-us-list-icon {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-top: 5px;
}
.why-us-list h4 {
    color: var(--primary-color);
    margin-bottom: 5px;
    font-size: 1.1rem;
}

/* Teachers Section */
.teachers { background-color: var(--white); }
.teachers-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin: 40px auto 0;
    max-width: 900px;
}
.teacher-card {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}
.teacher-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 4/5;
    display: block;
    transition: transform 0.4s ease;
}
.teacher-card:hover img {
    transform: scale(1.05);
}
.teacher-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 40px 20px 20px;
    color: var(--white);
    background: linear-gradient(to top, rgba(13, 42, 75, 0.9), transparent);
    text-align: center;
}
.teacher-info h3 {
    color: var(--white);
    font-size: 1.4rem;
    margin-bottom: 5px;
}
.teacher-info p {
    color: var(--white);
    margin-bottom: 0;
    opacity: 0.9;
}


/* Testimonials Section */
.testimonials { 
    background-color: var(--background-light);
}
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.testimonial-card {
    background-color: var(--white);
    padding: 30px;
    border-radius: 10px;
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-sm);
    position: relative;
}
.testimonial-card::before {
    content: '\f10d';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 2.5rem;
    color: var(--secondary-color);
    opacity: 0.1;
}
.testimonial-card p {
    font-style: italic;
    color: var(--text-dark);
    margin-bottom: 20px;
    flex-grow: 1;
}
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
}
.testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
}
.testimonial-author-info h4 {
    color: var(--primary-color);
    font-size: 1.1rem;
    margin: 0;
}
.testimonial-author-info span {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* Contact Section */
.contact { background-color: var(--white); }
.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: stretch;
    background-color: var(--background-light);
    padding: 50px;
    border-radius: 10px;
}
.contact-info iframe {
    width: 100%;
    height: 100%;
    min-height: 450px;
    border-radius: 10px;
    border: 0;
}
.contact-form-wrapper h2 {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}
.contact-form-wrapper p {
    margin-bottom: 25px;
}
.contact-form-wrapper form input,
.contact-form-wrapper form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-family: var(--font-family);
    background: var(--white);
}
.contact-form-wrapper form button {
    width: 100%;
    margin-top: 10px;
}

/* Footer */
.footer {
    background-color: var(--primary-color);
    color: rgba(255, 255, 255, 0.8);
}
.footer-bottom {
    background-color: var(--primary-color);
    text-align: center;
    padding: 20px 0;
    font-size: 0.9rem;
}
.footer-bottom p {
    margin: 0;
    color: rgba(255, 255, 255, 0.7);
}


/* --- Other Page Specific Styles --- */
.page-header {
    padding: 80px 0;
    background: url('https://picsum.photos/seed/page-banner/1600/400') no-repeat center center/cover;
    position: relative;
    text-align: center;
}
.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(13, 42, 75, 0.6);
}
.page-header h1 {
    color: var(--white);
    position: relative;
    z-index: 2;
}

.page-content {
    background-color: var(--white);
}

/* Introduce Page */
.intro-welcome-container {
    display: flex;
    align-items: center;
    gap: 60px;
}
.intro-welcome-image {
    flex: 1;
}
.intro-welcome-image img {
    border-radius: 10px;
    box-shadow: var(--shadow-md);
}
.intro-welcome-text {
    flex: 1;
}
.intro-welcome-text h2 {
    color: var(--primary-color);
    margin-bottom: 20px;
}
.mission-vision {
    background-color: var(--background-light);
}
.mission-vision-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}
.mission-vision-item {
    background: var(--white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
    border-left: 4px solid var(--secondary-color);
}
.mission-vision-item i {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
    display: block;
}
.mission-vision-item h3 {
    color: var(--primary-color);
    margin-bottom: 10px;
    font-size: 1.5rem;
}
.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

/* Courses Page */
.courses-list-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}
.course-detail-card {
    background-color: var(--white);
    padding: 30px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    border-left: 5px solid var(--secondary-color);
    box-shadow: var(--shadow-sm);
}
.course-detail-card h3 {
    font-size: 1.6rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}
.course-detail-card p {
    color: var(--text-light);
    margin-bottom: 10px;
}
.course-meta {
    list-style: none;
    padding: 20px 0 0;
    margin-top: 20px;
    border-top: 1px solid var(--border-color);
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    font-size: 0.9rem;
}
.course-meta li { color: var(--text-dark); }
.course-meta li i { color: var(--primary-color); margin-right: 8px; }

/* Schedule Page */
.schedule-table-wrapper {
    overflow-x: auto;
    box-shadow: var(--shadow-sm);
    border-radius: 8px;
    border: 1px solid var(--border-color);
}
.schedule-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 800px;
}
.schedule-table th, .schedule-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
    vertical-align: middle;
}
.schedule-table thead { background-color: var(--background-light); }
.schedule-table th {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
}
.schedule-table tbody tr:last-child td { border-bottom: none; }
.schedule-table tbody tr:hover { background-color: #f8f9fa; }
.status {
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--white);
    display: inline-block;
}
.status-available { background-color: #28a745; }
.status-filling { background-color: #ffc107; color: var(--text-dark); }
.status-full { background-color: #dc3545; }
.btn-sm { padding: 8px 15px; font-size: 0.85rem; }
.btn.disabled {
    background-color: var(--text-light);
    border-color: var(--text-light);
    cursor: not-allowed;
    opacity: 0.7;
}

/* Teachers Page */
.teacher-feature-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}
.teacher-feature-card {
    background-color: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
}
.teacher-feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}
.teacher-feature-img {
    width: 100%;
    aspect-ratio: 16 / 9;
    position: relative;
}
.teacher-feature-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.teacher-feature-card:hover .teacher-feature-img img {
    transform: scale(1.05);
}
.teacher-feature-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 40px 20px 20px;
    color: var(--white);
    background: linear-gradient(to top, rgba(13, 42, 75, 0.9), transparent);
    text-align: center;
}
.teacher-feature-info h2 {
    color: var(--white);
    font-size: 1.8rem;
    margin-bottom: 5px;
}
.teacher-feature-info .teacher-title {
    display: block;
    font-size: 1.1rem;
    color: var(--white);
    font-weight: 500;
    opacity: 0.9;
    margin: 0;
}
.teacher-feature-content {
    padding: 30px;
    width: 100%;
}
.teacher-feature-content h3 {
    font-size: 1.2rem;
    margin-top: 0;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border-color);
    color: var(--primary-color);
    text-align: left;
}
.teacher-feature-content h3 i { margin-right: 10px; color: var(--secondary-color); }
.teacher-details-list {
    list-style: none;
    padding-left: 0;
    text-align: left;
}
.teacher-details-list li {
    margin-bottom: 10px;
    color: var(--text-light);
}
.teacher-details-list li i {
    color: var(--primary-color);
    margin-right: 12px;
    width: 20px;
    text-align: center;
}

/* Contact Page Specific */
.contact-page-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: stretch;
}
.contact-page-map iframe {
    width: 100%;
    height: 100%;
    min-height: 450px;
    border-radius: 10px;
    border: 0;
}
.contact-page-form h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}
.contact-page-form p { margin-bottom: 20px; }


/* Responsive Styles */
@media (max-width: 992px) {
    h1 { font-size: 2.8rem; }
    h2 { font-size: 2.2rem; }
    .hero-content h1 { font-size: 3rem; }

    .features-grid {
        grid-template-columns: 1fr;
    }
    .courses-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    .why-us-container, .intro-welcome-container {
        flex-direction: column;
    }
    .intro-welcome-container {
        flex-direction: column-reverse; /* Puts image on top on smaller screens */
    }
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .contact-container {
        grid-template-columns: 1fr;
        padding: 30px;
    }
    .teacher-feature-container {
        grid-template-columns: 1fr;
    }
    .contact-page-container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    section {
        padding: 60px 0;
    }
    h1 { font-size: 2.2rem; }
    .hero-content h1 { font-size: 2.5rem; }
    .hero-buttons { flex-direction: column; }
    
    .header-top { display: none; }

    .nav-toggle { display: block; }
    .nav-toggle.active .hamburger { background-color: transparent; }
    .nav-toggle.active .hamburger::before { transform: rotate(45deg) translate(5px, 6px); }
    .nav-toggle.active .hamburger::after { transform: rotate(-45deg) translate(5px, -6px); }

    .nav-menu-container {
        position: fixed;
        top: 0;
        left: 0;
        width: 85%;
        max-width: 320px;
        height: 100vh;
        background-color: var(--white);
        box-shadow: 2px 0 10px rgba(0,0,0,0.1);
        z-index: 1100;
        transform: translateX(-100%);
        transition: transform 0.3s ease-in-out;
        display: flex;
        flex-direction: column;
    }

    .nav-menu-container.active {
        transform: translateX(0);
    }
    
    .mobile-nav-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 15px 20px;
        border-bottom: 1px solid var(--border-color);
    }

    .menu-title {
        font-size: 1.1rem;
        color: var(--text-light);
        font-weight: 500;
    }

    .close-btn {
        display: block;
        background: none;
        border: none;
        font-size: 2.5rem;
        line-height: 1;
        cursor: pointer;
        color: var(--text-light);
        padding: 0;
    }
    
    .nav-menu {
        display: flex;
        flex-direction: column;
        gap: 0;
        flex-grow: 1;
        overflow-y: auto;
    }

    .nav-menu li {
        border-bottom: 1px solid #f0f0f0;
    }

    .nav-menu a {
        display: block;
        padding: 15px 20px;
    }
    
    .nav-menu a::after {
        display: none; /* Hide underline effect on mobile */
    }

    .courses-list-container {
        grid-template-columns: 1fr;
    }

    .courses-grid {
        grid-template-columns: 1fr;
    }
    .teachers-grid {
        grid-template-columns: 1fr;
    }
    .mission-vision-grid, .values-grid {
        grid-template-columns: 1fr;
    }

    .course-meta {
        flex-direction: column;
        gap: 10px;
        align-items: flex-start;
    }

    /* Responsive Schedule Table Styles */
    .schedule-table-wrapper {
        box-shadow: none;
        border: none;
        overflow-x: hidden;
    }
    .schedule-table {
        min-width: 100%;
        border: none;
    }
    .schedule-table thead {
        display: none;
    }
    .schedule-table tbody, .schedule-table tr, .schedule-table td {
        display: block;
    }
    .schedule-table tr {
        margin-bottom: 25px;
        border: 1px solid var(--border-color);
        border-radius: 8px;
        padding: 20px;
        box-shadow: var(--shadow-sm);
    }
    .schedule-table td {
        padding: 12px 0;
        border-bottom: 1px solid #f0f0f0;
        text-align: right;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    .schedule-table td:before {
        content: attr(data-label);
        font-weight: 600;
        text-align: left;
        color: var(--text-dark);
        margin-right: 15px;
    }
    .schedule-table tr td:first-child {
        padding-bottom: 15px;
        margin-bottom: 15px;
        border-bottom: 1px solid var(--border-color);
        text-align: center;
        justify-content: center;
    }
    .schedule-table tr td:first-child strong {
        font-size: 1.25rem;
        color: var(--primary-color);
    }
    .schedule-table tr td:first-child:before {
        display: none;
    }
    .schedule-table tr td:last-child {
        border-bottom: none;
        padding-top: 20px;
        padding-bottom: 0;
        justify-content: center;
    }
    .schedule-table tr td:last-child:before {
        display: none;
    }
}

@media (min-width: 769px) {
    /* Ensure desktop menu works correctly by making container transparent */
    .nav-menu-container {
        display: contents;
    }
}