.thank-you {
  text-align: center;
  font-size: 1.2rem;
  color: #0a2e55;
}

.form-section {
  background: #f2f5f9;
  padding: 4rem 1rem;
}

.styled-form {
  background: #fff;
  max-width: 700px;
  margin: auto;
  padding: 2rem 2.5rem;
  border-radius: 1rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
}

.styled-form h2 {
  color: #002e5a;
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
  text-align: center;
}

.styled-form .intro {
  color: #555;
  font-size: 1rem;
  text-align: center;
  margin-bottom: 2rem;
}

.form-question {
  margin-bottom: 2rem;
}

.question-label {
  display: block;
  font-weight: 600;
  color: #002e5a;
  margin-bottom: 0.5rem;
}

.form-question label {
  display: block;
  margin-bottom: 0.4rem;
  padding-left: 1.5rem;
  position: relative;
  color: #333;
  cursor: pointer;
  transition: color 0.3s ease;
}

.form-question input[type="checkbox"] {
  position: absolute;
  left: 0;
  top: 2px;
  accent-color: #002e5a;
  transition: accent-color 0.3s ease;
  cursor: pointer;
}

.form-question input[type="checkbox"]:hover {
  accent-color: #d0b81c;
}


.btn-submit {
  display: block;
  margin: 2rem auto 0;
  padding: 0.75rem 2rem;
  background-color: #003b7c;
  color: white;
  font-weight: bold;
  border: none;
  border-radius: 0.5rem;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.btn-submit:hover {
  background-color: #d0b81c;
  color: #003b7c;
}

input[type="text"],
input[type="email"],
textarea {
  background-color: #f7f8f8; /* light grey */
  border: 1px solid #d1d5db; /* subtle border */
  padding: 0.5rem;
  border-radius: 6px;
  transition: box-shadow .15s ease;
}
