/* FAQ Section Styling */
.faq-section {
  padding: 50px 20px;
  max-width: 800px;
  margin: auto;
}

.faq-title {
  text-align: center;
  font-size: 2rem;
  color: #ffffff;
  margin-bottom: 30px;
}

.faq-item {
  margin-bottom: 20px;
  border-bottom: 1px solid #2c2f36;
}

.faq-question {
  background: none;
  border: none;
  outline: none;
  width: 100%;
  text-align: left;
  font-size: 18px;
  padding: 15px 0;
  color: #5d9eff;
  font-weight: 600;
  cursor: pointer;
  position: relative;
  transition: color 0.3s ease;
}

.faq-question:hover {
  color: #ffab00; /* Hover color */
}

.faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  font-size: 24px;
  transition: transform 0.3s ease;
}

.faq-question.active::after {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-answer p {
  margin: 0;
  padding: 0 0 15px;
  font-size: 16px;
  color: #c7c6c6;
}

.faq-answer ul {
  margin: 10px 0;
  padding-left: 20px;
  color: #c7c6c6;
}

.faq-item.active .faq-answer {
  max-height: 500px; /* Set a large enough value to accommodate the content */
}

.faq-item.active .faq-question {
  color: #ffab00; /* Active question color */
}
@media (max-width: 768px) {
  .stats {
    flex-wrap: wrap;
  }

  .stat-box {
    flex: 0 0 100%;
    margin-bottom: 10px;
  }
}