/* @2025 - Steffen Klausen - steffen@klausenguldbaek.dk*/
/* - * - * - * - * - * - * - * - * - * - * - * - * */
/* FAQ Styling */

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 1rem;
  border: 1px solid rgba(75, 140, 0, 0.2);
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.faq-question {
  background-color: rgba(75, 140, 0, 0.1);
  padding: 1rem 1.5rem;
  font-weight: 600;
  /* cursor: pointer; */
  position: relative;
  transition: background-color 0.3s ease;
}

/* .faq-question:hover {
  background-color: rgba(75, 140, 0, 0.2);
} */

.faq-answer {
  padding: 1rem 1.5rem;
  background-color: white;
  line-height: 1.6;
  color: #666;
}

/* .faq-answer a {
    color: #9243ab;
    text-decoration: none;
    font-weight: 600;
  } */

.faq-answer a:hover {
  text-decoration: underline;
}
