.faq-accordion {
  width: 100%;
  font-family: inherit;
}

.faq-item {
  border: 1px solid #e7e7e7;
  border-radius: 18px;
  margin-bottom: 14px;
  background: #fff;
  overflow: hidden;
  transition: border-color .3s ease, box-shadow .3s ease;
}

.faq-item.is-open {
  border-color: #d8d8d8;
  box-shadow: 0 12px 30px rgba(0, 0, 0, .06);
}

.faq-question {
  width: 100%;
  padding: 22px 24px;
  border: 0;
  background: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  text-align: left;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.4;
  color: #1f1f1f;
}

.faq-plus {
  position: relative;
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #f4f4f4;
  transition: transform .3s ease, background .3s ease;
}

.faq-plus::before,
.faq-plus::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 16px;
  height: 3px;
  border-radius: 10px;
  background: #111827;
  transform: translate(-50%, -50%);
}

.faq-plus::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-item.is-open .faq-plus {
  transform: rotate(45deg);
  background: #ececec;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
}

.faq-answer p {
  margin: 0;
  padding: 0 24px 24px;
  font-size: 16px;
  line-height: 1.7;
  color: #555;
}

@media (max-width: 600px) {
  .faq-question {
    padding: 18px;
    font-size: 16px;
  }

  .faq-plus {
    flex: 0 0 38px;
    width: 38px;
    height: 38px;
  }

  .faq-plus::before,
  .faq-plus::after {
    width: 14px;
  }

  .faq-answer p {
    padding: 0 18px 20px;
    font-size: 15px;
  }
}