/* =========================
   FAQ PAGE STYLES
   ========================= */

.faq-section {
  padding: 90px 0 110px;
  background-color: #f7f9fb;
}

.faq-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Page header */
.faq-section h1 {
  font-size: 2.5rem;
  margin-bottom: 40px;
  color: #0b1f33;
}

/* Individual FAQ item */
.faq-item {
  background: #ffffff;
  border: 1px solid #e6e9ef;
  border-radius: 12px;
  padding: 20px 24px;
  margin-bottom: 16px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.04);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.faq-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.07);
}

/* Question */
.faq-question {
  font-size: 1.05rem;
  font-weight: 700;
  color: #0b1f33;
  margin-bottom: 8px;
}

/* Answer */
.faq-answer {
  font-size: 0.95rem;
  color: #5f6f7f;
  line-height: 1.6;
}

/* =========================
   RESPONSIVE
   ========================= */

@media (max-width: 768px) {
  .faq-section {
    padding: 70px 0 90px;
  }

  .faq-section h1 {
    font-size: 2.1rem;
  }
}
