.faq-section {
  padding: 8rem 2rem 4rem;
  min-height: calc(100vh - 80px);
  /* Subtract footer height approx */
  background: linear-gradient(135deg,
      rgba(0, 255, 255, 0.05) 0%,
      rgba(255, 0, 255, 0.05) 100%),
    #0a0a0f;
}

.faq-container {
  max-width: 1000px;
  margin: 0 auto;
}

.faq-container h1 {
  font-family: "Orbitron", sans-serif;
  color: #00ffff;
  font-size: 2.5rem;
  margin-bottom: 1rem;
  text-align: center;
  text-shadow: 0 0 20px rgba(0, 255, 255, 0.4);
}

.faq-subtitle {
  text-align: center;
  color: #b0b0b0;
  margin-bottom: 3rem;
  font-size: 1.2rem;
}

.faq-item {
  background: rgba(15, 15, 25, 0.95);
  backdrop-filter: blur(20px);
  margin-bottom: 1.5rem;
  border-radius: 15px;
  border: 1px solid rgba(0, 255, 255, 0.1);
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: rgba(0, 255, 255, 0.4);
  box-shadow: 0 0 20px rgba(0, 255, 255, 0.1);
}

.faq-question {
  width: 100%;
  background: transparent;
  border: none;
  text-align: left;
  outline: none;
  padding: 1.5rem 2rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  font-size: 1.2rem;
  color: #ffffff;
  font-family: "Orbitron", sans-serif;
  transition: all 0.3s ease;
}

.faq-question:hover {
  background: rgba(0, 255, 255, 0.05);
  color: #00ffff;
  padding-left: 2.5rem;
}

.faq-question::after {
  content: "+";
  font-size: 1.5rem;
  color: #00ffff;
  transition: transform 0.3s ease;
}

/* RTL Support */
[dir="rtl"] .faq-question {
  text-align: right;
}

[dir="rtl"] .faq-question:hover {
  padding-left: 1.5rem;
  padding-right: 2.5rem;
}

/* For simple implementation without JS for now, or assume JS will toggle a class */
.faq-item.active .faq-question::after {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 2rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  color: #d0d0d0;
  line-height: 1.6;
}

.faq-item.active .faq-answer {
  padding: 0 2rem 1.5rem;
  max-height: 500px;
  /* Arbitrary large height */
}

.faq-answer p {
  margin-bottom: 1rem;
}

.faq-answer a {
  color: #00ffff;
  text-decoration: none;
}

.faq-answer a:hover {
  text-decoration: underline;
}