.programs-section {
    max-width: 1200px;
    margin: 4rem auto;
    padding: 2rem;
}

.program-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

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

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

.program-image {
    width: 100%;
    height: auto;
    overflow: hidden;
}

.program-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.program-content {
    padding: 2rem;
}

.program-title {
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 1rem;
}

.program-age {
    color: #ff6b6b;
    font-weight: bold;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.program-description {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.program-features {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
}

.program-features li {
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
}

.program-features li::before {
    content: "•";
    color: #ff6b6b;
    position: absolute;
    left: 0;
    font-weight: bold;
}

.admission-button {
    display: inline-block;
    padding: 1rem 2rem;
    background: #ff6b6b;
    color: white;
    text-decoration: none;
    border-radius: 30px;
    transition: transform 0.3s, box-shadow 0.3s;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.admission-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255,107,107,0.4);
}

.enrollment-banner {
    background: linear-gradient(135deg, #fb9c7d 0%, #fad0c4 100%);
    padding: 3rem 2rem;
    text-align: center;
    color: white;
}

.banner-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.banner-text {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 768px) {
    .program-grid {
        grid-template-columns: 1fr;
    }
}