.service__inner{
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    width: 100%;
    justify-content: center;
    align-items: stretch;
    margin-top: 80px;
}

.service__item{
    max-width: calc((1040px - 24px)/2);
    padding: 16px;
    display: flex;
    flex-direction: column;
}

.service__imgBox{
    height: 317px;
    display: block;
}

.service__img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius:10px ;
}

.service__item .titlearea h3{
 font-size: var(--fsize22);
}

.service__text{
    margin-top: 16px;
    padding: 8px;
    background-color:#e6f2ff;
    border-radius: 10px;
    border: 2px solid var(--blue);
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
}

.service__text .light__blue-btn{
    margin-top:16px ;
}

@media screen and (max-width:768px){
    .service__inner{margin-top: 40px;}
}