.faq-section h2 {
  margin: 0 0 32px;
  color: #111827;
  font-size: 24px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0;
}

.faq-section .row {
  display: flex;
  flex-wrap: wrap;
  column-gap: 36px;
  margin-right: 0;
  margin-left: 0;
}

.faq-section .col-6 {
  flex: 0 0 calc(50% - 18px);
  max-width: calc(50% - 18px);
  padding-right: 0;
  padding-left: 0;
}

.accordion .accordion-item {
  border-bottom: 1px solid #dde2ec;
}

.accordion button {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  min-height: 56px;
  padding: 14px 32px 14px 0;
  color: #111827;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.45;
  text-align: left;
  letter-spacing: 0;
  border: none;
  background: none;
  outline: none;
}

.accordion button:hover,
.accordion button:focus {
  cursor: pointer;
  color: #111827;
}

.accordion button .accordion-title {
  display: block;
  padding: 0;
}

.accordion button .icon {
  display: inline-block;
  position: absolute;
  top: 50%;
  right: 4px;
  width: 14px;
  height: 14px;
  border: 0;
  border-radius: 0;
  transform: translateY(-50%);
}

.accordion button .icon::before,
.accordion button .icon::after {
  display: block;
  position: absolute;
  content: '';
  background: #3b2cff;
}

.accordion button .icon::before {
  top: 6px;
  left: 1px;
  width: 12px;
  height: 2px;
}

.accordion button .icon::after {
  top: 1px;
  left: 6px;
  width: 2px;
  height: 12px;
}

.accordion button[aria-expanded='true'] .icon::after {
  width: 0;
}

.accordion button[aria-expanded='true'] + .accordion-content {
  opacity: 1;
  max-height: 35em;
  transition: all 200ms linear;
  will-change: opacity, max-height;
}

.accordion .accordion-content {
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: opacity 200ms linear, max-height 200ms linear;
  will-change: opacity, max-height;
}

.accordion .accordion-content p {
  margin: 8px 32px 28px 0 !important;
  color: #303341;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0;
}

@media (max-width: 767px) {
  .faq-section h2 {
    margin-bottom: 22px;
    font-size: 22px;
  }

  .faq-section .row {
    row-gap: 0;
  }

  .faq-section .col-6 {
    flex-basis: 100%;
    max-width: 100%;
  }

  .accordion button {
    min-height: 52px;
    padding-right: 28px;
  }

  .accordion .accordion-content p {
    margin-right: 28px !important;
  }
}
