.why-us{
    padding:100px 0;
    background:#fff;
}

.why-us .container{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:center;
}

.why-image img{
    width:100%;
    border-radius:20px;
}

.why-content h2{
    font-size:48px;
    margin-bottom:20px;
    color:#0F172A;
}

.why-content p{
    color:#64748B;
    line-height:1.8;
}

.why-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:20px;
    margin:35px 0;
}

.why-box{
    display:flex;
    gap:15px;
    padding:20px;
    background:#F8FAFC;
    border-radius:15px;
    transition:.3s;
}

.why-box:hover{
    transform:translateY(-5px);
    box-shadow:0 10px 25px rgba(0,0,0,.1);
}

.why-icon{
    width:55px;
    height:55px;
    background:#C9A227;
    color:#fff;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    flex-shrink:0;
}

@media(max-width:991px){
    .why-us .container{
        grid-template-columns:1fr;
    }

    .why-grid{
        grid-template-columns:1fr;
    }
}