.faq {
  max-width: 100%;
  margin: 2rem auto;
  font-family: Arial, sans-serif;
}

.faq h2 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  text-align: left;
}

.faq-item {
  border-bottom: 1px solid #ccc;
  margin-bottom: 0.5rem;
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  font-size: 1.4rem;
  font-weight: bold;
  background: #f7f7f7;
  border: none;
  cursor: pointer;
}

.faq-question:hover {
  background: #e8e8e8;
}

.arrow {
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

.faq-item.active .arrow {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 1rem;
  background: #fff;
  transition: max-height 0.4s ease;
}

.faq-answer p {
  margin: 1rem 0;
  font-size: 1.4rem;
  line-height: 1.6;
}

.faq-item.active .faq-answer {
  max-height: 500px;
}