

.faq-title {
  font-size: 24px;
  margin-bottom: 24px;
  color: var(--color-primary);
}

.faq-item {
  border-bottom: 1px solid #eee;
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 16px 0;
  background: none;
  border: 0;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  color: #222;
  position: relative;
  transition: transform 0.5s ease;

}

.faq-question::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 20px;
  color: var(--color-primary);
}

.faq-item.active .faq-question::after {
  content: "−";
}

.faq-answer {
  display: none;
  padding-bottom: 16px;
  color: #555;
  line-height: 1.6;
  font-size: 16px;
  text-align: justify;
}

.faq-item.active .faq-answer {
  display: block;

}
.faq-question {
  border: none;
  outline: none;
}

/* Tắt viền khi focus (click chuột hoặc tab) */
.faq-question:focus,
.faq-question:active {
  outline: none;
  box-shadow: none;
}

/* Nếu viền đến từ trạng thái active của item */
.faq-item.active .faq-question {
  border: none;
}