.marangy-why-us{
    padding:100px 0;
    background:#f8f8f8;
}

.section-title{
    text-align:center;
    margin-bottom:60px;
}

.why-us-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:30px;
}

.why-card{
    background:#fff;
    padding:35px;
    border-radius:15px;
    text-align:center;
    box-shadow:0 8px 25px rgba(0,0,0,.08);
    transition:.3s;
}

.why-card:hover{
    transform:translateY(-8px);
}

.why-icon{
    font-size:45px;
    color:#d4af37;
    margin-bottom:20px;
}

.why-card h3{
    margin-bottom:15px;
}

.why-card p{
    color:#666;
    line-height:1.7;
}