<style>
/* Force all radio/checkbox lists to be horizontal */
ul.inputs-list.multi-container {
  display: flex !important;
  flex-direction: row !important;
  gap: 24px !important;
  padding-left: 5px !important;
  margin: 0 0 5px !important;
  width: 100% !important;
}

/* Override the li styling that forces vertical stacking */
ul.inputs-list.multi-container > li.hs-form-radio {
  display: flex !important;
  align-items: center !important;
  width: auto !important;
  padding: 0 !important;
  margin: 0 !important;
}
</style>

<style>
/* Change the color of the radio button when selected */
.hs-form-radio input[type="radio"]:checked {
    accent-color: #005079; /* e.g., #ff0000 for red */
}