/* Program Detail Pages */
.program-hero {
    background: linear-gradient(135deg, #4dc9ff 0%, #9d4dff 100%);
    color: white;
    padding: 60px 0 40px;
    text-align: center;
}

.program-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.program-age {
    font-size: 1.2rem;
    font-weight: 600;
    background: rgba(255, 255, 255, 0.2);
    display: inline-block;
    padding: 5px 20px;
    border-radius: 20px;
}

.program-content {
    padding: 60px 0;
    background: #f8f9fa;
}

.program-content h2 {
    color: #9d4dff;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #e0e0e0;
}

.program-content h3 {
    color: #4dc9ff;
    margin: 25px 0 15px;
}

.program-content ul {
    margin-left: 20px;
    margin-bottom: 20px;
}

.program-content li {
    margin-bottom: 8px;
}

.program-sidebar {
    background: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.program-sidebar img {
    border-radius: 10px;
    margin-bottom: 25px;
}

.sidebar-info h4 {
    color: #9d4dff;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #e0e0e0;
}

.btn-primary {
    background: #9d4dff;
    border-color: #9d4dff;
    padding: 10px 25px;
    margin-right: 10px;
}

.btn-primary:hover {
    background: #8933ff;
    border-color: #8933ff;
}

.btn-secondary {
    background: #4dc9ff;
    border-color: #4dc9ff;
    padding: 10px 25px;
}

.btn-secondary:hover {
    background: #33bfff;
    border-color: #33bfff;
}

/* Responsive */
@media (max-width: 768px) {
    .program-hero {
        padding: 40px 0 30px;
    }
    
    .program-hero h1 {
        font-size: 2rem;
    }
    
    .program-content {
        padding: 40px 0;
    }
    
    .btn-primary, .btn-secondary {
        display: block;
        margin-bottom: 10px;
        width: 100%;
    }
}