.faq {
  margin-top: 100px;
  padding: 0 16px;
  display: flex;
  align-items: flex-start;
}

.faq__title {
  flex: 0 0 736px;
  margin: 0;
  font-weight: 400;
  font-size: 24px;
  line-height: 110%;
}

.faq__list {
  flex: 1;
}

.faq__item {
  border-bottom: 1px solid #ececec;
}

.faq__item:first-child {
  border-top: 1px solid #ececec;
}

.faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 0;
  border: none;
  background: none;
  cursor: pointer;
  text-align: left;
  color: inherit;
  font-size: 14px;
}

.faq__question:hover {
  background: #EFEFEF;
}

.faq__icon {
  flex-shrink: 0;
  font-size: 16px;
  transition: transform 0.2s ease;
}

.faq__item.is-open .faq__icon {
  transform: rotate(135deg);
}

.faq__answer {
  padding: 12px 0;
  font-size: 12px;
  line-height: 120%;
  color: #212325;
}

@media (max-width: 900px) {
  .faq {
    padding: 0 32px;
    flex-direction: column;
    gap: 32px;
  }

  .faq__title {
    flex: none;
    font-size: 40px;
    line-height: 110%;
  }

  .faq__list {
    width: 100%;
  }

  .faq__question {
    padding: 18px 0;
    font-size: 32px;
  }

  .faq__icon {
    font-size: 32px;
  }

  .faq__answer {
    padding-bottom: 18px;
    font-size: 28px;
    line-height: 120%;
  }
}

@media (max-width: 480px) {
  .faq {
    padding: 0 20px;
    gap: 20px;
  }

  .faq__title {
    font-size: 24px;
  }

  .faq__question {
    padding: 12px 0;
    font-size: 18px;
  }

  .faq__icon {
    font-size: 18px;
  }

  .faq__answer {
    padding-bottom: 12px;
    font-size: 15px;
  }
}
