.faq-section {
  width: 100%;

margin-top: 50px;
margin-bottom: 50px;

padding: 0px;
font-family: "Varela Round", sans-serif;

  background: var(--purple);
  /*border-radius: 10px;*/

}

.faq-title {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 20px;
  color: white;
}

.faq-item {
  border-bottom: 1px solid #ddd;
  padding: 10px 0;
  padding-left: 20px;
}

.faq-question {
  width: 95%;
  background: none;
  border: none;
  outline: none;
  text-align: left;
  font-size: 1.1rem;
  font-weight: 600;
  cursor:help;

  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
    color: white;
}

.faq-question .icon {
  transition: transform 0.3s ease;
  font-weight: bold;
  font-size: 1.2rem;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  padding: 0 0;
}

.faq-answer p {
    font-family: "Varela Round", sans-serif;
    margin: 10px 0;
    color: white;
}

.faq-answer li
{
    font-family: "Varela Round", sans-serif;
    color: white;
}

.faq-item.active .faq-answer {
  max-height: 600px; /* enough for content */
  padding: 10px 0;
}

.faq-item.active .faq-question .icon {
  transform: rotate(180deg);
  content: "–";
}
