/* Programs Page Styles */
.program-section {
    padding: 4rem 0;
    background: #fff;
}

.program-section:nth-child(even) {
    background: #f8f9fa;
}

.program-card {
    padding: 2rem;
    border-radius: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 2rem;
}

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

.program-image {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.program-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    aspect-ratio: 16/9;
}

.program-content {
    padding: 2rem 0;
}

.program-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #333;
}

.program-content .lead {
    font-size: 1.2rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.program-features {
    margin: 2rem 0;
}

.program-features li {
    padding: 0.75rem 0;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
}

.program-features i {
    color: #0d6efd;
    margin-right: 1rem;
    font-size: 1.2rem;
}

.btn-program {
    padding: 0.75rem 2rem;
    font-size: 1.1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-program:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(13, 110, 253, 0.2);
}

.section-community {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../images/community-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
    padding: 6rem 0;
    position: relative;
}

.community-overlay {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 300px;
}

.caption-content h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.caption-content .lead {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Mobile Responsiveness */
@media (max-width: 991px) {
    .program-section {
        padding: 3rem 0;
    }

    .program-content {
        text-align: center;
        padding: 2rem 0;
    }

    .program-content h2 {
        font-size: 2rem;
    }

    .program-features {
        display: inline-block;
        text-align: left;
    }

    .program-image {
        margin-top: 2rem;
    }

    .caption-content h2 {
        font-size: 2.5rem;
    }
}

@media (max-width: 767px) {
    .program-section {
        padding: 2rem 0;
    }

    .program-content h2 {
        font-size: 1.75rem;
    }

    .program-content .lead {
        font-size: 1.1rem;
    }

    .program-features li {
        font-size: 1rem;
    }

    .caption-content h2 {
        font-size: 2rem;
    }

    .caption-content .lead {
        font-size: 1.1rem;
    }

    .btn-program {
        width: 100%;
        margin-bottom: 1rem;
    }
}