.faq-section {
  background: #f5f5f5;
  padding: 100px 0;
}

.faq-title {
  font-size: 42px;
  font-weight: 700;
  color: #0f172a;
}

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

.faq-item {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  margin-bottom: 20px;
  overflow: hidden;
  transition: 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.faq-question {
  padding: 15px 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-question h5 {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
}

.faq-icon {
  transition: 0.3s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  padding: 0 25px;
}
.faq-answer p {
  margin: 15px 0 20px;
  color: #475569;
  font-size: 15px;
  line-height: 1.6;
}

