/* FULL WIDTH */
.container {
  width: 100%;
  max-width: 100%;
  margin: auto;
  padding: 15px 20px;
}

/* GRID 2 KOLOM */
.qna-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}

/* RESPONSIVE (HP jadi 1 kolom) */
@media (max-width: 100%) {
  .qna-grid {
    grid-template-columns: 1fr;
  }
}

.qna {
  background: #fff;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  overflow: hidden;
  transition: all 0.3s ease;
}

/* QUESTION */
.question {
  padding: 16px;
  cursor: pointer;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* ICON + */
.question::after {
  content: "+";
  font-size: 20px;
  transition: 0.3s;
}

/* ICON - saat aktif */
.qna.active .question::after {
  content: "−";
}

/* ANSWER */
.answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 16px;
  color: #555;
  transition: all 0.3s ease;
}

/* SAAT TERBUKA */
.qna.active .answer {
  max-height: 300px;
  padding: 10px 16px 16px;
}