.faq-section {
  padding: 80px 0;
  background: var(--background);
  margin-top: 100px;
}

.faq {
  max-width: 900px;
  margin: auto;
}

.faq-item {
  background: #fff;
  border-radius: 8px;
  margin-bottom: 15px;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  cursor: pointer;
}

.faq-question h4 {
  margin: 0;
  font-size: 16px;
}

.faq-question i {
  transition: transform 0.3s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  transition: max-height 0.4s ease;
}

.faq-answer p {
  padding: 15px 0;
  color: var(--text-light);
}

.faq-item.active .faq-answer {
  max-height: 300px;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

/* Mobile */
@media (max-width: 768px) {
  .faq-question h4 {
    font-size: 15px;
  }
}

@media (max-width: 768px) {
  .faq-section {
    margin-top: 50px;
  }
}

.faq {
    padding: 0px !important;
   background-color: none !important;
}