/* Minimal tweaks to make the booking form clean and responsive, relying on theme styles */
.wpcf7 form h3 {
  margin-top: 0.5rem;
  margin-bottom: 0.25rem;
}
.wpcf7 form p {
  margin: 0 0 0.75rem 0;
}
.wpcf7 form input[type="text"],
.wpcf7 form input[type="email"],
.wpcf7 form input[type="tel"],
.wpcf7 form input[type="date"],
.wpcf7 form textarea,
.wpcf7 form select {
  width: 100%;
}
.wpcf7 form input[type="submit"] {
  font-weight: 700;
  text-transform: uppercase;
}
@media (min-width: 768px) {
  .wpcf7 form .grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }
}

/* eduma-bookings.css - additions for checkbox group layout */
.wpcf7 form .training-course-group {
  display: block;
}
.wpcf7 form .training-course-group label {
  display: block;
  margin: 6px 0;
  line-height: 1.4;
}
.wpcf7 form .training-course-group input[type="checkbox"] {
  margin-right: 8px;
}