/* FAQ styles */
.faq {
  background: var(--bg-section);
  padding: 100px 20px;
  text-align: center;
}
.faq-container {
  max-width: 800px;
  margin: 0 auto;
}
.faq h2 {
  font-size: 2.2rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 8px;
}
.faq p {
  color: #ffffff;
  margin-bottom: 40px;
}
.faq-item {
  margin-bottom: 15px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
  background: #fff;
}
.faq-question {
  width: 100%;
  background: #fff;
  color: #111;
  border: none;
  outline: none;
  text-align: left;
  padding: 20px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s;
  position: relative;
}
.faq-question::after {
  content: "⌄";
  position: absolute;
  right: 20px;
  transition: transform 0.3s;
}
.faq-item.active .faq-question::after {
  transform: rotate(180deg);
}
.faq-question:hover {
  background: #f8f8f8;
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  background: #fafafa;
  transition: max-height 0.4s ease;
}
.faq-item.active .faq-answer {
  max-height: 300px;
}
.faq-answer p {
  padding: 0 20px 20px 20px;
  color: #000000;
  text-align: left;
  line-height: 1.6;
}
