.section {
background: #ffffff;
padding: 30px;
margin: 25px 0;
border-radius: 12px;
box-shadow: 0 3px 12px rgba(0,0,0,0.08);
}
.level-title {
font-size: 2.6rem;
font-weight: 700;
text-align: center;
margin-bottom: 25px;
color: #1f57b8;
}
.card-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 20px;
margin: 20px 0;
}
.card-course {
background: #edf3ff;
padding: 25px;
border-radius: 10px;
transition: 0.25s ease;
border-left: 5px solid #1f57b8;
}
.card-course:hover {
transform: translateY(-5px);
background: #dbe7ff;
}
.card-course h3 {
margin: 0 0 10px;
}
.resources-list li {
margin: 8px 0;
}