/* Schedule Section */
.schedule {
    padding: 5rem 0;
    background: white;
}

.schedule h2,
.programs h2,
.contact h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.schedule-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.schedule-card {
    background: var(--gray-50);
    padding: 1.5rem;
    border-radius: 0.5rem;
}

.schedule-card h3 {
    color: var(--primary);
    margin-bottom: 1rem;
}

.schedule-card ul {
    list-style: none;
}

.schedule-card li {
    margin-bottom: 0.5rem;
    color: var(--gray-600);
}