.faq-hero {
  max-width: 1200px;
  margin: 0 auto;
  padding: 50px 6% 20px;
}

.faq-hero-content {
  background: white;
  border-radius: 28px;
  padding: 42px 30px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
  text-align: center;
}

.faq-hero-content h1 {
  font-size: 40px;
  margin-bottom: 12px;
  color: #111;
}

.faq-hero-content p:last-child {
  color: #666;
  max-width: 700px;
  margin: 0 auto;
}

.faq-container {
  max-width: 860px;
  margin: 0 auto;
}

.faq-search-box {
  display: flex;
  justify-content: center;
  margin-bottom: 28px;
}

.faq-search-box input {
  max-width: 100%;
}

.faq {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-card {
  background: white;
  border-radius: 20px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  transition: 0.3s;
  border: 1px solid #ececec;
}

.faq-card:hover {
  transform: translateY(-3px);
}

.faq-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 20px;
  cursor: pointer;
}

.faq-header span {
  font-size: 20px;
  flex-shrink: 0;
}

.faq-header h3 {
  font-size: 17px;
  color: #111;
  margin: 0;
}

.faq-body {
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  color: #666;
  font-size: 14px;
  line-height: 1.7;
  transition: all 0.3s ease;
}

.faq-card.active .faq-body {
  max-height: 200px;
  padding: 0 20px 18px;
}

@media (max-width: 768px) {
  .faq-hero-content {
    padding: 32px 20px;
  }

  .faq-hero-content h1 {
    font-size: 30px;
  }

  .faq-header h3 {
    font-size: 15px;
  }
}