.FAQ{
	width: 100%;
	padding: 20px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	margin-bottom: 100px;
}
.faq-item {
  border-bottom: 1px solid #ddd;
  margin-bottom: 10px;
  max-width: 800px;
}

.faq-question {
  width: 100%;
  padding: 15px;
  background: none;
  border: none;
  text-align: left;
  font-size: 18px;
  font-weight: bold;
  color: #333;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question:hover {
  color: #0077cc;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 15px;
}

.faq-answer p {
  margin: 15px 0;
  color: #555;
  line-height: 1.5;
}

.faq-item.active .faq-answer {
  max-height: 350px; /* lo suficiente para mostrar el texto */
  padding: 0 15px 15px;
}

.faq-item.active .arrow {
  transform: rotate(180deg);
}