*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:Arial,sans-serif;
}

body{
background:#f5f7fb;
}

.container{
width:90%;
max-width:1200px;
margin:auto;
}

.reviews-page{
padding:70px 0;
}

.reviews-page h1{
font-size:42px;
margin-bottom:10px;
color:#0F172A;
}

.reviews-page p{
color:#666;
margin-bottom:35px;
}

.review-controls{
display:flex;
gap:20px;
margin-bottom:40px;
flex-wrap:wrap;
}

.review-controls input,
.review-controls select{

padding:14px 18px;
border:1px solid #ddd;
border-radius:10px;
font-size:16px;
outline:none;

}

.review-controls input{

flex:1;

}

#reviewsContainer{

display:grid;
grid-template-columns:repeat(auto-fit,minmax(350px,1fr));
gap:25px;

}

.review-card{

background:#fff;
padding:25px;
border-radius:18px;
box-shadow:0 10px 25px rgba(0,0,0,.08);

}

.review-card .stars{

font-size:20px;
margin-bottom:15px;

}

.review-card p{

line-height:1.7;

}

.client{

display:flex;
align-items:center;
gap:15px;
margin-top:25px;

}

.avatar{

width:60px;
height:60px;
border-radius:50%;
background:#0F766E;
color:#fff;
display:flex;
align-items:center;
justify-content:center;
font-size:26px;
font-weight:bold;

}

.verified-badge{

display:inline-flex;
align-items:center;
gap:5px;
margin-left:10px;
padding:3px 10px;
background:#DCFCE7;
color:#15803D;
border-radius:20px;
font-size:12px;

}

.review-date{

font-size:13px;
color:#777;
margin-top:6px;

}