.pk-faq {
  margin: 26px 0 0;
}

.pk-faq-title {
  margin: 0 0 18px;
  color: #202938;
  font-size: 30px;
  line-height: 1.15;
  font-weight: 700;
}

.pk-faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pk-faq-item {
  border: 1px solid #e5ebf3;
  border-radius: 10px;
  background: #ffffff;
  overflow: hidden;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.pk-faq-item:hover {
  border-color: #d4dfef;
  box-shadow: 0 10px 26px rgba(31, 45, 61, 0.05);
}

.pk-faq-item.is-open {
  border-color: #cddcf3;
  box-shadow: 0 14px 34px rgba(79, 127, 216, 0.1);
}

.pk-faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 19px 22px;
  border: 0;
  background: #ffffff;
  color: #202938;
  font-size: 17px;
  line-height: 1.45;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  transition: background 0.2s ease;
}

.pk-faq-question:hover {
  background: #fafcff;
}

.pk-faq-question:focus {
  outline: none;
  box-shadow: inset 0 0 0 2px rgba(79, 127, 216, 0.18);
}

.pk-faq-question-text {
  flex: 1 1 auto;
}

.pk-faq-icon {
  position: relative;
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  border-radius: 50%;
  background: #f2f6fc;
}

.pk-faq-icon::before,
.pk-faq-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background: #5f6f85;
  border-radius: 2px;
  transform: translate(-50%, -50%);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.pk-faq-icon::before {
  width: 10px;
  height: 2px;
}

.pk-faq-icon::after {
  width: 2px;
  height: 10px;
}

.pk-faq-item.is-open .pk-faq-icon {
  background: #edf4ff;
}

.pk-faq-item.is-open .pk-faq-icon::after {
  opacity: 0;
  transform: translate(-50%, -50%) scaleY(0.2);
}

.pk-faq-answer-wrap {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.28s ease;
}

.pk-faq-item.is-open .pk-faq-answer-wrap {
  grid-template-rows: 1fr;
}

.pk-faq-answer-inner {
  overflow: hidden;
}

.pk-faq-answer {
  padding: 14px 22px 20px;
  color: #5e6878;
  font-size: 16px;
  line-height: 1.75;
}

.pk-faq-answer a {
  color: #4f7fd8;
  text-decoration: none;
}

.pk-faq-answer a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .pk-faq {
    margin: 20px 0 0;
  }

  .pk-faq-title {
    font-size: 24px;
    margin-bottom: 14px;
  }

  .pk-faq-question {
    padding: 16px;
    font-size: 16px;
  }

  .pk-faq-answer {
    padding: 12px 16px 16px;
    font-size: 15px;
  }
}