*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:Arial,sans-serif;
}

body{
background:#f6f7fb;
}

/* HERO */

.review-hero{

background:linear-gradient(135deg,#0056b3,#0099ff);

color:#fff;

padding:80px 20px;

text-align:center;

}

.review-hero h1{

font-size:45px;

margin-bottom:15px;

}

.review-hero p{

font-size:18px;

max-width:700px;

margin:auto;

line-height:1.7;

}

/* GOOGLE */

.google-review{

background:#fff;

margin:50px auto;

max-width:900px;

padding:50px 30px;

border-radius:15px;

box-shadow:0 10px 30px rgba(0,0,0,.08);

text-align:center;

}

.google-logo{

width:70px;

margin-bottom:15px;

}

.google-review h2{

color:#0056b3;

margin-bottom:15px;

}

.stars{

font-size:35px;

margin:20px 0;

}

.google-review h1{

font-size:55px;

color:#222;

margin-bottom:15px;

}

.google-review p{

color:#666;

margin-bottom:30px;

}

.review-buttons{

display:flex;

justify-content:center;

gap:20px;

flex-wrap:wrap;

}

.btn-review,

.btn-view{

padding:15px 35px;

border-radius:50px;

text-decoration:none;

font-weight:bold;

transition:.3s;

}

.btn-review{

background:#28a745;

color:#fff;

}

.btn-view{

background:#0056b3;

color:#fff;

}

.btn-review:hover,

.btn-view:hover{

transform:translateY(-3px);

}

/* ===========================
   WHY CHOOSE US
=========================== */

.trust-section{
    padding:50px 20px;
    text-align:center;
}

.trust-section h2{
    font-size:32px;
    color:#0056b3;
    margin-bottom:30px;
}

.trust-grid{
    max-width:1200px;
    margin:auto;
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
}

.trust-card{
    background:#fff;
    border-radius:12px;
    padding:20px 15px;
    box-shadow:0 5px 15px rgba(0,0,0,.08);
    transition:.3s;
    min-height:220px;
}

.trust-card:hover{
    transform:translateY(-5px);
}

.trust-card i{
    font-size:32px;
    color:#f4b400;
    margin-bottom:10px;
}

.trust-card h3{
    font-size:22px;
    color:#0056b3;
    margin:10px 0;
    line-height:1.3;
}

.trust-card p{
    font-size:15px;
    color:#555;
    line-height:1.5;
}