.feedback-section {
  padding: 60px 20px;
  display: flex;
  justify-content: center;
}

.feedback-card {
  width: 100%;
  max-width: 420px;
  background: var(--surface);
  padding: 24px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.feedback-card h1,
.feedback-card h2 {
  text-align: center;
  margin-bottom: 20px;
}

.feedback-card label {
  font-size: 14px;
  margin-top: 12px;
  display: block;
  font-weight: 500;
}

.feedback-card select,
.feedback-card textarea {
  width: 100%;
  padding: 10px;
  border-radius: 10px;
  border: 1px solid #ddd;
  margin-top: 6px;
}

.feedback-card textarea {
  height: 120px;
  resize: none;
}

.stars {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin: 10px 0;
}

.stars span {
  font-size: 28px;
  cursor: pointer;
  color: #ccc;
}

.stars span.active {
  color: #FFC107;
}

#charCount {
  font-size: 12px;
  color: var(--muted);
}

.feedback-card button {
  width: 100%;
  margin-top: 16px;
}
