body {
  background-color: #020024;
  color: white;
  font-family: 'Poppins', sans-serif;
}

.faq-section {
  padding: 80px 10%;
}

.section-title {
  font-size: 36px;
  text-align: center;
  margin-bottom: 50px;
}

.section-title .highlight {
  color: #1e90ff;
}

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

.faq-item {
  margin-bottom: 20px;
  border: 1px solid #1e90ff;
  border-radius: 10px;
  overflow: hidden;
  background: #0d0d2b;
}

.faq-question {
  width: 100%;
  background: #1e90ff;
  color: white;
  padding: 15px 20px;
  border: none;
  text-align: left;
  font-size: 18px;
  cursor: pointer;
  font-weight: 600;
}

.faq-answer {
  padding: 15px 20px;
  background-color: #050525;
  display: none;
  color: #ccc;
}

.faq-question::after {
  content: "➕";
  float: right;
  font-size: 20px;
  transition: transform 0.3s;
}

.faq-item.open .faq-question::after {
  content: "➖";
}
