.program-card {
    width: 100%;
    position: relative;
    color: white;
    border: none;
    height: 220px;
    border-radius: 1rem;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
}

.program-card:hover {
    transform: scale(1.03);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
}

.program-title {
    font-size: 1.5rem;
    font-weight: bold;
    text-align: center;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
}

.program-card:active {
    transform: scale(1.03);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
}

a.card-link {
    text-decoration: none;
    display: block;
}

@media (max-width: 767px) {
    .program-card {
        padding: 1rem;
        height: 160px;
        width: 100%;
        max-width: 100%;
    }

    .program-title {
        font-size: 1.1rem;
    }

    .container-fluid {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .container {
        padding-left: 0;
        padding-right: 0;
    }
}
