/* ---------- FAQ ---------- */
#faq {
  max-width: 800px;
  margin: 1.5rem auto;
  padding: 0 1rem;
  font-family: Arial, sans-serif;
  color: #222;
}
#faq h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #004085;
  text-align: center;
}

#faq-search-container {
  display: flex;
  justify-content: center;
  margin-bottom: 1rem;
}
#faq-search {
  width: 90%;
  max-width: 800px;
  padding: .5rem .75rem;
  font-size: 1rem;
  border: 2px solid #004085;
  border-radius: 4px;
  transition: border-color .3s;
}
#faq-search:focus {
  outline: 0;
  border-color: #002752;
  box-shadow: 0 0 5px #004085;
}
#faq-search-message {
  text-align: center;
  font-style: italic;
  color: #666;
  margin-bottom: 1rem;
  min-height: 1.2rem;
}

.faq-item {
  border: 1px solid #cce5ff;
  background-color: #e9f2fb;
  border-radius: 6px;
  padding: 1rem 1.25rem;
  margin-bottom: 1rem;
  box-shadow: 1px 1px 5px rgba(0,64,133,.1);
  transition: background-color .3s;
}
.faq-item:hover { background-color: #d0e4fa; }

.faq-item h3 {
  font-size: 1.25rem;
  margin-bottom: .5rem;
  color: #003366;
}
.faq-item p {
  font-size: 1rem;
  line-height: 1.5;
  color: #333;
  margin: 0;
}

/* Links in FAQ: gleiche Farbe & Unterstreichung, auch wenn :visited (z. B. tel:) */
.faq-item a:link,
.faq-item a:visited {
  color: #004085;
  text-decoration: underline;
}

/* Hover/Focus: etwas dunkler und ohne Unterstreichung */
.faq-item a:hover,
.faq-item a:focus {
  color: #002752;
  text-decoration: none;
}

/* starke Links in FAQ nicht ausgrauen */
.faq-item a strong,
.faq-item a b {
  color: inherit;
  font-weight: inherit;
}
