/* Target the overall wrapper */
#neonForm {
  display: flex;
  flex-direction: column;
}

/* Move the form (donation box) above */
#neonForm .form-section.donation-form {
  order: -1;  /* negative pushes it to the top */
}

/* Keep the intro/description below */
#neonForm .form-section.intro-text {
  order: 2;
}
