.faq-accordion {
  max-width: 80%;
  margin: 0 auto;
  font-size:.8em;
}

@media screen and (max-width: 768px) {
.faq-accordion {
  max-width:94%;
}}


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

.panelheader {
  width: 100%;
  padding: 15px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.0em;
  text-align: left;
}

.panelheader:hover {
  background: #f8f9fa;
}

.icon {
  transition: transform 0.6s;
  color:#111;
}

.panelheader.active .icon {
  transform: rotate(45deg);
}

.panelcontent {
  height: 0;
  overflow: hidden;
  transition: height 1.9s ease-out;
  text-align:left;
}

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