/*Estilos para la sección FAQ*/
.faq-section {
  max-width: auto;
  margin: auto;
  font-family: Outfit, Verdana;
}

.faq-section h2 {
  text-align: left;
  margin-bottom: 20px;
}

.faq-item {
  border-bottom: 1px solid #ccc;
}

.faq-question {
  background: #ffffff;
  border: none;
  width: 100%;
  text-align: left;
  padding: 0px 0px 15px 10px;
  font-size: 14px;
  cursor: pointer;
  outline: none;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  transition: background 0.3s;
}

.faq-question:hover {
  background: #b5da3a;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding: 0 15px;
}

.faq-answer p {
  margin: 10px 0;
}