.faq-card h1,
.faq-card h2,
.faq-card h3,
.faq-card h4,
.faq-card h5,
.faq-card h6 {
  margin: 0;
}

.faq-card .faq-accordion summary {
  display: flex;
  justify-content: space-between;
  width: 100%;
  align-items: center;
  padding-bottom: 8px;
  border-bottom: 1px solid #dee2e6;
}

.faq-card span,
.faq-card span .icon {
  width: 20px;
  height: 20px;
}

.faq-card span .icon {
  transform: rotate(180deg);
  width: 20px;
  height: 20px;
  transition: all 0.3s ease-in-out;
}

.faq-card .faq-accordion details.open {
  transform: rotate(0deg);
}

.faq-card .faq-card-title {
  text-transform: uppercase;
}

.faq-card .faq-expand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.faq-card .faq-expand:hover {
  text-decoration: underline;
}

.faq-card .icon {
  transition: transform 0.3s ease;
}

details[open] .icon {
  transform: rotate(0deg);
}