.faq-section .faq-intro {
  margin-bottom: 40px;
}

.faq-section h2 {
  margin-bottom: 16px;
}

.faq-section .faq-description {
  max-width: 900px;
}

.faq-section .faq-description p:last-child {
  margin-bottom: 0;
}

.faq-section .faq-list {
  border-top: 1px solid rgba(0, 0, 0, 0.12);
}

.faq-section .faq-item {
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
}

.faq-section .faq-question {
  width: 100%;
  background: transparent;
  border: 0;
  padding: 28px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  text-align: left;
  cursor: pointer;
}

.faq-section .faq-question-text {
  display: block;
  font-size: 2.2rem;
  line-height: 1.2;
  font-weight: 600;
}

.faq-section .faq-icon {
  position: relative;
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
}

.faq-section .faq-icon:before,
.faq-section .faq-icon:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 24px;
  height: 2px;
  background: #2e3f4b;
  transform: translate(-50%, -50%);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.faq-section .faq-icon:after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-section .faq-question[aria-expanded="true"] .faq-icon:after {
  opacity: 0;
  transform: translate(-50%, -50%) rotate(90deg) scaleX(0);
}

.faq-section .faq-answer {
  overflow: hidden;
  height: 0;
  transition: height 0.3s ease;
}

.faq-section .faq-answer-inner {
  padding: 0 0 28px;
  max-width: 900px;
}

.faq-section .faq-answer-inner p:last-child {
  margin-bottom: 0;
}

@media (max-width: 1024px) {
  .faq-section .faq-intro {
    margin-bottom: 30px;
  }

  .faq-section .faq-question {
    padding: 24px 0;
  }

  .faq-section .faq-question-text {
    font-size: 2rem;
  }

  .faq-section .faq-answer-inner {
    padding-bottom: 24px;
  }
}

@media (max-width: 450px) {
  .faq-section .faq-intro {
    margin-bottom: 24px;
  }

  .faq-section .faq-question {
    padding: 20px 0;
    gap: 16px;
  }

  .faq-section .faq-question-text {
    font-size: 1.8rem;
    line-height: 1.3;
  }

  .faq-section .faq-icon {
    width: 20px;
    height: 20px;
    flex: 0 0 20px;
  }

  .faq-section .faq-icon:before,
  .faq-section .faq-icon:after {
    width: 20px;
  }

  .faq-section .faq-answer-inner {
    padding-bottom: 20px;
  }
}