
<style>
.faq-section {
  background: #f9f9f9;
  padding: 40px 20px;
	margin: 10px auto;
  border-top: 3px solid #ccc;
}

.faq-accordion h2 {
  font-size: 28px;
  text-align: center;
  margin-bottom: 30px;
	margin-top: 30px;
  color: #333;
}

.faq-item {
  margin-bottom: 15px;
  border-radius: 8px;
  border: 1px solid #ddd;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.faq-question {
  width: 100%;
  padding: 16px 20px;
  font-size: 18px;
  font-weight: bold;
  background: #eee;
  color: #222;
  text-align: left;
  border: none;
  cursor: pointer;
  position: relative;
  transition: background 0.3s ease;
}

.faq-question::after {
  content: "+";
  position: absolute;
  right: 20px;
  font-size: 22px;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question::after {
  content: "−";
  transform: rotate(180deg);
}

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

.faq-item.active .faq-answer {
  max-height: 300px;
  padding: 16px 20px;
}
</style>