.mainHeading {
    color: #343434;
    font-size: 48px;
    line-height: 56px;
    letter-spacing: 0.8px;
    margin-bottom: 12px;
    text-align: center;
  }
.infoTxt {
    color: #343434;
    font-size: 22px;
    font-weight: 450;
    line-height: 28px;
    letter-spacing: 0.1px;
    text-align: center;
    margin-top: 16px;
  }
  .subHeading {
    color: #343434;
    font-size: 22px;
    font-weight: 450;
    line-height: 28px;
    letter-spacing: 0.1px;
    text-align: center;
  }
  .lead-form {
    max-width: 654px;
    margin: 0 auto;
    line-height: 20px; /* Ensures proper text spacing */
    color: #6E6E6E;
    font-size: 14px;
    font-weight: 400;
  }
  .name-fields-row {
    display: flex;
    gap: 20px;
  }
  .name-fields-row > div {
    flex: 1;
    display: flex;
    flex-direction: column;
  }
  form label {
    display: block;
    margin-top: 16px !important;
    font-size: 14px !important;
    color: #6E6E6E !important;
    font-weight: 400 !important;
    line-height: 20px !important;
    letter-spacing: 0.1px;
  }
  form input,
  form select {
    width: 100%;
    padding: 12px;
    margin-top: 4px;
    border-radius: 4px;
    font-size: 14px;
    background: #F5F5F5;
    border: 1px solid #6E6E6E;
    color: #1C1C1C;
  }
  form select {
    appearance: none;
  }
  .checkBoxes {
    margin-top: 16px !important;
  }
  .checkbox-container {
    display: flex;
    align-items: flex-start; /* Aligns the checkbox and text vertically */
    gap: 12px; /* Creates consistent spacing between the checkbox and the label */
    flex-wrap: wrap;
  }
  .checkbox-container input[type="checkbox"] {
    width: 24px; /* Ensures consistent checkbox size */
    height: 24px; /* Ensures consistent checkbox size */
    appearance: none;
    -webkit-appearance: none;
    border: 1px solid #1800FF;
    border-radius: 3px;
    display: inline-block;
    background-color: #fff;
    cursor: pointer;
  }
 .checkbox-container input[type="checkbox"]:checked {
    border-color: #1800FF;
    background-color: #fff;
    background-image: url('data:image/svg+xml;utf8,<svg width=\'14\' height=\'13\' viewBox=\'0 0 14 13\' xmlns=\'http://www.w3.org/2000/svg\'><path fill=\'%230F15D4\' d=\'M5.26 7.98L2.81 5.73 1 7.826 5.55 12 14 2.798 10.911 1z\'/></svg>');
    background-repeat: no-repeat;
    background-position: center;
    background-size: 14px 13px;
}
  .checkbox-container label, .terms-text {
    margin: 0 !important; /* Removes any default margin for the label */
    line-height: 20px !important;
    font-size: 14px !important;
    font-weight: 400 !important;
    color: #1A1C35 !important;
    letter-spacing: 0.1px;
    flex: 1;
    word-wrap: break-word;
    white-space: normal;
    a {
      font-size: 14px;
      font-weight: 400;
      line-height: 20px;
      text-decoration: underline;
    }
  }
  .terms-text {
    margin-top: 16px !important;
  }
  .checkbox-container label a {
    text-decoration: underline; /* Keeps links distinct */
    color: #007BFF; /* Matches typical link color */
  }
  .checkbox-container a:hover {
    text-decoration: underline;
  }
  .privacy-policy {
    font-size: 12px;
    color: #888;
    margin-top: 12px;
  }
  .privacy-policy a {
    color: #4A90E2;
    text-decoration: none;
  }
  .privacy-policy a:hover {
    text-decoration: underline;
  }
  .errorText {
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0.15px;
    color: rgb(204, 37, 0);
    margin-top: 4px;
    margin-bottom: 0px;
  }
  .input-error,
  .input-error:focus {
    border: 2px solid rgb(204, 37, 0) !important;
    outline: none !important;
  }
  .input-error[type="checkbox"] {
    outline: 2px solid rgb(204, 37, 0) !important;
  }
  .dropdown-container {
    position: relative;
    display: flex;
    align-items: stretch;
    flex-direction: column;
  }
  .dropdown-menu-icon {
    position: absolute;
    right: 16px;
    top: 54px;
    pointer-events: none;
  }
 .leadInputs#country.open + .dropdown-menu-icon .arrow {
  transform: rotate(180deg);
}
.button-new {
  margin: 24px auto;
}
.notification {
  background: #008330;
  border-left: none;
  padding: 16px 8px;
  border-radius: 5px;
  box-shadow: rgba(0, 0, 0, 0.1) 2px 2px 10px;
  display: flex;
  flex-flow: row;
  -webkit-box-pack: start;
  justify-content: flex-start;
  width: 100%;
  display: none;
  margin-top: 24px;
}
.notification.error {
  background: #CC2500;
}
.notification-icon {
  margin-right: 10px;
  display: flex;
  align-items: center;
}
.notification-msg {
  flex: 1;
  color: #FFF;
}
.submit-btn-container {
  position: relative;
}
.btn-loader {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background: rgba(255,255,255,0.6);
  pointer-events: all;
  z-index: 2;
}
  /* Responsive Design */
  @media (max-width: 767px) {
    #leadCaptureForm {
      margin: 0 24px;
    }
    .name-fields-row {
      display: block;
    }
    .mainHeading {
      font-size: 40px;
      line-height: 48px;
      text-align: left;
    }
    .subHeading, .infoTxt {
      font-size: 20px;
      line-height: 26px;
      text-align: left;
    }
    .button-new {
      width: 100%;
    }
  }
