/* FAQ accordion styles */
.faq-item {
  border-bottom: 1px solid rgba(255,255,255,0.2);
  padding: 20px 30px;
  width: 100%;
}

.faq_sec .workboxsectioninner{
  justify-content: space-between;
}

.question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.question h3 {
  margin: 0;
}

.faq_sec .accordion-icon {
  position: relative;
  width: 16px;
  height: 16px;
  background: none;
}

.accordion-icon span {
  position: absolute;
  background: #fff; /* white since your original was white text */
  transition: all 0.3s ease;
}

.accordion-icon span:first-child {
  top: 7px;
  left: 0;
  width: 100%;
  height: 2px;
}

.accordion-icon span:last-child {
  left: 7px;
  top: 0;
  width: 2px;
  height: 100%;
  transform: unset;
}

.question.active .accordion-icon span:last-child {
  transform: scaleY(0);
}

.answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.answer-inner {
  padding: 10px 0;
  font-size: 16px;
  line-height: 1.4;
  color: #fff;
}

@media(max-width: 767px){
  .faq-item {
    padding: 20px;
  }
