.bilin-courses{

    padding:120px 0;

    background:#ffffff;

}

.courses-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:35px;

}

.course-card{

    background:#fff;

    border-radius:22px;

    overflow:hidden;

    box-shadow:0 15px 40px rgba(0,0,0,.08);

    transition:.35s;

}

.course-card:hover{

    transform:translateY(-8px);

}

.course-image{

    height:190px;

    background:#0C8DB3;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:70px;

}

.course-content{

    padding:30px;

}

.course-content h3{

    margin-bottom:15px;

    color:#0C8DB3;

}

.course-content p{

    color:#666;

    line-height:2;

    margin-bottom:25px;

}

.course-btn{

    display:inline-block;

    padding:12px 28px;

    background:#F59E0B;

    color:#fff;

    text-decoration:none;

    border-radius:10px;

    transition:.3s;

}

.course-btn:hover{

    background:#D97706;

}

@media(max-width:992px){

.courses-grid{

grid-template-columns:1fr;

}

}