/**
 * FAQ-Styles für Branchenbuch Pro
 */

.branchenbuch-faq-container {
  margin-bottom: 30px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue",
    sans-serif;
}

.branchenbuch-faq-title {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 20px;
  color: #2c3e50;
  padding-bottom: 10px;
  border-bottom: 1px solid #eee;
}

.branchenbuch-faq-accordion {
  border: 1px solid #e5e5e5;
  border-radius: 5px;
  overflow: hidden;
}

.branchenbuch-faq-item {
  border-bottom: 1px solid #e5e5e5;
}

.branchenbuch-faq-item:last-child {
  border-bottom: none;
}

.branchenbuch-faq-question {
  padding: 15px 20px;
  background-color: #f9f9f9;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.3s;
}

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

.branchenbuch-faq-question.active {
  background-color: #3498db;
  color: #fff;
}

.branchenbuch-faq-question-text {
  font-weight: 600;
  font-size: 1.1rem;
}

.branchenbuch-faq-toggle {
  transition: transform 0.3s;
}

.branchenbuch-faq-question.active .branchenbuch-faq-toggle {
  transform: rotate(180deg);
}

.branchenbuch-faq-answer {
  padding: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out, padding 0.3s ease-out;
  background-color: #fff;
}

.branchenbuch-faq-answer.active {
  padding: 20px;
  max-height: 1000px;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .branchenbuch-faq-question {
    padding: 12px 15px;
  }

  .branchenbuch-faq-question-text {
    font-size: 1rem;
  }

  .branchenbuch-faq-answer.active {
    padding: 15px;
  }
}

