.faq-section {
  max-width: 900px;
  margin: 80px auto;
  padding: 40px;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.05);
}

.faq-header {
  text-align: center;
  margin-bottom: 50px;
}

.faq-title {
  font-size: 2rem;
  font-weight: 700;
  color: #0d1b2a;
  margin-bottom: 8px;
}

.faq-subtitle {
  color: #495057;
  font-size: 1rem;
}

.faq-category {
  margin-bottom: 50px;
}

.faq-category h3 {
  font-size: 1.3rem;
  color: #0d1b2a;
  border-left: 4px solid #0d1b2a;
  padding-left: 10px;
  margin-bottom: 20px;
}

.faq-item {
  border-bottom: 1px solid #dee2e6;
  padding: 12px 0;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  font-size: 1rem;
  font-weight: 600;
  padding: 12px 0;
  cursor: pointer;
  color: #0d1b2a;
  transition: color 0.3s ease;
}

.faq-question:hover {
  color: #1b3a57;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  color: #495057;
  font-size: 0.95rem;
  line-height: 1.6;
  padding: 0;
}

.faq-item.open .faq-answer {
  max-height: 200px;
  padding: 8px 0 16px;
}