/* Brochure 2025 – Programs section styling */
#programs {
    scroll-margin-top: 90px;
    padding-top: 10px;
}

#programs h2 {
    position: relative;
    font-weight: 700;
    letter-spacing: 0.3px;
    margin-bottom: 1rem;
}

#programs h2::after {
    content: "";
    display: block;
    width: 90px;
    height: 4px;
    margin-top: 8px;
    background: linear-gradient(45deg, #667eea, #764ba2);
    border-radius: 2px;
}

/* Card polish */
#programs .card {
    border: 0;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

#programs .card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(0,0,0,0.12);
}

#programs .card-body {
    padding: 20px 22px;
    background: linear-gradient(180deg, rgba(102,126,234,0.06), rgba(118,75,162,0.06));
    border-radius: 16px;
}

/* Card headings with icon accent */
#programs .card h5 {
    color: #1f272b;
    margin-bottom: 10px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

#programs .card h5::before {
    content: "\f19d"; /* graduation-cap */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: #667eea;
}

/* Lists and small text */
#programs ul {
    padding-left: 18px;
    margin-bottom: 0.5rem;
}

#programs ul li {
    margin-bottom: 6px;
}

#programs small.text-muted {
    color: #58607a !important;
    opacity: 1 !important;
    visibility: visible !important;
}

/* Grid alignment */
#programs .row.g-4 > [class*="col-"] {
    display: flex;
}

#programs .card.h-100 {
    width: 100%;
}

/* CTA */
#programs .btn-outline-primary {
    border-color: #667eea;
    color: #667eea;
}

#programs .btn-outline-primary:hover {
    background: #667eea;
    color: #fff;
}

/* Responsive tweaks */
@media (max-width: 768px) {
    #programs h2 {
        font-size: 1.6rem;
    }

    #programs .card-body {
        padding: 18px;
    }
}