/* Programs Section Styles */
.programs-section {
    padding: 80px 0;
    background-color: #e7f1fb;
    /* Slightly cleaner white/grey */
    font-family: 'Poppins', sans-serif;
    /* Assuming Poppins is used or falls back to sans */
}

.programs-heading {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    color: #2c2c2c;
    margin-bottom: 60px;
    letter-spacing: -0.5px;
}

/* Featured Program (Image + Text) */
.featured-program {
    display: flex;
    background: transparent;
    gap: 0;
    /* Removed gap for seamless look if desired, or keep small */
    margin-bottom: 60px;
    align-items: stretch;
    /* Stretch to matching heights */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    /* Soft overall shadow */
    border-radius: 12px;
    overflow: hidden;
}

.featured-image-wrapper {
    flex: 1.2;
    /* Image takes slightly more width */
    position: relative;
    min-height: 400px;
}

.featured-image {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.featured-content {
    flex: 1;
    padding: 60px 50px;
    background-color: #f4f6f8;
    /* Very subtle blue-grey */
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.featured-title {
    font-size: 32px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.featured-desc {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 30px;
}

.read-more-link {
    color: #f7941d;
    /* Orange adjusted */
    font-weight: 500;
    text-decoration: none;
    font-family: 'Brush Script MT', 'Comic Sans MS', cursive;
    font-size: 24px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: transform 0.2s ease;
}

.read-more-link:hover {
    transform: translateX(5px);
    text-decoration: none;
}

/* Programs Grid (3 Cards) */
.programs-grid {
    display: flex;
    gap: 30px;
    justify-content: center;
}

.program-card {
    background: #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    width: 100%;
    flex: 1;
    text-align: center;
    transition: all 0.3s ease;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    border: 1px solid #f0f0f0;
}

.program-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
}

.card-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.program-card:hover .card-image {
    transform: scale(1.05);
}

.card-content {
    padding: 20px;
    background: #fff;
    position: relative;
    z-index: 2;
}

.card-title {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin: 0;
    line-height: 1.4;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .featured-program {
        flex-direction: column;
    }

    .featured-image-wrapper {
        min-height: 300px;
    }

    .featured-content {
        padding: 40px 30px;
    }

    .programs-grid {
        flex-wrap: wrap;
    }

    .program-card {
        flex: 1 1 300px;
        margin-bottom: 20px;
    }
}