/* Fix 1: Remove excess space between header and FAQ columns */
.faq3-section-area .space32 {
  margin-bottom: 0 !important;
  height: 20px !important;
}
.faq3-section-area {
    margin-top: -80px;
    font-family: "Figtree", sans-serif;
}
.faq3-section-area .faq3-header h2 {
    color: var(--Text-Color, #0D0E10);
    font-family: "Figtree", sans-serif;
    font-size: 44px;
    font-style: normal;
    font-weight: 700;
    transition: all 0.4s ease-in-out;
    line-height: 54px;
    text-transform: capitalize;
}

.faq3-section-area .faq3-header p {
    color: #437A9B;
    font-family: "Figtree", sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 30px;
    display: inline-block;
    margin-top: 10px;
    margin-bottom: 20px;
}

/* Answer text: small, gray, with more breathing room */
.faq3-section-area .faq3-widgets-area .accordion .accordion-item .accordion-body {
  font-size: 13px !important;
  font-weight: 400 !important;
  color: #888fa0 !important;
  line-height: 1.7 !important;
  padding-left: 0 !important;
  padding-top: 14px !important;
  padding-bottom: 6px !important;
  margin-top: 0 !important;
}

/* More space between each question row */
.faq3-section-area .faq3-widgets-area .accordion .accordion-item {
  padding: 20px 0 !important;
}

/* Fix 2: Add right padding so +/- icon doesn't crowd the text */
.faq3-section-area .faq3-widgets-area .accordion .accordion-item button {
  box-shadow: none;
  background: none;
  font-size: 18px;
  font-weight: 700;
  color: var(--Text-Color, #0D0E10);
  font-family: "Figtree", sans-serif;
  line-height: 24px;
  padding-left: 0px;       /* remove left padding */
  padding-right: 45px;     /* push text away from icon */
}

/* Fix 3: Reposition the − (after) icon to far right with enough gap */
.faq3-section-area .faq3-widgets-area .accordion .accordion-item .accordion-button::after {
  position: absolute;
  right: 5px;              /* pin to far right */
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 2px;
  content: "";
  background-color: #000;
  filter: none;
  z-index: 2;
}

/* Fix 3: Reposition the + vertical bar */
.faq3-section-area .faq3-widgets-area .accordion .accordion-item .accordion-button::before {
  position: absolute;
  right: 12px;             /* center it over the horizontal bar */
  top: 50%;
  transform: translateY(-50%);
  width: 2px;
  height: 16px;
  content: "";
  background-color: #000;
  filter: none;
  z-index: 3;
  display: none;
}

/* Fix 4: Left column — remove the old 50px left padding override */
.faq3-section-area .faq-col-area {
  padding: 0 !important;
}

.col-lg-6:first-child .faq-col-area {
  border-right: 1px solid rgba(86, 95, 118, 0.15);
  padding-right: 40px !important;
}

.col-lg-6:last-child .faq-col-area {
  padding-left: 40px !important;
  padding-right: 0 !important;
}

/* Fix 5: Override the global faq3-widgets-area left padding that's pushing left column down */
.faq3-section-area .faq-col-area.faq3-widgets-area {
  padding: 0 !important;
}

.col-lg-6:first-child .faq-col-area.faq3-widgets-area {
  padding-right: 40px !important;
}

.col-lg-6:last-child .faq-col-area.faq3-widgets-area {
  padding-left: 40px !important;
}

/* Mobile fix */
@media (max-width: 991px) {
  .col-lg-6:first-child .faq-col-area,
  .col-lg-6:first-child .faq-col-area.faq3-widgets-area {
    border-right: none;
    padding-right: 0 !important;
  }
  .col-lg-6:last-child .faq-col-area,
  .col-lg-6:last-child .faq-col-area.faq3-widgets-area {
    padding-left: 0 !important;
    margin-top: 0;
  }
}