/* Programs Page */
#main-col {
    padding: 60px 0;
    background: var(--light-bg-color);
}

#main-col h2 {
    font-family: var(--heading-font);
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--heading-color);
    text-align: center;
}

#main-col .section-subtitle {
    font-family: var(--body-font);
    font-size: 1.1rem;
    color: var(--text-color);
    margin-bottom: 40px;
    text-align: center;
}

/* Existing .card-grid and .card styles should apply here */

.erppw-highlight-card {
    display: flex;
    align-items: center;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 8px 20px var(--shadow-color);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 30px;
    /* Add some space below the card */
}

.erppw-highlight-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.erppw-highlight-card .erppw-highlight-img {
    width: 50%;
    /* Take half width */
    height: 350px;
    /* Fixed height */
    object-fit: cover;
}

.erppw-highlight-card .erppw-highlight-content {
    width: 50%;
    /* Take half width */
    padding: 40px;
    text-align: left;
}

.erppw-highlight-card .erppw-highlight-content h3 {
    font-family: var(--heading-font);
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.erppw-highlight-card .erppw-highlight-content p {
    font-family: var(--body-font);
    font-size: 1.1rem;
    color: var(--text-color);
    margin-bottom: 30px;
    line-height: 1.8;
}

.full-width-card {
    display: flex;
    align-items: center;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 8px 20px var(--shadow-color);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.full-width-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.full-width-card .card-img {
    width: 50%;
    /* Take half width */
    height: 350px;
    /* Fixed height */
    object-fit: cover;
}

.full-width-card .card-content {
    width: 50%;
    /* Take half width */
    padding: 40px;
    text-align: left;
}

.full-width-card .card-content h3 {
    font-family: var(--heading-font);
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.full-width-card .card-content p {
    font-family: var(--body-font);
    font-size: 1.1rem;
    color: var(--text-color);
    margin-bottom: 30px;
    line-height: 1.8;
}

.more-courses-link {
    margin-top: 50px;
    text-align: center;
}