/* ===== PROGRAM DETAIL PAGE ===== */
.program-detail-page {
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
}

.prog-back-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: rgba(255,255,255,0.6);
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
    text-decoration: none;
    margin-bottom: 20px;
    transition: color 0.2s;
}
.prog-back-link:hover {
    color: #53D156;
}

.prog-hero-title {
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    margin: 0;
    line-height: 1.2;
}

.program-detail-body {
    padding: 60px 0 80px;
}

/* LEFT SECTIONS */
.prog-section {
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.prog-section:last-child {
    border-bottom: none;
}

.prog-section-title {
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 14px;
}

.prog-section-text {
    color: #D4D4D4;
    font-size: 16px;
    line-height: 1.75;
    margin: 0;
}

/* OBJECTIVES LIST */
.prog-objectives-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.prog-objectives-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: #D4D4D4;
    font-size: 15px;
    line-height: 1.6;
    padding: 6px 0;
}

.prog-objectives-list li::before {
    content: '';
    width: 9px;
    height: 9px;
    min-width: 9px;
    border-radius: 50%;
    border: 2px solid #53D156;
    margin-top: 6px;
}

/* ACTIVITY CARDS */
.prog-activity-card {
    background: #131c18;
    border-radius: 10px;
    padding: 18px 20px;
    height: 100%;
    border-left: 3px solid #53D156;
    transition: background 0.2s;
}
.prog-activity-card:hover {
    background: #1a2e20;
}

.prog-activity-card strong {
    display: block;
    color: #53D156;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.prog-activity-card p {
    color: #b0b6b3;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

/* RIGHT SIDEBAR */
.prog-sidebar {
    display: flex;
    flex-direction: column;
    gap: 14px;
    position: sticky;
    top: 100px;
}

.prog-sidebar-card {
    background: #131c18;
    border-radius: 12px;
    padding: 20px 22px;
    border: 1px solid rgba(255,255,255,0.05);
}

.prog-sidebar-icon {
    color: #53D156;
    font-size: 16px;
    margin-bottom: 8px;
}

.prog-sidebar-card h5 {
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 6px;
}

.prog-sidebar-card p {
    color: #b0b6b3;
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
}

/* DONATE SIDEBAR CARD */
.prog-sidebar-donate {
    background: #1a2e20;
    border-radius: 12px;
    padding: 22px;
    border: 1px solid #53D15630;
    text-align: center;
}

.prog-sidebar-donate h5 {
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 6px;
}

.prog-sidebar-donate p {
    color: #8a918e;
    font-size: 13px;
    margin-bottom: 16px;
    line-height: 1.5;
}

.prog-donate-btn {
    display: block;
    background: #53D156;
    color: #111A14;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 700;
    padding: 13px 20px;
    border-radius: 50px;
    text-decoration: none;
    text-align: center;
    letter-spacing: 0.5px;
    transition: background 0.2s, color 0.2s;
}
.prog-donate-btn:hover {
    background: #F96767;
    color: #fff;
}

@media (max-width: 767px) {
    .prog-hero-title {
        font-size: 2rem;
    }
    .prog-sidebar {
        position: static;
        margin-top: 20px;
    }
}