.review-section {
  max-width: 800px;
  margin: 40px auto;
  padding: 20px;
}

.review-form {
  display: flex;
  flex-direction: column;
  margin-bottom: 30px;
}

.review-form input,
.review-form textarea {
  margin: 10px 0;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 6px;
}

.review-form button {
  padding: 10px;
  border: none;
  background: #4CAF50;
  color: white;
  border-radius: 6px;
  cursor: pointer;
}

.review-form button:hover {
  background: #45a049;
}

.stars label {
  margin-right: 8px;
  cursor: pointer;
}

.success { color: green; }
.error { color: red; }

.reviews-list {
  display: grid;
  gap: 20px;
}

.review-card {
  padding: 15px;
  border-radius: 10px;
  background: #f8f8f8;
  box-shadow: 0px 2px 6px rgba(0,0,0,0.1);
}

.review-card h3 {
  margin: 0 0 8px 0;
}

.review-card .stars span {
  font-size: 18px;
  color: gold;
}
