.mi-faq-wrapper {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.mi-faq-item {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  overflow: hidden;
  transition: all 0.3s ease;
}

.mi-faq-question {
  width: 100%;
  padding: 20px 24px;
  background: transparent;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  cursor: pointer;
  transition: background 0.2s ease;
}

.mi-faq-question:hover {
  background: #faf7f2;
}

.mi-faq-question span {
  color: #1c1917;
  font-size: 16px;
  font-weight: 500;
  padding-right: 12px;
}

.mi-faq-icon {
  width: 10px;
  height: 10px;
  border-right: 2px solid #b45309;
  border-bottom: 2px solid #b45309;
  transform: rotate(45deg);
  transition: transform 0.3s ease;
}

.mi-faq-item.active .mi-faq-icon {
  transform: rotate(-135deg);
}

.mi-faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 24px;
  color: #57534e;
  font-size: 15px;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.mi-faq-answer p {
  line-height: 1.6;  
}

.mi-faq-item.active .mi-faq-answer {
  max-height: 300px;
  padding: 0 24px 20px;
}

/* Responsive */
@media (max-width: 480px) {
  .mi-faq-question {
    padding: 16px 18px;
  }
  .mi-faq-answer {
    padding: 0 18px;
  }
}

/* Responsive */
@media (max-width: 768px) {
  .mi-faq-question {
    padding: 16px 18px;
    font-size: 18px;
  }
  .mi-faq-answer {
    padding: 0 18px;
    font-size: 16px;
  }
  .mi-faq-icon {
  width: 9px;
  height: 9px;
  }
}
