h1.entry-title {
    border-bottom: 1px solid #eaecef;
    text-align: center;
    font-family: 'Mrs Eaves All Petite Caps OT' !important;
    font-weight: 400;
    color: #b55434;
    font-size: 48px;
}
.page-content, .entry-content, .entry-summary {
    margin: 0;
}
.bALRZz, .cbdOWJ{
  max-width: 1000px;
}
.form-step { display: none; }
.form-step.active { display: block; }

.nav-buttons {
  margin-top: 25px;
  text-align: right;
}
.next-btn, .prev-btn {
  background: #b55434;
  color: #fff;
  border: none;
  border-radius: 5px;
  padding: 8px 18px;
  margin: 5px;
  cursor: pointer;
  font-size: 15px;
}
.next-btn:hover, .prev-btn:hover {
  background: #b55434;
}

/* ===== Progress Bar (horizontal style like reference) ===== */
.progressbar {
  position: relative;
}
.progressbar ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
  counter-reset: step;
  list-style: none;
  padding: 0;
  margin: 0;
  position: relative;
}
.progressbar li {
  text-align: center;
  flex: 1;
  position: relative;
  font-size: 14px;
  color: #a8b2b8;
  font-weight: 600;
}

/* Connector lines */
.progressbar li::after {
  content: "";
  position: absolute;
  top: 18px;
  left: 50%;
  height: 3px;
  width: 100%;
  background-color: #d6d6d6;
  z-index: -1;
}
.progressbar li:last-child::after {
  display: none;
}

/* Step circles */
.progressbar li::before {
  content: "";
  width: 22px;
  height: 22px;
  border: 2px solid #d6d6d6;
  border-radius: 50%;
  display: block;
  margin: 0 auto 10px auto;
  background-color: #fff;
  position: relative;
  z-index: 1;
}

/* Active state */
.progressbar li.active {
  color: #004b5c;
}
.progressbar li.active::before {
  border-color: #004b5c;
  background-color: #004b5c;
}
.progressbar li.active + li::after {
  background-color: #004b5c;
}

/* Step labels */
.progressbar li span {
  display: block;
  font-weight: 500;
  color: #6e7d86;
}
.progressbar li.active span {
  color: #004b5c;
}
.stepper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  width: 100%;
  max-width: 1000px;
}

.step {
  text-align: center;
  position: relative;
  flex: 1;
  z-index: 1;
}

.step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 15%;
  left: 50%;
  transform: translateY(-50%);
  width: 100%;
  height: 4px;
  background-color: #e9f1f3;
  z-index: -1;
}

.step.completed:not(:last-child)::after {
  background-color: #0073aa;
}

.circle {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 3px solid #d6d6d6;
  background-color: #fff;
  margin: 0 auto;
  position: relative;
}

.step.active .circle {
  background-color: #b55434;
}

.step.completed .circle {
  background-color: #b55434;
}

.step label {
  display: block;
  margin-top: 8px;
  font-weight: 700;
  color: #4e4d4d;
}

.step p {
  font-size: 13px;
  color: #b55434;
  margin: 4px 0 0 0;
}

/* inactive state */
.step:not(.active):not(.completed) label {
  color: #9eb0b8;
}
.step:not(.active):not(.completed) .circle {
  border-color: #dbe5e8;
}
.review-wrapper {
  display: flex;
  gap: 20px;
  margin-top: 20px;
}

.review-left {
  flex: 2;
  background: #fff;
  border: 1px solid #e3e6ea;
  padding: 20px;
  border-radius: 6px;
}

.review-right {
  flex: 1;
  background: #fff;
  border: 1px solid #e3e6ea;
  padding: 20px;
  border-radius: 6px;
}

.review-left h3, .review-right h3 {
  color: #0b3d5c;
  margin-bottom: 10px;
}

.review-block p {
  margin: 5px 0;
  font-size: 14px;
}

.review-block strong {
  color: #000;
}

.nav-buttons {
  margin-top: 20px;
  text-align: right;
}

.next-btn, .prev-btn, .submit-btn {
  background: #b55434;
  color: white;
  border: none;
  padding: 8px 16px;
  border-radius: 4px;
  margin-left: 10px;
  cursor: pointer;
}

.next-btn:hover, .prev-btn:hover, .submit-btn:hover {
  background: #b55434;
}

.error {
  border: 1px solid red !important;
}

/* Loader */

#form-loader {
  position: fixed;
  inset: 0;
  background: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  color: #003366;
  font-family: system-ui, sans-serif;
  transition: opacity 0.5s ease;
}

#form-loader.fade-out {
  opacity: 0;
  pointer-events: none;
}

#form-loader .spinner {
  width: 48px;
  height: 48px;
  border: 5px solid #cce0ff;
  border-top-color: #0073e6;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin-bottom: 12px;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
.review-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.edit-btn {
  background: none;
  border: none;
  color: #0073aa;
  cursor: pointer;
  font-size: 14px;
}
.edit-btn:hover {
  text-decoration: underline;
}
