:root {
  --bg: #121212;
  --card: #181818;
  --accent: #1b9ba1;
  --text-light: #B3B3B3;
}

body {
  margin: 0;
  font-family: 'Arial', sans-serif;
  background: var(--bg);
  color: white;
}

.faq-header {
  padding: 60px;
  background: linear-gradient(to bottom, #2a2a72, #121212);
}

.faq-header h1 {
  font-size: 48px;
  margin-bottom: 10px;
}

.faq-header p {
  color: var(--text-light);
}

.faq-container {
  max-width: 900px;
  margin: 40px auto;
  padding: 0 20px;
}

.faq-item {
  background: var(--card);
  border-radius: 8px;
  margin-bottom: 12px;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  color: white;
  padding: 20px;
  font-size: 18px;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-question span {
  font-size: 24px;
  color: var(--accent);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  color: var(--text-light);
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 200px;
  padding: 0 20px 20px;
}
