.faq-container {
  max-width: 900px;
  margin: auto;
  padding: 20px;
}
.faq-container h2 {
  text-align: center;
  margin-bottom: 30px;
}
.faq {
  margin-bottom: 15px;
  border-bottom: 1px solid #ccc;
}
.faq input {
  display: none;
}
.faq-label {
  display: flex;
  justify-content: space-between;
  cursor: pointer;
  font-weight: bold;
  padding: 10px 0;
}
.faq-label:hover {
  color: #61b160;
}
.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding-left: 15px;
}
.faq input:checked ~ .faq-content {
  max-height: 200px;
  padding: 10px 0 15px;
}
@media screen and (max-width: 600px) {
  .faq-label {
    font-size: 16px;
  }
}
