/* FAQ Section Styles */
.faq-section {
  padding: 60px 0;
  background-color: var(--secondary-color);
}

.faq-section h2 {
  color: var( --white);
  margin-bottom: 10px;
}

.faq-section > p {
  text-align: center;
  margin-bottom: 40px;
  color: var(--text-light);
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 15px;
  border: 1px solid #e0e0e0;
  border-radius: 5px;
  overflow: hidden;
  background-color: var(--white);
}

.faq-question {
  padding: 15px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  background-color: var(--text-light);
  transition: background-color 0.3s ease;
}

.faq-question:hover {
  background-color: #f5f5f5;
}

.faq-question h3 {
  margin: 0;
  font-size: 16px;
  color: var(--text-color);
}

.faq-toggle {
  font-size: 24px;
  font-weight: 700;
  color: var(--white);
  transition: transform 0.3s ease;
}

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

.faq-answer p {
  margin-bottom: 15px;
  color: var(--text-light);
}

.faq-item.active .faq-question {
  background-color: #f5f5f5;
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 15px 20px;
  background-color: #132948;
}