        /* Additional styles for education page */
        .education-section {
            margin: 3rem 0;
        }
        
        .program-tabs {
            display: flex;
            flex-wrap: wrap;
            margin-bottom: 2rem;
            border-bottom: 2px solid var(--primary);
        }
        
        .program-tab {
            padding: 1rem 1.5rem;
            background: #f5f5f5;
            border: none;
            cursor: pointer;
            font-weight: 500;
            transition: all 0.3s ease;
        }
        
        .program-tab:hover {
            background: #e0e0e0;
        }
        
        .program-tab.active {
            background: var(--primary);
            color: white;
        }
        
        .specialty-tabs {
            display: flex;
            flex-wrap: wrap;
            margin: 1.5rem 0;
            gap: 0.5rem;
        }
        
        .specialty-tab {
            padding: 0.5rem 1rem;
            background: #e8f4f9;
            border: 1px solid var(--accent);
            border-radius: 20px;
            cursor: pointer;
            font-size: 0.9rem;
            transition: all 0.3s ease;
        }
        
        .specialty-tab:hover {
            background: var(--accent);
            color: white;
        }
        
        .specialty-tab.active {
            background: var(--accent);
            color: white;
        }
        
        .program-header {
            background: white;
            padding: 2rem;
            border-radius: 10px;
            box-shadow: var(--shadow);
            margin-bottom: 2rem;
        }
        
        .program-content {
            background: white;
            padding: 2rem;
            border-radius: 10px;
            box-shadow: var(--shadow);
            margin-bottom: 2rem;
        }
        
        .program-detail {
            margin-bottom: 2rem;
        }
        
        .program-detail h3 {
            color: var(--primary);
            margin-bottom: 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid var(--secondary);
        }
        
        .staff-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1.5rem;
            margin: 1.5rem 0;
        }
        
        .staff-card {
            background: #f9f9f9;
            padding: 1.5rem;
            border-radius: 8px;
            border-left: 4px solid var(--secondary);
        }
        
        .staff-role {
            color: var(--secondary);
            font-weight: 500;
            margin-bottom: 0.5rem;
        }
        
        .course-table {
            width: 100%;
            border-collapse: collapse;
            margin: 1.5rem 0;
        }
        
        .course-table th, .course-table td {
            padding: 1rem;
            text-align: left;
            border-bottom: 1px solid #ddd;
        }
        
        .course-table th {
            background-color: var(--primary);
            color: white;
        }
        
        .course-table tr:nth-child(even) {
            background-color: #f9f9f9;
        }
        
        .credit-badge {
            display: inline-block;
            padding: 0.3rem 0.6rem;
            background: var(--secondary);
            color: white;
            border-radius: 4px;
            font-size: 0.8rem;
            font-weight: bold;
        }
        
        
        @media (max-width: 768px) {
            .program-tabs {
                flex-direction: column;
            }
            
            .staff-grid {
                grid-template-columns: 1fr;
            }
            
            .course-table {
                display: block;
                overflow-x: auto;
            }
        }