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

.faq h2 {
  text-align: center;
  margin-bottom: 24px;
}

.faq-item summary h3 {
  flex: 1;                    /* Fylder alt ledigt rum */
  margin: 0;
  font-size: 18px;
  text-align: left;           /* Sikrer venstrestillet tekst */
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px;
  cursor: pointer;
  list-style: none;
}

.faq-item summary::marker {
  display: none;
}

.faq-item summary::after {
  content: "➕";
  margin-left: 18px;
  transition: transform 0.2s ease;
}

.faq-item[open] summary::after {
  content: "➖";
}

/* Resten af dine eksisterende styles */
.faq-item {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  margin-bottom: 12px;
  transition: box-shadow 0.2s ease;
}

.faq-item:hover {
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.faq-answer {
  padding: 0 24px 24px;
}