* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #f6f8fb;
}

.feedback-hero {
  margin-top: 75px;
  min-height: 38vh;
  background: linear-gradient(rgba(18, 53, 88, 0.85), rgba(18, 53, 88, 0.85)),
    url("./assets/about-header-pic.webp") center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  padding: 30px 20px;
}

.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 8px;
}

.hero-content p {
  font-size: 1.1rem;
}

.feedback-section {
  padding: 70px 20px;
}

.feedback-container {
  max-width: 900px;
  margin: 0 auto;
  background: #ffffff;
  border-radius: 16px;
  padding: 40px 28px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.feedback-container h2 {
  text-align: center;
  color: #123558;
  font-size: 2rem;
  margin-bottom: 8px;
}

.feedback-container p {
  text-align: center;
  color: #5a6d80;
  margin-bottom: 24px;
}

.feedback-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.feedback-row {
  display: flex;
  gap: 14px;
}

.feedback-row input,
.feedback-row select,
.feedback-row textarea {
  width: 100%;
  border: 1px solid #cfd9e2;
  border-radius: 10px;
  padding: 12px 14px;
  font-size: 1rem;
  outline: none;
}

.feedback-row input:focus,
.feedback-row select:focus,
.feedback-row textarea:focus {
  border-color: #123558;
}

.feedback-form button {
  align-self: center;
  background: #123558;
  color: #fff;
  border: none;
  border-radius: 999px;
  padding: 11px 28px;
  font-weight: 600;
  cursor: pointer;
}

@media (max-width: 767px) {
  .hero-content h1 {
    font-size: 2.1rem;
  }

  .feedback-container {
    padding: 28px 18px;
  }

  .feedback-container h2 {
    font-size: 1.6rem;
  }

  .feedback-row {
    flex-direction: column;
  }
}
