.faq__items {
  display: grid;
  gap: 20px;
}

.faq__item {
  border: 1px solid #e6e6e6;
  background: #fff;
  overflow: hidden;
  box-sizing: border-box;
}

.faq__toggle {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  border: 0;
  background: transparent;
  font-size: 17px;
  font-weight: 600;
  cursor: pointer;
  padding: 30px 30px 30px 40px;
}

.faq__toggle span {
  font-weight: 500;
  font-size: 20px;
  line-height: 140%;
  color: #1f1f1f;
  text-align: left;
}

.faq__panel {
  transition: max-height 0.25s ease;
  padding: 0 30px 0 30px;
}

.faq__panel p {
  font-weight: 500;
  font-size: 16px;
  line-height: 140%;
  color: #454545;
}

.faq__item .faq__panel {
  max-height: 0;
  overflow: hidden;
  transition: all 0.35s ease;
}

.faq__item .faq__minus,
.faq__item.active .faq__plus {
  display: none;
}

.faq__item.active .faq__panel {
  max-height: 500px;
}

.faq__item .faq__plus,
.faq__item.active .faq__minus {
  display: block;
}

@media (max-width: 768px) {
  .faq__toggle {
    padding: 15px 15px 15px 30px;
  }

  .faq__toggle span{
    font-size: 16px;
  }

  .faq__panel p{
    font-size: 14px;
  }
}
