/* Feedback Section */
#feedback {
  padding: 40px 30px;
  margin: 40px auto;
  max-width: 1000px;
  width: 100%;
  text-align: left;
  background-color: var(--bg-dark);
  border: 5px solid var(--primary-color);
  border-radius: 10px;
  box-shadow: 0 4px 8px var(--shadow-subtle);
}

#feedback h2 {
  font-size: 38px;
  margin-bottom: 20px;
  color: var(--primary-color);
  text-align: center;
}

.feedback-form {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  width: 100%;
  max-width: 600px;
}

.feedback-form .form-group {
  width: 100%;
  margin-bottom: 20px;
}

.feedback-form label {
  display: block;
  font-weight: bold;
  margin-bottom: 5px;
  color: var(--primary-color);
}

.feedback-form input,
.feedback-form textarea {
  width: 100%;
  padding: 15px;
  border: 2px solid var(--primary-color);
  border-radius: 5px;
  font-size: 18px;
  background-color: var(--bg-darkest);
  color: var(--text-white);
  box-sizing: border-box;
}

.feedback-form textarea {
  height: 150px;
  resize: vertical;
}

