*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:Arial,Helvetica,sans-serif;

}

body{
background:#f4f7fb;
display:flex;
justify-content:center;
align-items:center;
min-height:100vh;
padding:30px;
}

.review-container{
width:100%;
max-width:700px;
}

.review-card{
background:#fff;
padding:40px;
border-radius:20px;
box-shadow:0 15px 35px rgba(0,0,0,.08);
}

.review-card h1{
font-size:36px;
color:#1f2937;
margin-bottom:10px;
}

.review-card p{
color:#6b7280;
margin-bottom:30px;
font-size:17px;
}

.form-group{
margin-bottom:25px;
}

.form-group label{
display:block;
font-weight:600;
margin-bottom:10px;
color:#374151;
}

.form-group select,
.form-group textarea{
width:100%;
padding:15px;
border:1px solid #d1d5db;
border-radius:12px;
font-size:16px;
outline:none;
transition:.3s;
}

.form-group select:focus,
.form-group textarea:focus{
border-color:#0f766e;
box-shadow:0 0 0 3px rgba(15,118,110,.15);
}

textarea{
resize:vertical;
min-height:180px;
}

button{
width:100%;
padding:16px;
background:#0f766e;
color:#fff;
border:none;
border-radius:12px;
font-size:18px;
font-weight:bold;
cursor:pointer;
transition:.3s;
}

button:hover{
background:#115e59;
transform:translateY(-2px);
}

@media(max-width:768px){

.review-card{
padding:25px;
}

.review-card h1{
font-size:28px;
}
.background{
    background-image: url('../images/review-bg.jpg');
}
}