.ltu {
    display: flex;
    gap: 2%;
}

.ltu>div {
    width: 32%;
    box-shadow: 0 2px 5px -1px #ddd;
    border-radius: 15px;
    padding: 1.5rem;
    border: 1px solid #eee;
}

.ltu>div img {
    width: 75px;
}
.sec2{
    background: #e8f0fe;
}
.sec2 .ltu>div{
    background: #fff;
}
.terms {
    background: #fff;
    padding: 2rem;
    border-radius: 15px;
    max-width: 100% !important;
}

@media(max-width:768px) {
    .terms{
        padding: 1rem;
    }
    .ltu {
        flex-wrap: wrap;
    }
    .ltu>div {
        width: 100%;
        margin-bottom: 1.5rem;
    }
    .ltu>div:last-child{
        margin-bottom: 0 !important;
    }
}