.ww-why-visit{
    padding:90px 0;
    background:#f8fafc;
}
 
.ww-why-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:28px;
    margin-top:45px;
}
 
.ww-why-card{
    background:#fff;
    border-radius:22px;
    padding:30px;
    box-shadow:0 12px 35px rgba(0,0,0,.08);
    transition:.35s;
    border:1px solid #edf2f7;
}
 
.ww-why-card:hover{
        transform:translateY(-10px);
    box-shadow:0 30px 70px rgba(15,23,42,.14);
    border-color:#2563eb;
}

.ww-why-card::before{
    content:"";
    display:block;
    width:70px;
    height:4px;
    border-radius:999px;
    background:linear-gradient(90deg,#2563eb,#38bdf8);
    margin-bottom:24px;
}
 
.ww-why-icon{
    width:64px;
    height:64px;
    border-radius:18px;
    background:#2563eb;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:30px;
    margin-bottom:22px;
}
 
.ww-why-card h3{
    font-size:24px;
    margin-bottom:15px;
    color:#0f172a;
}
 
.ww-why-card p{
    color:#64748b;
    line-height:1.8;
}