        /* Acceptance checkbox styling */
.acceptance-container .wpcf7-acceptance {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  text-align: center;
  justify-content: center;
  margin-bottom: 15px;
}

.acceptance-container .wpcf7-acceptance input[type="checkbox"] {
  width: 18px !important;
  height: 18px !important;
  min-width: 18px;
  min-height: 18px;
  margin-top: 3px;
  accent-color: #2a9d8f;
  cursor: pointer;
  -webkit-appearance: checkbox !important;
  -moz-appearance: checkbox !important;
  appearance: checkbox !important;
}

.acceptance-container .wpcf7-acceptance .wpcf7-list-item-label {
  font-size: 12px;
  color: #888;
  line-height: 1.5;
  text-align: center;
}

.acceptance-field label {
  font-size: 12px;
  color: #888;
  text-align: center;
  display: block;
}

/* Submit button layout fix */
.submit-flex {
  justify-content: center;
  text-align: center;
}

.submit-flex .columns {
  text-align: center;
}

/* Ensure acceptance comes before submit visually */
.acceptance-container {
  order: 1;
}

.submit-flex {
  order: 2;
}      