  /* Form container */
  .hero-form {
    background: #ffffff;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  }

  /* Inputs, selects, textarea */
  input,
  select,
  textarea {
    width: 100%;
    padding: 16px;
    border-radius: 12px;
    border: 1px solid #d0d0d0;
    font-size: 1rem;
    background: #ffffff;
    color: #222;
    outline: none;
  }

  input::placeholder,
  textarea::placeholder {
    color: #999;
  }

  /* Focus state */
  input:focus,
  select:focus,
  textarea:focus {
    border-color: #6B48EE;
    box-shadow: 0 0 0 2px rgba(107,72,238,0.15);
  }

  /* Error state (your JS already uses red) */
  input[style*="red"],
  select[style*="red"],
  textarea[style*="red"] {
    border-color: red !important;
  }

  /* Submit button – NORMAL */
  button[type="submit"] {
    background: #6B48EE;
    border: none;
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
    border-radius: 14px;
    padding: 16px;
    cursor: pointer;
  }

  button[type="submit"]:hover {
    background: #593ad9;
  }
