body{
background:#f5f7fb;
font-family:Poppins,sans-serif;
color:#1f2937;
}

.programs-hero{
padding:120px 20px;
background:linear-gradient(135deg,#0d2343,#15376b);
color:white;
text-align:center;
}

.programs-hero h1{
font-size:3rem;
margin-bottom:20px;
}

.programs-hero p{
max-width:800px;
margin:auto;
line-height:1.8;
}

.programs-container{
max-width:1300px;
margin:auto;
padding:80px 20px;
display:grid;
gap:35px;
}

.program-card{
background:white;
padding:35px;
border-radius:25px;
box-shadow:0 15px 40px rgba(0,0,0,.08);
transition:.3s;
}

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

.program-card h2{
color:#10284f;
margin-bottom:20px;
}

.program-card h3{
margin-top:20px;
margin-bottom:10px;
}

.program-card ul{
padding-left:0;
list-style:none;
line-height:2;
}

.duration{
margin-top:25px;
font-weight:600;
color:#10284f;
}

.why-choose{
padding:80px 20px;
text-align:center;
}

.features-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:20px;
max-width:1200px;
margin:auto;
margin-top:40px;
}

.feature-box{
background:white;
padding:25px;
border-radius:20px;
box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.cta-section{
padding:100px 20px;
text-align:center;
background:#10284f;
color:white;
}

.cta-btn{
display:inline-block;
margin-top:25px;
padding:15px 35px;
background:white;
color:#10284f;
text-decoration:none;
border-radius:12px;
font-weight:600;
}