.page-banner{
    background:#28a745;
    color:#fff;
    text-align:center;
    padding:120px 20px;
}

.page-banner h1{
    font-size:50px;
    margin-bottom:10px;
}

.training-section{
    padding:80px 8%;
}

.training-image{
    text-align:center;
    margin-bottom:40px;
}

.training-image img{
    width:100%;
    max-width:900px;
    height:450px;
    object-fit:cover;
    border-radius:15px;
}

.training-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
    margin-top:40px;
}

.training-card{
    background:#fff;
    padding:30px;
    border-radius:15px;
    box-shadow:0 3px 15px rgba(0,0,0,.1);
    text-align:center;
}

.training-card h3{
    color:#28a745;
    margin-bottom:15px;
}

.training-card p{
    line-height:1.8;
}

@media(max-width:768px){

    .training-grid{
        grid-template-columns:1fr;
    }

    .page-banner h1{
        font-size:32px;
    }

    .training-image img{
        height:250px;
    }
}