/* =========================
   FAQ SECTION
========================= */

.faq-section {
  min-height: 80vh;
  display: flex;
  align-items: center;
  padding: 20px 0;
  margin: 10px 0;
}

.faq-title {
  font-size: 28px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 4px;
}

.faq-subtitle {
  font-size: 14px;
  color: #9ca3af;
  margin-bottom: 32px;
}

/* Title */
.faq-titles {
  width: 40%;
  margin: 0 auto;
  font-size: 36px;
  font-weight: 700;
  text-align: center;
  color: black;
}

.faq-titles .highlights {
  color: #7c4dff;
}

.faq-subtitles {
  font-size: 14px;
  color: #6b7280;
  max-width: 720px;
  margin: 10px auto 0;
}

/* =========================
   FAQ LIST
========================= */

.faq-list {
  max-width: auto;
}

/* =========================
   FAQ ITEM
========================= */

.faq-item {
  background: #ffffff;
  border-radius: 16px;
  padding: 18px 20px;
  margin-bottom: 16px;
  border: 1px solid #eef2f7;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  color: #111827;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item .icon {
  font-size: 20px;
  color: #9ca3af;
  transition: transform 0.3s ease;
}

/* rotate icon when open */
.faq-item[open] .icon {
  transform: rotate(45deg);
}

/* =========================
   FAQ ANSWER
========================= */

.faq-item p {
  margin-top: 12px;
  font-size: 14px;
  line-height: 1.6;
  color: #6b7280;
  max-width: 700px;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 768px) {
  .faq-title {
    font-size: 24px;
  }

  .faq-list {
    max-width: 100%;
  }

  .faq-titles {
    width: 100%;
  }
}
