.item {
    position: relative;
    gap: 30px;
    background-color: #fff;
    border: 4px solid #0070C0;
    padding: 30px 20px;
    text-align: center;
    min-width: 300px;
}

.item::before {
    content: "";
    position: absolute;
    top: 14px;
    left: 14px;
    width: 100%;
    height: 100%;
    z-index: -2;
    background-color: #fff;
    border: 4px solid #0070C0;
}

.service-text {
    max-width: 300px;
}

.service-list {
    margin-top: 30px;
    margin-bottom: 50px;
}

.flex {
    display: flex;
    gap: 40px;
    justify-content: center;
}

.item img {
    max-width: 140px;
}

.item a{
        background-color: #0070C0;
    border-radius: 30px;
    padding: 10px 30px;
    text-decoration: none;
    color: white;
}
.item a:hover{
     background-color: #00375E; 
}
.service p{
    font-size: 14px;

}
.service{
    max-width: 1000px;
}

.service h3{
    font-size: 16px;

}
@media screen and (max-width:700px) {
    .flex {
 display: block;
}
    .item {
     
        padding: 30px 50px;
        min-width: none;
        max-width: 400px;
        margin: 0 auto;
        margin-top: 40px;
    }
}