/** Shopify CDN: Minification failed

Line 8:0 Unexpected "<"
Line 402:0 Unexpected "<"
Line 454:0 Unexpected "<"

**/
<style>
/* Form Container */
.hs-form {
  align-content: center;
  max-width: 600px;
  margin: 0 auto;
  padding: 55px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  box-sizing: border-box;
  transition: box-shadow 0.3s ease;
}

.hs-form:hover {
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
}

/* Labels */
.hs-form label {
  display: block;
  font-size: 17px;
  font-weight: 600;
  color: #333;
  margin-bottom: 5px;
}

/* Field Descriptions */
.hs-field-desc {
  font-size: 14px;
  color: #666;
  margin-top: -3px;
  margin-bottom: 15px;
  line-height: 1.4;
  font-weight: normal;
}

/* Inputs and Textareas */
.hs-form input,
.hs-form textarea,
.hs-form select {
  width: 100%;
  max-width: 600px;
  padding: 12px;
  margin: 15px 0;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.05);
  background-color: #ffffff;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  font-size: 16px;
  color: #333;
  box-sizing: border-box;
}

.hs-form textarea:focus,
.hs-form select:focus {
  border-color: #6366f1;
  box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.2);
  outline: none;
}

/* Button Styling */
.hs-button.primary.large {
  padding: 14px 28px;
  border-radius: 8px;
  border: none;
  background-color: #ed7800;
  color: #ffffff;
  font-weight: bold;
  font-size: 16px;
  cursor: pointer;
}

/* Submitted Message */
.submitted-message {
  align-content: center;
  max-width: 600px;
  margin: 0 auto;
  padding: 55px;
  border-radius: 12px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
  background-color: #f9fafb;
  border: 1px solid #e0e0e0;
  box-sizing: border-box;
  transition: box-shadow 0.3s ease;
  font-size: 16px;
  color: #333;
  text-align: center;
}

.submitted-message:hover {
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
}

/* General Container Styling */
.hs-form ul.inputs-list {
  list-style: none; /* Removes bullet points */
  margin: 0;
  padding: 0;
  text-align: left; /* Aligns content to the left */
}

/* Styling for Radio Buttons List Items */
ul.inputs-list.multi-container li.hs-form-radio {
  display: flex; /* Use flexbox for alignment */
  align-items: center; /* Vertically align inputs with text */
  margin-bottom: 10px; /* Adds spacing between options */
}

/* Styling for Checkbox List Items */
ul.inputs-list li.hs-form-booleancheckbox {
  display: flex; /* Use flexbox for alignment */
  align-items: center; /* Vertically align inputs with text */
  margin-bottom: 10px; /* Adds spacing between options */
}

/* Styling for Radio Inputs */
ul.inputs-list.multi-container li.hs-form-radio input[type="radio"] {
  appearance: auto; /* Restores default radio button styling */
  -webkit-appearance: radio; /* Ensures consistency in Safari */
  width: 16px; /* Consistent size for radio buttons */
  height: 16px;
  margin-right: 10px; /* Adds space between input and label */
  cursor: pointer; /* Pointer cursor on hover */
  vertical-align: middle; /* Aligns with the label */
  box-shadow: none; /* Removes any shadow */
}

/* Styling for Checkbox Inputs */
ul.inputs-list li.hs-form-booleancheckbox input[type="checkbox"] {
  appearance: auto; /* Restores default checkbox styling */
  -webkit-appearance: checkbox; /* Ensures consistency in Safari */
  width: 16px; /* Consistent size for checkboxes */
  height: 16px;
  margin-right: 10px; /* Adds space between input and label */
  cursor: pointer; /* Pointer cursor on hover */
  vertical-align: middle; /* Aligns with the label */
  box-shadow: none; /* Removes any shadow */
}

/* Styling for Labels */
ul.inputs-list.multi-container li.hs-form-radio label,
ul.inputs-list li.hs-form-booleancheckbox label {
  margin-left: 0; /* Ensures proper alignment with input */
  font-size: 16px; /* Readable font size */
  color: #333; /* Text color */
  cursor: pointer; /* Pointer cursor on hover */
}

