.jtl-faq {
  background-color: #eeeee7;
  padding: 0 64px;
}
.jtl-faq__title {
  margin: 0 0 32px 0;
  color: #0b1b45;
  font-family: "Inter", sans-serif;
  font-size: 28px;
  line-height: 36px;
  font-weight: 700;
}
.jtl-faq__list {
  display: flex;
  flex-direction: column;
}
.jtl-faq__item {
  padding: 24px 0;
  border-top: 1px solid #2722f8;
}
.jtl-faq__item:last-child {
  border-bottom: 1px solid #2722f8;
}
.jtl-faq__item-button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: 100%;
  margin: 0;
  padding: 0;
  border: none;
  background: none;
  outline: none;
  text-align: left;
  cursor: pointer;
}
.jtl-faq__item-question {
  flex: 1 1 auto;
  color: #0b1b45;
  font-family: "Inter", sans-serif;
  font-size: 20px;
  line-height: 28px;
  font-weight: 600;
}
.jtl-faq__item-icon {
  position: relative;
  flex: 0 0 auto;
  align-self: center;
  width: 18px;
  height: 18px;
  transition: transform 0.3s ease;
}
.jtl-faq__item-icon::before, .jtl-faq__item-icon::after {
  content: "";
  position: absolute;
  background-color: #2722f8;
  border-radius: 2px;
}
.jtl-faq__item-icon::before {
  top: 50%;
  left: 0;
  width: 100%;
  height: 2.5px;
  transform: translateY(-50%);
}
.jtl-faq__item-icon::after {
  top: 0;
  left: 50%;
  width: 2.5px;
  height: 100%;
  transform: translateX(-50%);
}
.jtl-faq__item-panel {
  display: none;
  overflow: hidden;
}
.jtl-faq__item-answer {
  padding-top: 24px;
  color: #0b1b45;
  font-family: "Inter", sans-serif;
  font-size: 18px;
  line-height: 28px;
  font-weight: 400;
}
.jtl-faq__item-answer p:last-child {
  margin-bottom: 0;
}
.jtl-faq__item-answer a {
  color: #2722f8;
  text-decoration: underline;
}
.jtl-faq__item.active .jtl-faq__item-icon {
  transform: rotate(45deg);
}

@media (max-width: 767px) {
  .jtl-faq {
    padding: 0 24px;
  }
  .jtl-faq__title {
    font-size: 24px;
    line-height: 32px;
    margin-bottom: 24px;
  }
  .jtl-faq__item-button {
    gap: 16px;
  }
  .jtl-faq__item-question {
    font-size: 18px;
  }
  .jtl-faq__item-answer {
    font-size: 16px;
    line-height: 26px;
  }
}
