.programs {
    padding: 80px 20px;
    background: #f5f5f5;
}

.program-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.program-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.program-card:hover {
    transform: translateY(-10px);
}

.program-card h3 {
    color: #1565c0;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.program-card ul {
    list-style: none;
    margin-bottom: 20px;
}

.program-card li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
}

.program-card li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #4caf50;
    font-weight: bold;
}

.price {
    color: #f44336;
    font-size: 1.8rem;
    font-weight: bold;
    text-decoration: line-through;
    opacity: 0.6;
}

.discount-price {
    color: #4caf50;
    font-size: 2.2rem;
    font-weight: bold;
    margin: 10px 0;
}
