.faq-item details {
  border: none;
  margin: 0;
}
.faq-item__title {
  background: #F5F7FA;
  padding: 16px 18px;
  list-style: none;
  font-size: 18px;
  font-weight: 700;
  line-height: 150%;
  display: flex;
  position: relative;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: 0.2s;
  gap: 2rem;
}
.faq-item__title:hover {
  background: #E8EBF0;
}
.faq-item__title::after {
  content: '';
  background: #FF8674;
  background-image: url('../../images/arrow-faq.svg');
  background-position: center;
  background-repeat: no-repeat;
  color: white;
  border-radius: 100%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: rotate(180deg);
  flex-shrink: 0;
}
.faq-item__text {
  padding: 16px 18px;
  font-size: 18px;
  font-weight: 500;
  line-height: 150%;
}
.faq-item details[open] .faq-item__title::after {
  transform: rotate(0);
}
.faq-item__text p:first-child {
  margin-top: 0;
}
.faq-item__text p:last-child {
  margin-bottom: 0;
}
@media all and (min-width: 1000px){
  .faq-item__title {
    padding: 18px 36px;
  }
  .faq-item__text {
    padding: 18px 36px;
    max-width: 90%;
  }
}