/* ============================================================
   PROGRAMS PAGE — programs.css
   ============================================================ */

/* ── PROGRAMS HERO ── */
.program-hero {
    background:
        linear-gradient(rgba(11,102,35,.75), rgba(11,102,35,.75)),
        url("../images/program-hero.jpg");
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    padding: 55px 20px;
}

.program-hero-content {
    max-width: 900px;
    margin: auto;
}

.program-hero h1 {
    font-size: 56px;
    margin-bottom: 15px;
}

.program-hero p {
    max-width: 850px;
    margin: auto;
    font-size: 20px;
    line-height: 1.8;
}


/* ── PROGRAMS CONTAINER ── */
.programs-container{
    max-width:1300px;
    margin:auto;
    padding:60px 20px;
}


/* ── PROGRAM CARD ── */
.program-card {
    display: flex;
    align-items: center;
    gap: 25px;
    margin-bottom: 35px;
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,.08);
    transition: all 0.3s ease;
}

.program-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.program-card.reverse {
    flex-direction: row-reverse;
}

.program-card img {
    width: 320px;
    height: 280px;
    object-fit: cover;
}

.program-content {
    flex: 1;
    padding: 25px;
}

.program-content h2 {
    color: #0b6623;
    margin-bottom: 15px;
}

.program-content p {
    line-height: 1.7;
    color: #555;
}

.program-content ul {
    padding-left: 20px;
}

.program-content li {
    margin-bottom: 8px;
}

.program-highlight {
    background: #eef8ef;
    border-left: 5px solid #0b6623;
    padding: 12px;
    margin: 15px 0;
    border-radius: 8px;
}


/* ── PROGRAMS CTA ── */
/* ── PROGRAMS CTA ── */

.programs-cta{
    background:
        linear-gradient(rgba(11,102,35,.9), rgba(11,102,35,.9)),
        url("../images/program-cta.jpg");
    background-size:cover;
    background-position:center;

    text-align:center;
    color:white;

    padding:80px 20px;
    margin-top:50px;
}

.programs-cta h2{
    font-size:42px;
    margin-bottom:20px;
}

.programs-cta p{
    max-width:800px;
    margin:auto;
    font-size:20px;
    line-height:1.8;
    margin-bottom:30px;
}
/* ============================
   RESPONSIVE
============================ */

@media (max-width:900px){

    .program-card,
    .program-card.reverse{
        flex-direction:column;
    }

    .program-card img{
        width:100%;
        height:250px;
    }

    .program-hero h1{
        font-size:38px;
    }

    .program-hero p{
        font-size:18px;
    }

    .programs-cta h2{
        font-size:32px;
    }
}