.faqBlock {
  background: rgba(6, 32, 39, 0.8);
  overflow: hidden;
  position: relative;
  width: 100%;
}

.faqBlock__shape-wrap {
  height: 1362px;
  left: -140px;
  pointer-events: none;
  position: absolute;
  top: -260px;
  width: 1430px;
  z-index: 0;
}

.faqBlock__shape {
  display: block;
  height: 100%;
  width: 100%;
}

.faqBlock__container {
  margin: 0 auto;
  max-width: 1280px;
  padding: 112px 0;
  position: relative;
  z-index: 1;
}

.faqBlock__header {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin: 0 auto;
  max-width: 768px;
  text-align: center;
}

.faqBlock__title {
  color: #ffffff;
  font-family: "Gilda Display", serif;
  font-size: 60px;
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0.6px;
  line-height: 1.2;
  margin: 0;
}

.faqBlock__subtitle {
  color: rgba(255, 255, 255, 0.8);
  font-family: "Inter", sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.6;
  margin: 0;
}

.faqBlock__columns {
  align-items: flex-start;
  display: flex;
  gap: 64px;
  margin-top: 96px;
}

.faqBlock__column {
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  flex: 1 1 0;
  min-width: 0;
}

.faqBlock__item {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.faqBlock__question {
  align-items: center;
  background: transparent;
  border: 0;
  color: #ffffff;
  cursor: pointer;
  display: flex;
  gap: 24px;
  justify-content: space-between;
  padding: 20px 0;
  text-align: left;
  width: 100%;
}

.faqBlock__question-text {
  color: #ffffff;
  flex: 1 0 0;
  font-family: "Gilda Display", serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0.24px;
  line-height: 1.2;
  margin: 0;
}

.faqBlock__chevron {
  display: block;
  flex-shrink: 0;
  height: 24px;
  transition: transform 0.25s ease;
  width: 24px;
}

.faqBlock__question[aria-expanded="true"] .faqBlock__chevron {
  transform: rotate(180deg);
}

.faqBlock__answer {
  padding: 0 0 24px;
}

.faqBlock__answer-content {
  color: rgba(255, 255, 255, 0.8);
  font-family: "Inter", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.6;
}

.faqBlock__answer-content > :first-child {
  margin-top: 0;
}

.faqBlock__answer-content > :last-child {
  margin-bottom: 0;
}

@media (max-width: 1440px) {
  .faqBlock__container {
    width: 90%;
  }
}

@media (max-width: 992px) {
  .faqBlock__container {
    padding: 88px 0;
  }

  .faqBlock__title {
    font-size: 48px;
  }

  .faqBlock__subtitle {
    font-size: 18px;
  }

  .faqBlock__columns {
    gap: 40px;
    margin-top: 64px;
  }

  .faqBlock__question-text {
    font-size: 22px;
  }
}

@media (max-width: 768px) {
  .faqBlock__container {
    padding: 72px 0;
  }

  .faqBlock__title {
    font-size: 38px;
  }

  .faqBlock__subtitle {
    font-size: 16px;
  }

  .faqBlock__columns {
    gap: 0;
    flex-direction: column;
    margin-top: 48px;
  }

  .faqBlock__column {
    width: 100%;
  }

  .faqBlock__question {
    padding: 16px 0;
  }

  .faqBlock__question-text {
    font-size: 20px;
  }

  .faqBlock__answer-content {
    font-size: 16px;
  }
}
