.faq-container {
  max-width: 900px;
  margin: 40px auto;
  background: #4dd0e1;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.faq-container h1 {
  text-align: center;
  color: #e91e63;
  margin-bottom: 30px;
}

.faq-item {
  border-bottom: 1px solid #eee;
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 15px 10px;
  font-size: 1.1rem;
  font-weight: bold;
  cursor: pointer;
  color: #333;
  transition: background 0.2s;
}

.faq-question:hover {
  color: #e91e63;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding: 0 10px;
  font-size: 0.95rem;
  color: black;
}

.faq-answer p {
  margin: 10px 0;
}