<style>
/* Targeting the specific checkbox list for states */
.hs-form-field[aria-label="Please mark all the states where your company operates in:"] ul.inputs-list {
    column-count: 2; /* Creates two columns */
    column-gap: 20px; /* Adjusts spacing between columns */
    list-style: none; /* Removes default list styling */
    padding: 0;
}

.hs-form-field[aria-label="Please mark all the states where your company operates in:"] li.hs-form-checkbox {
    break-inside: avoid-column; /* Prevents checkboxes from splitting between columns */
    padding: 5px 0; /* Adds spacing between checkboxes */
}

/* Ensures proper display on smaller screens */
@media (max-width: 600px) {
    .hs-form-field[aria-label="Please mark all the states where your company operates in:"] ul.inputs-list {
        column-count: 1; /* Stacks checkboxes in one column on small screens */
    }
}
</style>
/* @import url('http://example.com/example_style.css'); */

/***********************************************/
/* CSS @imports must be at the top of the file */
/* Add them above this section                 */
/***********************************************/

/*****************************************/
/* Start your style declarations here    */
/*****************************************/