/* ============================
   Why Choose StayByLake
============================ */

.why-us{
    padding:100px 0;
    background:#ffffff;
}

.section-title{
    text-align:center;
    max-width:700px;
    margin:0 auto 70px;
}

.section-title h2{
    font-size:48px;
    color:#111;
    font-family:'Playfair Display', serif;
    margin-bottom:20px;
}

.section-title p{
    color:#666;
    font-size:18px;
}

.why-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
    gap:30px;
}

.why-card{
    background:#fff;
    padding:40px 30px;
    border-radius:20px;
    text-align:center;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
    transition:.35s;
}

.why-card:hover{
    transform:translateY(-10px);
}

.icon{
    font-size:60px;
    margin-bottom:25px;
}

.why-card h3{
    color:#111;
    margin-bottom:15px;
}

.why-card p{
    color:#666;
    line-height:1.7;
}