body{
    background-color: #5a8cc6;
}
.programs-section{
    max-width:1200px;
    margin:70px auto;
    padding:0 20px;
}
.section-header{
    text-align:center;
    margin-bottom:60px;
}
.section-header h1{
    font-size:46px;
    margin:0 0 18px;
    color:#02275c;
}
.section-header p{
    max-width:700px;
    margin:auto;
    font-size:17px;
    line-height:1.7;
    color:#4e6482;
}
.program-category{
    background:#02275c;
    border:1px solid rgba(255,255,255,0.5);
    border-radius:28px;
    padding:35px;
    margin-bottom:35px;
    box-shadow:0 10px 30px rgba(0,0,0,0.08);
    display:grid;
    grid-template-columns:320px 1fr;
    gap:35px;
    align-items:center;
    transition:.3s ease;
}
.program-category:hover{
    transform:translateY(-4px);
    box-shadow:
        0 18px 40px rgba(0,0,0,0.08);
}
.category-info{
    display:flex;
    align-items:flex-start;
    gap:18px;
}
.category-icon{
    width:72px;
    height:72px;
    border-radius:22px;
    background:linear-gradient(135deg,#4a90e2,#81d4fa);
    display:flex;
    align-items:center;
    justify-content:center;
    color:white;
    font-size:28px;
    flex-shrink:0;
    box-shadow:0 10px 25px rgba(74,144,226,0.25);
}
.category-info h2{
    margin:0 0 10px;
    font-size:28px;
    color:white;
}
.category-info p{
    margin:0;
    line-height:1.6;
    color:#60738d;
}
.program-links{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:18px;
}
.program-card{
    position:relative;
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:22px 24px;
    text-decoration:none;
    color:#02275c;
    border-radius:20px;
    background:#fff;
    transition:.3s ease;
    overflow:hidden;
}
.program-card::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:5px;
    height:100%;
    background:linear-gradient(#4a90e2,#81d4fa);
}
.program-card span{
    font-size:17px;
    font-weight:600;
}
.program-card i{
    color:#4a90e2;
    transition:.3s ease;
}
.program-card:hover{
    transform:translateY(-4px);
    border-color:#c8ddf7;
    box-shadow: 0 14px 30px rgba(74,144,226,0.12);
}
.program-card:hover i{
    transform:translateX(5px);
}
.back-button-wrapper{
    max-width:1200px;
    margin:0 auto 70px;
    padding:0 20px;
}
.btn-link{
    display:inline-block;
    padding:10px 20px;
    background-color:#02275c;
    color:#ffffff;
    text-decoration:none;
    border-radius:12px;
    font-weight:bold;
    transition:background-color .2s ease;
}
.btn-link:hover {
    transform:translateY(-5px);
    box-shadow:0 25px 50px rgba(0,0,0,0.7);
}
@media(max-width:900px){
    .program-category{
        grid-template-columns:1fr;
        gap:30px;
    }
    .section-header h1{
        font-size:36px;
    }
}
@media(max-width:600px){
    .program-category{
        padding:25px;
        border-radius:22px;
    }
    .category-icon{
        width:60px;
        height:60px;
        font-size:22px;
    }
    .category-info h2{
        font-size:24px;
    }
    .program-links{
        grid-template-columns:1fr;
    }
    .program-card{
        padding:18px 20px;
    }
}