/* Programs section styling */
.programs {
    padding: 60px 0;
    background-color: #f9f9f9;
}

.programs h2 {
    text-align: center;
    margin-bottom: 40px;
    color: #333;
    font-size: 2rem;
}

.program-cards {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.program-card {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: calc(50% - 15px);
    max-width: 550px;
}

.program-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.program-card a {
    display: block;
    color: inherit;
    text-decoration: none;
}

.program-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-bottom: 1px solid #eee;
}

.program-card h3 {
    padding: 20px 20px 10px;
    font-size: 1.5rem;
    color: #333;
    margin: 0;
}

.program-card p {
    padding: 0 20px 20px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.learn-more {
    display: inline-block;
    padding: 0 20px 20px;
    color: #0066cc;
    font-weight: 500;
    transition: color 0.3s ease;
}

.program-card:hover .learn-more {
    color: #004499;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .program-cards {
        gap: 20px;
    }
    
    .program-card {
        width: 100%;
    }
    
    .program-card img {
        height: 200px;
    }
}

@media (max-width: 576px) {
    .programs {
        padding: 40px 0;
    }
    
    .programs h2 {
        font-size: 1.5rem;
        margin-bottom: 30px;
    }
    
    .program-card h3 {
        font-size: 1.3rem;
    }
}
