please visit handreps.net to make an order,
Product Reviews
body {
font-family: Arial, sans-serif;
}
.review-section {
max-width: 600px;
margin: 0 auto;
padding: 20px;
}
.review {
display: flex;
align-items: flex-start;
margin-bottom: 20px;
}
.profile-pic {
width: 50px;
height: 50px;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-size: 24px;
color: #fff;
margin-right: 15px;
}
.review-content {
flex: 1;
}
.review-rating {
color: #FFD700;
}
.review-text {
margin: 5px 0;
}
.review-name {
font-weight: bold;
}
.review-button {
background-color: #007bff;
color: white;
padding: 10px 20px;
border: none;
border-radius: 5px;
cursor: pointer;
text-align: center;
display: inline-block;
text-decoration: none;
}
.review-button:hover {
background-color: #0056b3;
}
function leaveReview(event) {
event.preventDefault();
alert('Please make an order to leave a review.');
}