body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #f0f2f5;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.review-box {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    padding: 20px;
    width: 300px;
    max-width: 320px;
}

.review-header {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
}

.review-header img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 15px;
}

.review-header .name {
    font-weight: bold;
    color: #333;
}

.stars {
    margin-top: 4px;
    color: #ffc107;
    font-size: 16px;
}

.review-message {
    font-size: 14px;
    color: #555;
    line-height: 1.5;
    margin-top: 10px;
}