/* ===============================
   Overview Section
=============================== */
 
.ww-overview{
    padding:90px 0;
    background:#fff;
}
 
.ww-overview-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:24px;
    margin-bottom:70px;
}
 
.ww-overview-card{
    background:#fff;
    padding:28px;
    border-radius:20px;
    border:1px solid #E5E7EB;
    box-shadow:0 15px 40px rgba(0,0,0,.06);
    transition:.35s ease;
}
 
.ww-overview-card:hover{
    transform:translateY(-8px);
    box-shadow:0 25px 60px rgba(0,0,0,.10);
}
 
.ww-overview-card span{
    font-size:34px;
    display:block;
    margin-bottom:18px;
}
 
.ww-overview-card strong{
    display:block;
    font-size:14px;
    text-transform:uppercase;
    letter-spacing:1px;
    color:#6B7280;
    margin-bottom:10px;
}
 
.ww-overview-card p{
    margin:0;
    font-size:20px;
    font-weight:700;
    color:#1F2937;
}
 
.ww-intro{
    max-width:860px;
    margin:0 auto;
    text-align:center;
}
 
.ww-intro h2{
    font-size:clamp(2rem,4vw,3rem);
    font-weight:800;
    margin-bottom:28px;
    color:#132238;
    position:relative;
}
 
.ww-intro h2::after{
    content:"";
    display:block;
    width:80px;
    height:4px;
    background:#2E8B57;
    margin:18px auto 0;
    border-radius:999px;
}
 
.ww-intro p{
    font-size:19px;
    line-height:1.9;
    color:#4B5563;
}