/* ========================================
   FAQ SECTION
   ======================================== */
.faq-section {
  padding: 160px 0 100px;
  background: #E0E1DD;
  min-height: 100vh;
}

.faq-title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  color: #0D1B2A;
  margin-bottom: 50px;
  letter-spacing: 0.5px;
}

.faq-list {
  max-width: 860px;
}

/* ========================================
   FAQ ITEM
   ======================================== */
.faq-item {
  border-bottom: 1px solid rgba(65, 90, 119, 0.2);
}

.faq-item:first-child {
  border-top: 1px solid rgba(65, 90, 119, 0.2);
}

.faq-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px 0;
  min-height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: opacity 0.2s;
}

.faq-toggle:hover {
  opacity: 0.8;
}

.faq-number {
  font-family: 'Poppins', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  color: #E0E1DD;
  background: #0D1B2A;
  width: 44px;
  height: 44px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  letter-spacing: 1px;
}

.faq-question {
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  color: #0D1B2A;
  flex: 1;
  line-height: 1.5;
}

.faq-icon {
  font-family: 'Poppins', sans-serif;
  font-size: 1.4rem;
  font-weight: 300;
  color: #415A77;
  flex-shrink: 0;
  width: 28px;
  text-align: center;
  transition: transform 0.3s ease;
}

.faq-toggle[aria-expanded="true"] .faq-icon {
  transform: rotate(45deg);
}

/* ========================================
   FAQ ANSWER
   ======================================== */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-answer p {
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  color: #415A77;
  font-weight: 400;
  line-height: 1.8;
  padding: 0 0 24px 60px;
}

/* ========================================
   LEGAL PAGES
   ======================================== */
.legal-section {
  padding: 160px 0 100px;
  background: #E0E1DD;
  min-height: 100vh;
}

.legal-section h1 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  color: #0D1B2A;
  margin-bottom: 12px;
  letter-spacing: 0.5px;
}

.legal-section .legal-updated {
  font-family: 'Poppins', sans-serif;
  font-size: 0.8rem;
  color: #778DA9;
  margin-bottom: 40px;
}

.legal-section h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: #0D1B2A;
  margin: 32px 0 12px;
}

.legal-section p,
.legal-section li {
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  color: #415A77;
  font-weight: 400;
  line-height: 1.8;
}

.legal-section ul {
  list-style: disc;
  padding-left: 24px;
  margin: 8px 0 16px;
}

.legal-section a {
  color: #1B263B;
  text-decoration: underline;
}

.legal-content {
  max-width: 800px;
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 768px) {
  .faq-section {
    padding: 120px 0 80px;
  }

  .faq-toggle {
    gap: 14px;
    padding: 20px 0;
  }

  .faq-number {
    width: 34px;
    height: 34px;
    font-size: 0.65rem;
    border-radius: 6px;
  }

  .faq-question {
    font-size: 0.88rem;
  }

  .faq-answer p {
    padding: 0 0 20px 48px;
    font-size: 0.85rem;
  }
}
