body {
    font-family: "Segoe UI", Arial, sans-serif;
    background: #f5f7fa;
    margin: 0;
}

.programs-section {
    padding: 50px 20px;
    max-width: 1200px;
    margin: auto;
}

.programs-section h1 {
    text-align: center;
    margin-bottom: 10px;
}

.subtitle {
    text-align: center;
    color: #555;
    margin-bottom: 40px;
}

.section-title {
    margin: 40px 0 20px;
    color: #222;
}

/* PROGRAMS */
.program-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.program-card {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.1);
}

.program-card h3 {
    color: #0066cc;
    margin-bottom: 10px;
}

.program-card ul {
    padding-left: 18px;
}

.program-card li {
    margin-bottom: 5px;
}

/* EVENTS */
.event-list {
    margin-top: 20px;
}

.event-item {
    background: #fff;
    padding: 20px;
    border-left: 5px solid #0066cc;
    margin-bottom: 20px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.event-item h4 {
    margin-bottom: 5px;
}


/* EVENTS WITH IMAGES */
.event-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 20px;
}

.event-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 6px 18px rgba(0,0,0,0.1);
}

.event-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;   /* no distortion */
}

.event-content {
    padding: 15px;
}

.event-card h4 {
    margin-bottom: 5px;
}

.event-row {
    display: flex;
    gap: 30px;
    background: #fff;
    padding: 20px;
    margin-bottom: 30px;
    border-radius: 10px;
    box-shadow: 0 6px 15px rgba(0,0,0,0.1);
    align-items: center;
}

.event-image {
    flex: 1;
}

.event-image img {
    width: 50%;
    height: 200px;
    object-fit: cover;   /* no distortion */
    border-radius: 8px;
}

.event-details {
    flex: 2;
}

.event-details h4 {
    margin-bottom: 5px;
}

.date {
    font-size: 13px;
    color: #777;
    margin-bottom: 10px;
}