.marangy-contact-section{
    padding:100px 0;
    background:#f8f8f8;
}

.section-title{
    text-align:center;
    margin-bottom:70px;
}

.section-title span{
    background:#d4af37;
    color:#fff;
    padding:8px 20px;
    border-radius:30px;
    font-size:13px;
    letter-spacing:2px;
}

.section-title h2{
    margin-top:25px;
    font-size:48px;
    color:#222;
}

.section-title p{
    color:#666;
    max-width:700px;
    margin:20px auto 0;
    line-height:1.8;
}

.contact-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
    gap:35px;
}

.contact-card{
    background:#fff;
    padding:45px 35px;
    border-radius:15px;
    text-align:center;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.35s;
}

.contact-card:hover{
    transform:translateY(-8px);
}

.contact-icon{
    width:80px;
    height:80px;
    margin:auto;
    background:#d4af37;
    color:#fff;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:32px;
    margin-bottom:25px;
}

.contact-card h3{
    margin-bottom:15px;
    font-size:24px;
}

.contact-card p{
    color:#666;
    line-height:1.8;
}