/* ===============================
   FAQ SECTION
   =============================== */

.faq-section {
  padding: 80px 20px;
  background: #f9fafb;
}

.section-title {
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 50px;
  color: #111827;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  max-width: 1100px;
  margin: auto;
}

.faq-column {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Card */
.faq-item {
  background: #ffffff;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  cursor: pointer;
  overflow: hidden;
  margin-bottom: 10px !important;
}

/* Question */
.faq-question {
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question h3 {
  font-size: 16px;
  font-weight: 600;
  color: #111827;
}

.faq-question i {
  transition: transform 0.3s ease;
}

/* Answer */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-answer p {
  font-size: 14px;
  color: #4b5563;
  line-height: 1.6;
}

/* Active State */
.faq-item.active .faq-answer {
  max-height: 300px;
  padding-bottom: 20px;
}

.faq-item.active .faq-question i {
  transform: rotate(45deg);
}

/* Mobile */
@media (max-width: 768px) {
  .faq-grid {
    grid-template-columns: 1fr;
  }
}
