
body {
    font-family: Arial, sans-serif;
    margin: 0;
    background: #f4f4f4;
    color: #333;
}
header {
    background: #2c3e50;
    color: white;
    padding: 20px;
    text-align: center;
}
.programs {
    display: flex;
    justify-content: space-around;
    margin: 20px;
}
.program-card {
    background: white;
    padding: 20px;
    border-radius: 8px;
    width: 25%;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    cursor: pointer;
    transition: transform 0.2s;
}
.program-card:hover {
    transform: scale(1.05);
}
footer {
    text-align: center;
    padding: 10px;
    background: #2c3e50;
    color: white;
}
