.zj-faq {
  padding: 48px 0;
}

.zj-faq__title {
  font-size: 28px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 32px;
  color: var(--color-green);
}

.zj-faq__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  align-items: start;
}

.zj-faq__col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.zj-faq__item {
  background-color: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.zj-faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 20px;
  text-align: left;
  cursor: pointer;
  transition: color 0.2s;
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  line-height: 29.7px;
}

.zj-faq__question:hover {
  color: var(--color-green);
}

.zj-faq__chevron {
  flex-shrink: 0;
  transition: transform 0.3s;
}

.zj-faq__item--active .zj-faq__chevron {
  transform: rotate(180deg);
}

.zj-faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

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

.zj-faq__answer-inner {
  padding: 20px 16px;
  background: #ffffff;
  color: #000c24;
  font-size: 16px;
  font-weight: 400;
  line-height: 19.2px;
}

.zj-faq__answer-inner p {
  margin-bottom: 8px;
}

.zj-faq__answer-inner p:last-child {
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .zj-faq {
    padding: 0;
  }

  .zj-faq__title {
    font-size: 22px;
    margin-bottom: 24px;
  }

  .zj-faq__grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .zj-faq__question {
    font-size: 16px;
    padding: 14px 16px;
    line-height: 1.4;
  }

  .zj-faq__answer-inner {
    padding: 16px 14px;
    font-size: 14px;
    line-height: 1.6;
  }
}
