/* FAQ-spezifische Styles */

/* Header Layout */
.header-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 1rem;
}

/* Sprachumschaltung */
.language-switcher-container {
  text-align: center;
  width: 100%;
  margin-bottom: 1rem;
}

.language-switcher {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
/*  justify-content: center;*/
  margin: 0 auto;
}

.lang-link {
  padding: 0.5rem 1rem;
  text-decoration: none;
  color: #666;
  border-radius: 4px;
  transition: all 0.3s ease;
  font-weight: bold;
}

.lang-link:hover {
  background-color: #f0f0f0;
  color: #333;
}

.lang-link.active {
  background-color: #007bff;
  color: white;
}

.lang-separator {
  color: #ccc;
}

/* Video Hilfe Section */
.video-help {
  text-align: center;
  margin: 1rem auto 2rem;
}

.video-link-container {
  display: inline-block;
}

.video-help-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1.5rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.video-help-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

.video-icon {
  font-size: 1.2rem;
}

/* FAQ Section */
.faq-section {
  max-width: 800px;
  margin: 0 auto;
  padding: 1rem;
}

.faq-section h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 2rem;
  color: #333;
}

/* FAQ Container */
.faq-container {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

/* FAQ Category */
.faq-category {
  background: #fff;
  border-radius: 10px;
  padding: 1.5rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.faq-category h3 {
  color: #333;
  font-size: 1.4rem;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid #f0f0f0;
}

/* FAQ Item */
.faq-item {
  margin-bottom: 1rem;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.faq-item.active {
  border-color: #667eea;
}

/* FAQ Question Button */
.faq-question {
  width: 100%;
  padding: 1rem 1.5rem;
  background: #f8f9fa;
  border: none;
  text-align: left;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 600;
  color: #333;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
}

.faq-question:hover {
  background: #e9ecef;
}

.faq-item.active .faq-question {
  background: #667eea;
  color: white;
}

/* FAQ Arrow */
.faq-arrow {
  font-size: 0.8rem;
  transition: transform 0.3s ease;
  min-width: 20px;
  text-align: center;
}

/* FAQ Answer */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  background: #fff;
}

.faq-answer p {
  padding: 1.5rem;
  margin: 0;
  line-height: 1.6;
  color: #555;
}

/* Responsive Design */
@media (max-width: 768px) {
  .faq-section {
    padding: 0.5rem;
  }
  
  .faq-section h2 {
    font-size: 1.6rem;
  }
  
  .faq-category {
    padding: 1rem;
  }
  
  .faq-category h3 {
    font-size: 1.2rem;
  }
  
  .faq-question {
    padding: 0.8rem 1rem;
    font-size: 0.9rem;
  }
  
  .faq-answer p {
    padding: 1rem;
  }
  
  .video-help-link {
    padding: 0.6rem 1.2rem;
    font-size: 0.9rem;
  }
  
  .lang-link {
    padding: 0.4rem 0.8rem;
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .faq-question {
    padding: 0.7rem 0.8rem;
  }
  
  .faq-question span:first-child {
    padding-right: 0.5rem;
  }
  
  .video-help-link {
    padding: 0.5rem 1rem;
  }
  
  .lang-link {
    padding: 0.3rem 0.6rem;
    font-size: 0.8rem;
  }
}