.reviews-section{

padding:80px 50px;

background:#F8FAFC;

text-align:center;

}



.reviews-grid{

display:grid;

grid-template-columns:
repeat(auto-fit,minmax(280px,1fr));

gap:25px;

}



.review-card{

background:white;

padding:25px;

border-radius:18px;

text-decoration:none;

color:#12394d;

box-shadow:
0 8px 25px rgba(18,57,77,.08);

transition:.3s;

text-align:right;

}



.review-card:hover{

transform:translateY(-5px);

}



.review-header{

display:flex;

align-items:center;

gap:15px;

}



.avatar{

width:45px;

height:45px;

border-radius:50%;

background:#4aad9f;

color:white;

display:flex;

align-items:center;

justify-content:center;

font-weight:bold;

}



.avatar img{

width:100%;

height:100%;

border-radius:50%;

object-fit:cover;

}



.stars{

color:#F4B400;

}



.review-card p{

line-height:1.8;

color:#406763;

}



.google-btn{

display:inline-block;

margin-top:40px;

background:#4aad9f;

color:white;

padding:15px 35px;

border-radius:12px;

text-decoration:none;

}