body {
  background: #2C2F33;
  color: #ccc;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  margin: 0;
  padding: 0;
}

.faq-section {
  max-width: 800px;
  margin: 60px auto;
  padding: 0 20px;
  animation: fadeInNoTransform 1s ease forwards;
}

h1 {
  color: #7289da;
  text-align: center;
  margin-bottom: 30px;
  font-size: 2.5em;
}

.faq-item {
  background: linear-gradient(135deg, #3a3f47, #2c2f33);
  border-radius: 10px;
  margin-bottom: 15px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
  overflow: hidden;
  transition: box-shadow 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 8px 16px rgba(114, 137, 218, 0.5);
}

.faq-question {
  padding: 20px 20px;
  cursor: pointer;
  color: #7289da;
  font-weight: 600;
  position: relative;
}

.faq-question::after {
  content: '+';
  position: absolute;
  right: 20px;
  transition: transform 0.3s ease;
}

.faq-question.active::after {
  content: '-';
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0px 20px;
  max-height: 0;
  overflow: hidden;
  background: #23272a;
  color: #ccc;
  transition: max-height 0.4s ease;
}

.faq-answer a {
  color: #43b581;
  text-decoration: underline;
}

@keyframes fadeInNoTransform {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
