
.program-card {
        background: rgba(255, 255, 255, 0.05);
        border-radius: 16px;
        overflow: hidden;
        transition: all 0.3s;
        border: 1px solid rgba(249, 199, 79, 0.15);
        height: 100%;
    }
.program-card:hover {
        transform: translateY(-5px);
        border-color: rgba(249, 199, 79, 0.4);
    }
.program-image {
        height: 200px;
        overflow: hidden;
    }
.program-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.3s;
    }
.program-card:hover .program-image img {
        transform: scale(1.05);
    }
.program-content {
        padding: 20px;
    }
.program-tag {
        display: inline-block;
        background: rgba(249, 199, 79, 0.2);
        color: #f9c74f;
        padding: 4px 12px;
        border-radius: 20px;
        font-size: 11px;
        font-weight: 600;
        margin-bottom: 12px;
    }
.program-title {
        font-size: 1.2rem;
        font-weight: 700;
        color: white;
        margin-bottom: 10px;
    }
.program-description {
        color: #c4c4e0;
        font-size: 0.85rem;
        line-height: 1.5;
        margin-bottom: 15px;
    }
.program-btn {
        color: #f9c74f;
        text-decoration: none;
        font-weight: 600;
        font-size: 0.85rem;
        display: inline-flex;
        align-items: center;
        gap: 5px;
    }
.program-btn:hover {
        text-decoration: underline;
    }