.faq-section .section-title {
  margin-bottom: 40px;
  text-align: left;
}
.faq-section .accordion-wrapper-v2 {
  max-width: 770px;
  margin-left: auto;
  margin-right: auto;
}
.faq-section .accordion-button {
  padding-top: 28px;
  padding-bottom: 12px;
  padding-left: 8px;
  padding-right: 40px;
  cursor: pointer;
  box-shadow: none;
  background: var(--white);
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
  gap: 8px;
  position: relative;
}
.faq-section .accordion-button.collapsed {
  background: transparent;
  border-bottom: 1px solid var(--footer-border-color);
  padding-bottom: 32px;
}
.faq-section .accordion-button h3 {
  font-size: 18px;
  line-height: 27px;
  flex-grow: 1;
}
.faq-section .accordion-button::before, .faq-section .accordion-button::after {
  content: "";
  position: absolute;
  background: var(--para-color);
  transition: transform 0.3s ease;
  right: 16px;
  top: 50%;
}
.faq-section .accordion-button::before {
  width: 16px;
  height: 2px;
  transform: translateY(-50%);
}
.faq-section .accordion-button::after {
  width: 2px;
  height: 16px;
  transform: translate(-7px, -50%) rotate(90deg);
}
.faq-section .accordion-button.collapsed::after {
  transform: translate(-7px, -50%) rotate(0deg);
}
.faq-section .accordion-collapse-v2 {
  padding-left: 8px;
  padding-right: 32px;
  transition: 0.25s linear;
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
  background: var(--white);
}
.faq-section .accordion-collapse-v2 .accordion-body-v2 {
  padding-bottom: 20px;
}
.faq-section .accordion-collapse-v2 p {
  font-size: 14px;
  line-height: 21px;
}

@media (min-width: 992px) {
  .faq-section .section-title {
    margin-bottom: 60px;
    text-align: center;
  }
  .faq-section .accordion-button {
    padding-left: 32px;
    padding-right: 32px;
  }
  .faq-section .accordion-button h3 {
    font-size: 20px;
    line-height: 30px;
  }
  .faq-section .accordion-collapse-v2 {
    padding-left: 32px;
  }
  .faq-section .accordion-collapse-v2 p {
    font-size: 16px;
    line-height: 24px;
  }
}