/* Inherit main site theme */
:root {
  --bg: #0f1724;
  --card: #0b1220;
  --accent: #caa45a;
  --muted: #9aa3b2;
  --cream: #f6f2ec;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, 'Helvetica Neue', Arial;
  background: linear-gradient(180deg, #07101a 0%, #0f1724 100%);
  color: var(--cream);
}

.site-header, .site-footer {
  background: rgba(4, 8, 15, 0.65);
  backdrop-filter: blur(6px);
}

h1 {
  font-family: 'Playfair Display', serif;
  font-size: 38px;
  margin-bottom: 20px;
  color: var(--accent);
  text-align: center;
}

.page-faq {
  padding: 40px 20px;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item {
  background: var(--card);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 14px;
  padding: 18px 22px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0,0,0,0.4);
}

.faq-item:hover {
  border-color: var(--accent);
  box-shadow: 0 6px 18px rgba(0,0,0,0.55);
}

.faq-item h2 {
  margin: 0;
  font-size: 20px;
  color: var(--cream);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-item h2::after {
  content: "＋";
  font-size: 22px;
  color: var(--accent);
  transition: transform 0.3s ease;
}

.faq-item.active h2::after {
  content: "−";
  transform: rotate(90deg);
}

.faq-item p {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.5;
  display: none;
}

.faq-item.active p {
  display: block;
}

/* WhatsApp FAB */
.whatsapp-fab {
  position: fixed;
  left: 18px;
  bottom: 18px;
  background: #25D366;
  padding: 12px 14px;
  border-radius: 50%;
  box-shadow: 0 6px 18px rgba(0,0,0,0.4);
  text-decoration: none;
  font-size: 20px;
  color: #07101a;
}

@media (max-width: 768px) {
  .faq-item h2 {
    font-size: 18px;
  }
}
