body {
  color: var(--text-color);
  background-color: #f8f9fc;
}
body { 
  color: var(--text-color);
  background-color:var(--light);
}
.faq-container {
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  margin-top: -50px;
  position: relative;
  z-index: 10;
}

.faq-item {
  padding: 1.5rem;
  border-bottom: 1px solid var(--border-color);
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-question {
  display: flex;
  align-items: flex-start;
  margin-bottom: 0.75rem;
  color: var(--primary-color);
  font-weight: 600;
}

.question-number {
  background-color: var(--primary-color);
  color: white;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  margin-right: 15px;
  flex-shrink: 0;
}

.faq-answer {
  padding-left: 43px;
  color: var(--text-color);
}

.hidden {
  display: none;
}