/* Selected State for Radio and Checkbox Inputs */
ul.inputs-list.multi-container li.hs-form-radio input[type="radio"]:checked,
ul.inputs-list li.hs-form-booleancheckbox input[type="checkbox"]:checked {
  outline: 2px solid #6366f1; /* Highlight border when selected */
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  ul.inputs-list.multi-container li.hs-form-radio,
  ul.inputs-list li.hs-form-booleancheckbox {
    flex-direction: row; /* Keeps text inline with inputs */
  }
  ul.inputs-list.multi-container li.hs-form-radio label,
  ul.inputs-list li.hs-form-booleancheckbox label {
    font-size: 14px; /* Adjusts font size for smaller screens */
  }
}
.hs-form {
  align-content: center;
  max-width: 600px;
  margin: 0 auto;
  padding: 55px;
  border-radius: 10px; /* Updated from custom CSS */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Updated from custom CSS */
  background-color: #ffffff; /* Updated from custom CSS */
  border: 1px solid #e0e0e0;
  box-sizing: border-box;
  transition: box-shadow 0.3s ease;
}
.hs-form ul,
.hs-form ol {
  list-style: none; /* Removes bullet points */
  margin: 0;
  padding: 0;
}

/* General Container Styling */
.hs-form ul.inputs-list {
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: left;
}

/* Error Messages */
ul.no-list.hs-error-msgs.inputs-list {
  list-style: none;
  padding: 0;
  margin: 5px 0 10px;
}

label.hs-error-msg.hs-main-font-element {
  font-size: 14px;
  color: #ff0000;
  font-weight: normal;
  line-height: 1.4;
  margin: 0;
}

/* Form Labels */
.hs-form label {
  color: #054454;
  font-weight: medium;
  font-size: 16px;
  margin-bottom: 5px;
}

/* H1 Header Styling */
.hs-form h1 {
  font-size: 28px;
  color: #054454;
  font-weight: bold;
  text-align: center;
  margin: 20px 0;
  padding: 10px 0;
  border-bottom: 2px solid #d1d5db;
}

/* H5 Header Styling */
.hs-form h5 {
  font-size: 20px;
  color: #054454;
  font-weight: bold;
  text-align: center;
  margin: 15px 0;
  padding: 8px 0;
  border-bottom: 1px solid #d1d5db;
  background-color: #f9fafb;
  border-radius: 8px;
}
/* General Styling for Date Picker Container */
.hs-dateinput {
  position: relative;
  margin-bottom: 15px; /* Space below the date picker */
}

/* Styling for Date Picker Input */
.hs-dateinput input {
  width: 100%; /* Full width for consistency */
  padding: 12px; /* Internal padding for usability */
  font-size: 16px; /* Readable font size */
  border: 1px solid #d1d5db; /* Light border for clean design */
  border-radius: 8px; /* Rounded corners */
  background-color: #ffffff; /* White background */
  color: #333; /* Text color */
  box-sizing: border-box; /* Ensures proper box sizing */
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

/* Placeholder Text Styling */
.hs-dateinput input::placeholder {
  color: #aaa; /* Light gray placeholder text */
  font-style: italic; /* Italic placeholder for differentiation */
}

/* Input Focus Styling */
.hs-dateinput input:focus {
  border-color: #6366f1; /* Highlight border color */
  box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.2); /* Highlight ring */
  outline: none; /* Removes default focus outline */
}

/* Input Hover Effect */
.hs-dateinput input:hover {
  border-color: #054454; /* Darker border on hover */
}

/* Styling for Date Picker When Open */
.hs-dateinput.hs-datepicker-open input {
  border-color: #6366f1; /* Highlight border when open */
  background-color: #f0f8ff; /* Optional: Light blue background when open */
  box-shadow: 0 0 5px rgba(99, 102, 241, 0.4); /* Subtle shadow for emphasis */
}

/* Calendar Icon Styling (Optional, if present) */
.hs-dateinput .calendar-icon {
  position: absolute;
  right: 12px; /* Align to the right */
  top: 50%; /* Center vertically */
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  cursor: pointer; /* Pointer cursor for interaction */
  opacity: 0.7; /* Slightly muted appearance */
}

.hs-dateinput .calendar-icon:hover {
  opacity: 1; /* Brighten icon on hover */
}

/* Error Styling for Invalid Input */
.hs-dateinput input.invalid {
  border-color: #ff0000; /* Red border for invalid input */
  background-color: #ffe6e6; /* Optional: Light red background for invalid state */
}

