

.vp-benefits{
    display:flex;
    flex-direction:column;
    gap:22px;
}

.vp-benefit{
    display:flex;
    align-items:flex-start;
    gap:18px;
}

.vp-icon{
    width:42px;
    height:42px;
    flex-shrink:0;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:12px;
    background:#443682;
    color:#fff;
    font-size:18px;
    font-weight:700;
    box-shadow:0 10px 24px rgba(68,54,130,.22);
}

.vp-text strong{
    display:block;
    font-family:'Kanit',sans-serif;
    font-size:20px;
    font-weight:600;
    color:#201A3C;
    line-height:1.2;
    margin-bottom:5px;
}

.vp-text span{
    display:block;
    font-family:'Roboto',sans-serif;
    color:#6B6680;
    font-size:16px;
    line-height:1.65;
}

.vp-highlight{
    margin-top:40px;
    padding:22px 28px;
    border-left:5px solid #443682;
    background:#F4F2FB;
    border-radius:14px;
    font-family:'Kanit',sans-serif;
    font-size:24px;
    font-weight:600;
    color:#201A3C;
    line-height:1.35;
}

.vp-highlight span{
    display:block;
    color:#443682;
}

@media (max-width:767px){

    .vp-benefit{
        gap:14px;
    }

    .vp-icon{
        width:38px;
        height:38px;
        font-size:16px;
    }

    .vp-text strong{
        font-size:18px;
    }

    .vp-text span{
        font-size:15px;
    }

    .vp-highlight{
        font-size:21px;
        padding:18px 20px;
    }

}

