<style>
body{
    margin:0;
    padding:0;
    background:#f4f6fb;
    font-family:Arial, sans-serif;
}
.mech-page{
    width:95%;
    max-width:1400px;
    margin:auto;
    background:#fff;
    border-radius:25px;
    padding:50px;
    box-shadow:0 10px 40px rgba(0,0,0,0.08);
    border:1px solid #dfe7f2;
}
.mech-title{
    font-size:23px;
    font-weight:800;
    color:#1f4e85;
    margin-bottom:35px;
    position:relative;
    padding-bottom:15px;
}
.mech-title::after{
    content:'';
    position:absolute;
    left:0;
    bottom:0;
    width:120px;
    height:5px;
    background:#1f4e85;
    border-radius:10px;
}
.mech-content p{
    font-size:14px;
    line-height:2;
    color:#444;
    text-align:justify;
    margin-bottom:20px;
}
.course-title{
    font-size:23px;
    font-weight:700;
    color:#1f4e85;
    margin-top:40px;
    margin-bottom:20px;
}
.course-list{
    padding-left:25px;
}
.course-list li{
    font-size:14px;
    line-height:1.8;
    margin-bottom:12px;
    color:#333;
}
.image-row{
    display:flex;
    gap:30px;
    justify-content:center;
    margin:45px 0;
    flex-wrap:wrap;
}
.image-row img{
    width:420px;
    height:280px;
    object-fit:cover;
    border-radius:20px;
    cursor:pointer;
    transition:0.4s;
    box-shadow:0 8px 25px rgba(0,0,0,0.15);
}
.image-row img:hover{
    transform:translateY(-8px) scale(1.02);
}
.bottom-box{
    display:flex;
    overflow:hidden;
    border-radius:20px;
    margin-top:40px;
    box-shadow:0 8px 30px rgba(0,0,0,0.08);
    flex-wrap:wrap;
}
.left-box{
    width:35%;
    background:linear-gradient(135deg,#1f4e85,#3475bb);
    padding:35px 25px;
    color:#fff;
    box-sizing:border-box;
}
.staff{
    display:flex;
    align-items:center;
    margin-bottom:30px;
}
.staff:last-child{
    margin-bottom:0;
}
.staff img{
    width:95px;
    height:95px;
    border-radius:50%;
    object-fit:cover;
    border:4px solid rgba(255,255,255,0.4);
    margin-right:18px;
}
.staff h4{
    margin:0;
    font-size:17px;
    font-weight:700;
}
.staff p{
    margin-top:8px;
    font-size:12px;
    line-height:1.6;
}
.right-box{
    width:65%;
    background:#fff;
    padding:35px 40px;
    box-sizing:border-box;
}
.right-box h3{
    margin-top:0;
    font-size:23px;
    color:#1f4e85;
    margin-bottom:25px;
    position:relative;
    padding-bottom:12px;
}
.right-box h3::after{
    content:'';
    position:absolute;
    left:0;
    bottom:0;
    width:90px;
    height:4px;
    background:#1f4e85;
    border-radius:10px;
}
.feature-list{
    padding-left:25px;
}
.feature-list li{
    font-size:14px;
    line-height:1.8;
    margin-bottom:14px;
    color:#444;
}
@media(max-width:991px){
    .mech-page{
        padding:30px 20px;
    }
    .left-box,
    .right-box{
        width:100%;
    }
    .image-row img{
        width:100%;
        height:auto;
    }
    .mech-title{
        font-size:32px;
    }
}
@media(max-width:600px){
    .mech-title{
        font-size:28px;
    }
    .course-title{
        font-size:24px;
    }
    .mech-content p,
    .course-list li,
    .feature-list li{
        font-size:16px;
    }
    .staff{
        flex-direction:column;
        text-align:center;
    }
    .staff img{
        margin-right:
        margin-bottom:15px;
    }
}
</style>