/* Target the order comments section heading on the checkout page */
.formContainer:has(#order_comments) h2 {
    visibility: hidden;
    position: relative;
    margin-bottom: 12px !important;
}

/* Inject the custom label over the hidden heading */
.formContainer:has(#order_comments) h2::after {
    content: "How many students total will receive these lessons?";
    visibility: visible;
    position: absolute;
    left: 0;
    top: 0;
    font-size: 20px !important;
    line-height: normal;
    display: block;
}