.faq-accordion {
  max-width: 94%;
  margin: 0 auto;
}

.panel {
  border: 1px solid #ddd;
  border-radius: 8px;
  margin-bottom: 10px;
}

.panel-header {
  width: 100%;
  padding: 10px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: transparent;
  border: none;
  cursor: pointer;
  font-size: 16px;
  text-align: left;
}

.panel-header:hover {
  background: #f8f9fa;
}

.icon {
  font-size: 20px;
  transition: transform 0.3s;
}

.panel-header.active .icon {
  transform: rotate(45deg);
}

.panel-content {
  font-size:.9em;
  text-align:left;
  height: 0;
  overflow: hidden;
  transition: height 0.9s ease-out;
}

.panel-body {
  padding: 20px;
  border-top: 1px solid #eee;
}