.hs-dateinput .error-message {
  font-size: 14px; /* Smaller font for error message */
  color: #ff0000; /* Red error text */
  margin-top: 5px; /* Space above the error message */
}

/* Ensure checkboxes match other form fields */
.hs-form input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  width: 18px;
  height: 18px;
  border: 1px solid #d1d5db; /* Match the default field border */
  border-radius: 4px; /* Slightly rounded corners */
  background-color: #ffffff; /* Match input fields */
  display: inline-block;
  position: relative;
  vertical-align: middle;
  cursor: pointer;
  transition: border-color 0.3s ease, background-color 0.3s ease, box-shadow 0.2s ease;
}

/* Remove blue focus effect and match other form fields */
.hs-form input[type="checkbox"]:focus {
  outline: none;
  border-color: #054454; /* Match other input fields */
  box-shadow: 0 0 0 3px rgba(5, 68, 84, 0.2); /* Subtle focus effect */
}

/* Styling for checked state */
.hs-form input[type="checkbox"]:checked {
  background-color: #054454; /* Adjust to match your theme */
  border-color: #054454;
}

/* Add a checkmark icon when checked */
.hs-form input[type="checkbox"]:checked::after {
  content: "✔";
  font-size: 14px;
  color: #ffffff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-weight: bold;
}

/* Properly space label from checkbox */
.hs-form-checkbox-display {
  display: flex;
  align-items: center;
  cursor: pointer;
}

/* Ensure labels have enough spacing from checkboxes */
.hs-form-checkbox-display label {
  font-size: 16px;
  color: #333;
  cursor: pointer;
  margin-left: 10px; /* Explicitly add spacing between checkbox and label */
  line-height: 1.2;
}

/* Adjust checkbox styling for a cleaner look */
ul.inputs-list li.hs-form-booleancheckbox {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

/* Adjust for mobile screens */
@media (max-width: 768px) {
  .hs-form-checkbox-display label {
    font-size: 14px;
    margin-left: 8px; /* Reduce spacing slightly on smaller screens */
  }
}
/* Target the <span> inside the label and add spacing from the checkbox */
.inputs-list.multi-container .hs-form-checkbox label span {
  padding-left: 10px; /* Creates space between the checkbox and label text */
  cursor: pointer;
}




</style>

<style>
/* =======================================================
   Minimal patch: Question spacing + Question text styling
   (Safe to append after your current stylesheet)
   ======================================================= */

/* Add consistent vertical space only between consecutive fields */
.hs-form .hs-form-field + .hs-form-field {
  margin-top: 22px; /* comfortable separation between questions */
}

/* Make the question text (labels) more distinct from answers */
.hs-form .hs-form-field > label,
.hs-form .hs-form-field > .hs-label,
.hs-form .hs-form-field fieldset > legend,
.hs-form .hs-form-field fieldset > legend > span {
  color: #054454;         /* brand teal already used in your CSS */
  font-size: 18px;        /* larger than 16px answer text */
  font-weight: 700;       /* clearly heavier than answer text */
  line-height: 1.35;
  letter-spacing: 0.2px;
  margin-top: 40px;
  margin-bottom: 8px;     /* space between question and its input(s) */
  display: block;         /* ensure consistent spacing behavior */
}

/* Keep option labels (radio/checkbox choices) lighter so hierarchy is clear */
.hs-form .hs-form-field ul.inputs-list label,
.hs-form .hs-form-field .hs-form-checkbox-display label {
  font-size: 16px;        /* same as answer text */
  font-weight: 500;       /* lighter than question label */
  color: #333;            /* matches your existing answer color */
}

/* Optional: tidy help/description spacing without altering your look */
.hs-form .hs-field-desc {
  margin-top: 1px;        /* slight breathing room under the question */
  margin-bottom: 1px;
}

/* Mobile: slightly reduce question label size to keep layout tight */
@media (max-width: 768px) {
  .hs-form .hs-form-field + .hs-form-field { margin-top: 18px; }
  .hs-form .hs-form-field > label,
  .hs-form .hs-form-field > .hs-label,
  .hs-form .hs-form-field fieldset > legend,
  .hs-form .hs-form-field fieldset > legend > span {
    font-size: 17px;
  }
}
</style>
