.faq-accordion {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 16px 0;
}

.faq-question {
  cursor: pointer;
  font-weight: 600;
  font-size: 1.1rem;
  list-style: none; /* Entfernt den Standard-Pfeil in einigen Browsern */
  position: relative;
}

.faq-question::-webkit-details-marker {
  display: none; /* Entfernt den Pfeil im Safari */
}

.faq-answer {
  padding-top: 12px;
  color: #ccc; /* Deine gewünschte Textfarbe */
  line-height: 1.6;
}


/* 1. Abstand zwischen den einzelnen Glass-Panels */
.faq-page .glass-panel {
  margin-bottom: 2.5rem; /* Sorgt für Luft zwischen den Blöcken */
  padding: 2rem; /* Etwas mehr Innenabstand, falls nötig */
}

/* 2. Abstand unter den Überschriften (h2) */
.faq-page .section-head {
  margin-bottom: 2rem; 
}

.faq-page .section-head h2 {
  margin-top: 0;
  margin-bottom: 0;
}

/* 3. Luftigere Accordions (Fragen & Antworten) */
.faq-accordion {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.25rem 0; /* Mehr vertikaler Freiraum für jede Zeile */
}

/* Optional: Eine saubere Linie auch über der allerersten Frage */
.faq-accordion:first-child {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.faq-question {
  cursor: pointer;
  font-weight: 600;
  font-size: 1.1rem;
  list-style: none; /* Entfernt Standard-Pfeile */
  margin: 0;
  padding: 0;
  transition: color 0.2s ease;
}

/* Kleines Hover-Feedback für die Fragen */
.faq-question:hover {
  color: #fff; 
}

.faq-question::-webkit-details-marker {
  display: none; /* Entfernt den Pfeil in Safari-Browsern */
}

.faq-answer {
  padding-top: 1rem; /* Abstand zwischen Frage und aufklappender Antwort */
  color: #ccc;
  line-height: 1.6;
}

html { scroll-behavior: smooth; }

/* =========================================================
   FAQ PAGE STYLES
   ========================================================= */

/* Hero Navigation */
.faq-hero-nav {
  margin-top: 2rem;
}

.faq-nav-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.faq-nav-link {
  text-decoration: none;
  font-weight: bold;
}

/* Flexbox Headers */
.head-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

/* Back to Top Container */
.back-to-top-container {
  text-align: right;
  margin-top: 1.5rem;
}

.back-to-top-link {
  text-decoration: none;
  font-weight: bold;
  font-size: 0.9em;
  color: inherit;
}

/* FAQ Inner Lists */
.faq-list {
  margin-top: 8px;
  margin-bottom: 16px;
  padding-left: 20px;
  color: #ccc;
  line-height: 1.6;
}

.faq-list-item {
  margin-bottom: 6px;
}

/* Code Blocks */
.code-block {
  background: #1a1a1a;
  padding: 10px;
  border-radius: 5px;
  color: #00cfff;
  overflow-x: auto; /* Hilft bei langen Pfaden auf mobilen Geräten */
}

/* Call To Action Panel */
.cta-panel {
  margin-top: 3rem;
  text-align: center;
  border: 1px solid rgba(0, 207, 255, 0.2);
}

.cta-content {
  padding: 1rem;
}

.cta-title {
  margin-top: 0;
}

/* Utility Margins */
.mb-24 {
  margin-bottom: 24px;
}

.mb-28 {
  margin-bottom: 28px;
}


/* Navigation innerhalb des Heros (Projektseite) */
.hero-jump-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-top: 2.5rem;
  padding: 0;
}

.hero-jump-nav a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
}

.hero-jump-nav a:hover { 
  color: #facc15; 
  border-bottom: 1px solid #facc15;
}
