/* Brand Colors */
.faq-badge {
  width: 50px;
  text-align:center;
}

.text-brand {
  color: #ff8c00;
}
.bg-brand {
  background-color: #ff8c00;
}
.border-brand {
  border-color: #ff8c00;
}
.hover-bg-brand:hover {
  background-color: #e67e00;
}

/* Accordion Animation */
.accordion-content {
  transition: max-height 0.3s ease-in-out, opacity 0.3s ease-in-out;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
}
.accordion-content.active {
  max-height: 500px;
  opacity: 1;
}
.accordion-icon {
  transition: transform 0.3s ease;
}
.accordion-btn[aria-expanded="true"] .accordion-icon {
  transform: rotate(180deg);
}

/* Filter Button Active State */
.filter-btn.active {
  background-color: #1f2937;
  color: white;
  border-color: #1f2937;
}

/* FAQ Main Content */
.faq-main {
  padding-top: 100px;
}
@media (max-width: 480px) {
  .px-6 {
    padding-left: 0.8rem !important;
    padding-right: 0.8rem !important;
  }

  .faq-button {
    flex: 0 0 calc(50% - 0.5rem);
    width: calc(50% - 0.5rem);
    min-width: calc(50% - 0.5rem);
    max-width: calc(50% - 0.5rem);
  }

  #searchInput {
    padding-left: 3.5rem !important;
  }

  #searchInput::placeholder {
    font-size: 0.875rem;
  }
}