/* FAQ Styles */
.faq-container {
  max-width: 800px;
  margin: 0 auto;
  text-align: left; /* Ensure text is left-aligned */
}

.faq-item {
  margin-bottom: 15px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  cursor: pointer;
  width: 100%;
  text-align: left;
}

.faq-question h3 {
  margin: 0;
  font-family: "Livvic Medium", "Times New Roman", Georgia, Serif;
  font-size: 1.2rem;
  color: #fff;
  text-align: left;
  flex-grow: 1;
}

.faq-toggle {
  color: pink;
  font-size: 1.5rem;
  width: 24px;
  height: 24px;
  text-align: center;
  line-height: 24px;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.faq-answer {
  padding: 0 0 15px;
  overflow: hidden;
  text-align: left;
  max-height: 0;
  opacity: 0;
  transition: max-height 0.4s ease-in-out, opacity 0.4s ease-in-out, padding 0.4s ease;
}

.faq-answer p {
  color: #ddd;
  margin-top: 0;
  padding: 10px 0;
  text-align: left;
}

.faq-item.active .faq-answer {
  max-height: 500px; /* Set large enough to accommodate content */
  opacity: 1;
  padding: 10px 0 15px;
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
}

/* Optional: You can replace the + symbol with a down arrow if preferred */
/* 
.faq-toggle {
  content: '▼';
}
.faq-item.active .faq-toggle {
  transform: rotate(180deg);
} 
*/
