/* FAQ Section */
.faq-section {
  padding: 60px 0;
}
.faq-section .section-title h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 10px;
}
.faq-item {
  background: #fff;
  border: 1px solid #eef0f2;
  border-radius: 8px;
  margin-bottom: 12px;
  overflow: hidden;
}
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 24px;
  cursor: pointer;
  font-weight: 600;
  font-size: 16px;
  color: #36343a;
  transition: background 0.2s;
}
.faq-question:hover {
  background: #f8f9fa;
}
.faq-question .faq-icon {
  font-size: 20px;
  transition: transform 0.3s;
  color: #00ccff;
  flex-shrink: 0;
  margin-left: 12px;
}
.faq-item.active .faq-question .faq-icon {
  transform: rotate(45deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
}
.faq-item.active .faq-answer {
  max-height: 300px;
}
.faq-answer p {
  padding: 0 24px 18px;
  color: #555;
  line-height: 1.7;
  margin: 0;
}
