.governance-faq {
  padding: 80px 20px;
  background: #fff;
}

.faq-container {
  max-width: 900px;
  margin: auto;
}

.faq-title {
  text-align: center;
  font-size: 36px;
  font-weight: 600;
  margin-bottom: 50px;
}

.faq-item {
  border-bottom: 1px solid #e5e5e5;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 22px 0;
  font-size: 18px;
  font-weight: 500;
  text-align: left;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;

  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-question .icon {
  font-size: 18px;
  transition: transform 0.3s ease;
}

.faq-item.active .icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
        font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;

}

.faq-answer p,
.faq-answer ul {
  margin-bottom: 15px;
  color: #555;
  line-height: 1.7;
}

.faq-answer ul {
  padding-left: 20px;
}

.faq-item.active .faq-answer {
  max-height: 1200px;
  padding-bottom: 20px;
}