@import url('https://fonts.googleapis.com/css2?family=Playfair:ital,opsz,wght@0,5..1200,300..900;1,5..1200,300..900&display=swap');

.zodiac-faq-wrap {
  max-width: 900px;
  margin: auto;
}

.zodiac-faq-item {
  margin-bottom: 18px;
}

.zodiac-faq-question {
  width: 100%;
  background: #663399;
  color: #fff;
  border: none;
  border-radius: 30px;
  padding: 16px 22px;
  font-size: 20px;
  font-weight: 500;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-family: "Playfair", serif;
}

.zodiac-faq-item.active .zodiac-faq-question {
  background: #8a47ce;
}

.faq-icon {
  font-size: 22px;
  font-weight: bold;
}

.zodiac-faq-answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.35s ease;
  padding: 0 20px;
}

.zodiac-faq-answer p {
  margin: 16px 0;
  color: #555;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
  .zodiac-faq-question {
    font-size: 15px;
    padding: 14px 18px;
  }
}
