/* Contact FAQ Styles */
.faq-section {
  background-color: #f8f9fa;
  padding: 4rem 1rem;
}

.contact-faq-list {
  max-width: 800px;
  margin: 2rem auto 0;
}

.contact-faq-item {
  background-color: white;
  margin-bottom: 1rem;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  border-left: 4px solid var(--primary-color);
}

.contact-faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem;
  cursor: pointer;
  background-color: white;
  transition: background-color 0.3s ease;
}

.contact-faq-question:hover {
  background-color: #f8f8f8;
}

.contact-faq-question h3 {
  margin: 0;
  font-size: 1.2rem;
  color: var(--text-dark);
}

.faq-toggle-icon {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--primary-color);
  transition: transform 0.3s ease;
}

.contact-faq-question.active .faq-toggle-icon {
  transform: rotate(45deg);
}

.contact-faq-answer {
  padding: 0 1.5rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.contact-faq-answer.active {
  padding: 0 1.5rem 1.5rem;
  max-height: 500px; /* Adjust as needed */
}

.contact-faq-answer p {
  margin: 0;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .contact-faq-question h3 {
    font-size: 1.1rem;
  }
}
