/* Programs Page Styles */
.programs-detail {
    padding: 80px 0;
    background: #f9fbfc;
}

.program-card {
    background: #ffffff;
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.03);
    height: 100%;
    display: flex;
    flex-direction: column;
}

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

.program-icon {
    width: 60px;
    height: 60px;
    background: rgba(26, 142, 179, 0.1);
    color: #1a8eb3;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 25px;
}

.program-card h3 {
    font-size: 1.4rem;
    color: #000000;
    margin-bottom: 15px;
    font-weight: 700;
}

.program-card p {
    color: #666666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.program-features {
    list-style: none;
    margin-top: auto;
}

.program-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 0.95rem;
    color: #444444;
}

.program-features i {
    color: #1a8eb3;
    font-size: 0.8rem;
}

.programs-cta {
    background: #1a8eb3;
    color: #ffffff;
    padding: 100px 0;
    text-align: center;
    margin-top: 50px;
}

.programs-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.programs-cta p {
    font-size: 1.1rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

@media (max-width: 768px) {
    .programs-cta h2 {
        font-size: 2rem;
    }
}
