.programs-section {
    background: #141414;
    padding: 7rem 4rem;
}

.programs-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.programs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 4rem;
}

.prog-card {
    background: rgba(250, 250, 250, 0.03);
    border: 1px solid rgba(250, 250, 250, 0.07);
    padding: 2.5rem 2rem;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.prog-card:hover {
    border-color: rgba(201, 168, 76, 0.3);
    background: rgba(201, 168, 76, 0.04);
    transform: translateY(-4px);
}

.prog-num {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 0.75rem;
}

.prog-icon {
    font-size: 2rem;
    margin-bottom: 0.75rem;
}

.prog-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    margin-bottom: 0.75rem;
}

.prog-text {
    color: rgba(250, 250, 250, 0.65);
    line-height: 1.8;
}

@media (max-width: 600px) {
    .programs-grid {
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
    }
    .prog-card {
        padding: 1.8rem 1.5rem !important;
    }
}