/* ======================================
   WHY CHOOSE MARQITO
====================================== */

.why-section{
    padding:100px 0;
    background:#ffffff;
}

.why-section .section-tag{
    display:block;
    text-align:center;
    color:#D4AF37;
    font-size:14px;
    font-weight:700;
    letter-spacing:2px;
    text-transform:uppercase;
    margin-bottom:15px;
}

.why-section h2{
    text-align:center;
    font-size:48px;
    color:#0A2540;
    margin-bottom:60px;
}

.why-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:30px;
}

.why-card{
    background:#fff;
    padding:35px;
    border-radius:16px;
    box-shadow:0 15px 35px rgba(0,0,0,.08);
    transition:all .3s ease;
}

.why-card:hover{
    transform:translateY(-8px);
    box-shadow:0 25px 45px rgba(0,0,0,.12);
}

.why-card h3{
    color:#0A2540;
    margin-bottom:15px;
    font-size:24px;
}

.why-card p{
    color:#666;
    line-height:1.8;
}

@media(max-width:768px){

.why-grid{
    grid-template-columns:1fr;
}

.why-section h2{
    font-size:34px;
}

}