/* Container for the entire form and text */
.form-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Text part centering */
.pwr-scaling-footer {
  text-align: center;
  margin-bottom: 40px;
}

.heading-large {
  font-size: 48px;
  font-weight: bold;
}

.text-large {
  font-size: 18px;
  text-align: center;
}

.orange-text {
  color: #F26522;
}

.form-item-create-lead {
    display: none;
}
/* Form in three-column grid */
.form-fields-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.form-fields-grid > .js-form-item {
  width: 33%;
  box-sizing: border-box;
}

@media (max-width: 768px) {
  .form-fields-grid > .js-form-item {
    width: 100%;
  }
}

.submit-button {
  text-align: center;
  background-color: #F26522;
  color: #fff;
  padding: 10px 20px;
  font-size: 16px;
  width: 100%;
}


.pwr-demo-heading-large {
    font-size: 2em;
    font-weight: bold;
    text-align: center;
    margin-bottom: 20px;
}

.pwr-demo-orange-text {
    color: #F26522;
}

.pwr-demo-text-large {
    font-size: 1.2em;
    line-height: 1.5;
    text-align: center;
    margin-bottom: 15px;
    font-weight: bold;
}

.pwr-demo-text {
    text-align: center;
}

.pwr-demo-footer {
    margin-top: 30px;
    text-align: center;
}

/* Checkbox */
.js-form-item-high-priority {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
  padding-left: 0 !important; 
}

.js-form-item-high-priority input[type="checkbox"] {
  position: relative !important;
  top: 0 !important;
  margin-right: 8px !important;
  width: 1rem !important;
  height: 1rem !important;
  padding: 0 !important;
  line-height: 1 !important;
  vertical-align: middle !important;
}

.js-form-item-high-priority label.option {
  margin: 0 !important;
  line-height: 1.2 !important;
  vertical-align: middle !important;
}