/* FAQ Styles - Fixed for proper footer positioning */
.faq-header {
  text-align: center;
  margin-bottom: 4rem;
}

.faq-header h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #a56dff, #d100ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.faq-header p {
  font-size: 1.2rem;
  color: #ccc;
  max-width: 600px;
  margin: 0 auto;
}

.faq-item {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  margin-bottom: 1.5rem;
}

.faq-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(165, 109, 255, 0.15);
}

.faq-question {
  padding: 1.5rem 2rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.1rem;
  font-weight: 600;
  color: white;
  background: rgba(255, 255, 255, 0.02);
  transition: background-color 0.3s ease;
}

.faq-question:hover {
  background: rgba(165, 109, 255, 0.1);
}

.faq-question.active {
  background: rgba(165, 109, 255, 0.15);
  color: #a56dff;
}

.faq-arrow {
  font-size: 1.2rem;
  transition: transform 0.3s ease;
  color: #a56dff;
}

.faq-arrow.rotated {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 2rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-answer.active {
  padding: 1.5rem 2rem 2rem 2rem;
  max-height: 500px;
}

.faq-answer p {
  color: #ccc;
  line-height: 1.6;
  margin: 0;
}

.faq-search {
  margin-bottom: 3rem;
  position: relative;
}

.faq-search input {
  width: 100%;
  padding: 1rem 1.5rem;
  font-size: 1.1rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  color: white;
  outline: none;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.faq-search input:focus {
  border-color: #a56dff;
  box-shadow: 0 0 0 3px rgba(165, 109, 255, 0.1);
}

.faq-search input::placeholder {
  color: #777;
}

.no-results {
  text-align: center;
  color: #777;
  font-style: italic;
  margin: 3rem 0;
  display: none;
}

@media (max-width: 768px) {
  .faq-container {
    padding: 2rem 1rem;
  }

  .faq-header h1 {
    font-size: 2.5rem;
  }

  .faq-question {
    padding: 1rem 1.5rem;
    font-size: 1rem;
  }

  .faq-answer.active {
    padding: 1rem 1.5rem 1.5rem 1.5rem;
  }
}