body {
  font-family: 'Inter', sans-serif;
  background: #111; /* Black background */
  color: #FFD700;   /* Gold text */
  margin: 0;
  padding: 0;
}

.faq-section {
  min-height: 100vh;
  background: #111;
  padding: 120px 0 60px 0;
  margin-top: 40px; /* Add this line or increase the value as needed */
}

.faq-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #FFD700; /* Gold */
  text-align: center;
  margin-bottom: 2.5rem;
  letter-spacing: 0.03em;
}

/* FAQ Accordion Styles */
.faq-detail {
  background: #222; /* Dark card background */
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(255, 215, 0, 0.07); /* Gold shadow */
  margin-bottom: 1.2rem;
  overflow: hidden;
  transition: box-shadow 0.2s;
  border: none;
  padding: 0;
}

.faq-detail[open] {
  box-shadow: 0 4px 18px rgba(255, 215, 0, 0.13); /* Gold shadow */
}

.faq-detail summary {
  font-size: 1.13rem;
  font-weight: 700;
  color: #FFD700; /* Gold */
  padding: 1.2rem 1.5rem;
  cursor: pointer;
  outline: none;
  background: none;
  border: none;
  position: relative;
  list-style: none;
  transition: background 0.2s;
  letter-spacing: 0.01em;
}

.faq-detail summary::after {
  content: "+";
  position: absolute;
  right: 1.5rem;
  font-size: 1.5rem;
  color: #FFD700; /* Gold */
  font-weight: 700;
  transition: transform 0.2s;
}

.faq-detail[open] summary::after {
  content: "–";
}

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

.faq__content {
  padding: 0 1.5rem 1.2rem 1.5rem;
  color: gold; /* Gold */
  font-size: 1.07rem;
  border-top: 1px solid #333; /* Subtle dark border */
  background: #222; /* Dark card background */
  animation: sweep .35s ease-in;
}

@keyframes sweep {
  0% {opacity: 0; margin-top: -10px;}
  100% {opacity: 1; margin-top: 0px;}
}

/* Responsive tweaks */
@media (max-width: 991px) {
  .faq-title { font-size: 2rem; }
  .faq-section { padding: 100px 0 40px 0; }
}
@media (max-width: 767px) {
  .faq-title { font-size: 1.4rem; }
  .faq-section { padding: 80px 0 24px 0; }
}
