/* ===== FAQ HERO ===== */
.faq-hero {
  height: 320px;
  position: relative;
  background-size: cover;
  background-position: center;
}

.faq-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
}

.faq-hero-overlay h1 {
  font-size: 42px;
  margin-bottom: 8px;
}

/* ===== FAQ AREA ===== */
.faq-area {
  padding: 80px 0;
}

.faq-list {
  max-width: 900px;
  margin: 0 auto;
}

/* FAQ ITEM */
.faq-item {
  background: #ffffff;
  border-radius: 14px;
  padding: 22px 24px;
  margin-bottom: 18px;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.06);
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item p {
  margin-top: 14px;
  color: #444;
  line-height: 1.6;
}

/* Arrow */
.faq-arrow {
  width: 10px;
  height: 10px;
  border-right: 2px solid #111;
  border-bottom: 2px solid #111;
  transform: rotate(45deg);
  transition: transform 0.3s ease;
}

details[open] .faq-arrow {
  transform: rotate(-135deg);
}

/* ===== MOBILE ===== */
@media (max-width: 768px) {
  .faq-hero-overlay h1 {
    font-size: 32px;
  }

  .faq-area {
    padding: 60px 0;
  }
}
