
.faq-item {
  position: relative;
}

.faq-question, .faq-answer {
  position: relative;
  cursor: pointer;
  padding: 28px 30px 28px 71px;  
  font-size: 16px;
  color: #1f2328;
  line-height: 24px;
}
.faq-question {
  font-weight: 600;
  border-bottom: 1px solid #e0e0e0;
}

.faq-question::before {
  content: "";
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  background: url('http://gvk.co.kr/wp-content/uploads/2025/07/q.png') no-repeat center center;
  background-size: contain;
}

.faq-question::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  background: url('http://gvk.co.kr/wp-content/uploads/2025/07/down.png') no-repeat center center;
  background-size: contain;
  transition: background 0.2s ease;
}

.faq-item.active .faq-question::after {
  background: url('http://gvk.co.kr/wp-content/uploads/2025/07/up.png') no-repeat center center;
  background-size: contain;
}

.faq-answer {
  display: none;
  font-weight: 400;
  background-color: #F6F7F8;
  border-top: 1px solid rgb(175, 182, 192)
}

.faq-answer p {
  margin-bottom: 0px;
}


.faq-answer::before {
  content: "";
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;   
  height: 36px; 
  background: url('http://gvk.co.kr/wp-content/uploads/2025/07/a.png') no-repeat center center;
  background-size: contain;
}