.elementor-750 .elementor-element.elementor-element-e2da4d3{--display:flex;}/* Start custom CSS for shortcode, class: .elementor-element-d2a046a *//* ---------------- Main Form Wrapper ---------------- */
.cf7-single-page {
  max-width: 820px;
  margin: 40px auto;
  padding: 35px;
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.07);
  font-family: "Poppins", Arial, sans-serif;
  transition: all 0.3s ease;
}

/* Title */
.form-title {
  text-align: center;
  margin-bottom: 30px;
  color: #272B6B;
  font-size: 28px;
  font-weight: 600;
}

/* Sections */
.form-section {
  margin-bottom: 30px;
}

.form-section h4 {
  margin-bottom: 18px;
  font-size: 18px;
  color: #272B6B;
  font-weight: 600;
  border-bottom: 2px solid #2CB2E5;
  display: inline-block;
  padding-bottom: 5px;
}

/* Labels */
.cf7-single-page label {
  display: block;
  font-weight: 500;
  margin-bottom: 8px;
  color: #333;
}

/* Inputs & Selects */
.cf7-input {
  width: 100%;
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid #ddd;
  font-size: 15px;
  margin-bottom: 18px;
  transition: all 0.3s ease;
  background-color: #fdfdfd;
}

.cf7-input:focus {
  outline: none;
  border-color: #2CB2E5;
  box-shadow: 0 4px 12px rgba(44, 178, 229, 0.2);
}

/* Time Row (two-column for time + AM/PM) */
.time-row {
  display: flex;
  gap: 15px;
}

.time-row div {
  flex: 1;
}

/* Checkbox Styling */
.cf7-single-page .wpcf7-checkbox label {
  display: flex;
  align-items: center;
  padding: 12px 16px;
  margin-bottom: 12px;
  border-radius: 12px;
  background: #f5f8fa;
  border: 1px solid #e0e0e0;
  cursor: pointer;
  font-size: 15px;
  transition: all 0.3s ease;
}

.cf7-single-page .wpcf7-checkbox input {
  margin-right: 10px;
}

.cf7-single-page .wpcf7-checkbox label:hover {
  background: #eaf6fc;
  border-color: #2CB2E5;
}

/* Submit Button */
.submit-section {
  text-align: center;
}

.cf7-single-page input[type="submit"] {
  background: #272B6B;
  color: #fff;
  border: none;
  padding: 16px 45px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cf7-single-page input[type="submit"]:hover {
  background: #2CB2E5;
  transform: translateY(-2px);
}

/* Required Field Indicator */
.cf7-single-page label:after {
  content: "*";
  color: #e74c3c;
  margin-left: 3px;
}

/* Optional Email Override */
.cf7-single-page label[for="email"]:after {
  content: "";
}

/* Responsive */
@media (max-width: 600px) {
  .time-row {
    flex-direction: column;
  }
}/* End custom CSS */