h2 {
  margin-bottom: 30px;
}

.faq-container {
  width: 90%;
  max-width: 800px;
  margin: 50px auto;
  font-family: 'Lato';
}

.faq-container h2 {
  font-family: 'Quilon-Regular', sans-serif; /* use font defined in style.css */
}

.faq-question {
  width: 100%;
  padding: 15px 0;
  font-size: 18px;
  text-align: left;
  background: none;
  color: #333;
  border: none;
  border-bottom: 2px solid #ccc;
  margin: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: color 0.3s ease;
}

.faq-number {
  font-weight: bold;
  color: #594835;
}

.faq-answer {
  max-height: 0;
  font-size: 15px;
  overflow: hidden;
  border-bottom: 2px solid #eee;
  transition: max-height 0.4s ease;
  padding: 0;
}

.faq-answer p {
  margin: 10px 0;
  padding: 0 0 10px 25px;
  color: #444;
}
