@charset "UTF-8";
/* Styling specific to the FAQ page */

.faq-page {
  padding: 2rem;
  background-color: #111;
  color: #fff;
  font-family: 'Anton', sans-serif;
}

.faq-page h1,
.faq-page h2 {
  font-family: 'Bebas Neue', sans-serif;
  color: #e53935;
  letter-spacing: 1px;
  margin-bottom: 1rem;
}

.faq-page h1 {
  font-size: 3rem;
  text-align: center;
  /* Add extra top margin so the heading is not hidden by the fixed header */
  margin-top: 5rem;
}

.faq-page h2 {
  font-size: 2rem;
  margin-top: 3rem;
}

/* Accordion styling using details/summary */
.faq-list {
  max-width: 800px;
  margin: 2rem auto;
}

.faq-list details {
  background-color: #1a1a1a;
  border-left: 4px solid #3399ff;
  margin-bottom: 1rem;
  border-radius: 6px;
  padding: 1rem 1.5rem;
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.faq-list details:hover {
  background-color: #222;
  transform: translateY(-2px);
}

.faq-list summary {
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.5rem;
  list-style: none;
}

.faq-list details p {
  margin-top: 0.5rem;
  font-size: 1rem;
  line-height: 1.5;
  /* Use a lighter, more readable font for answers */
  font-family: 'Open Sans', sans-serif;
  font-weight: 400;
  color: #ccc;
}

/* CTA styling */
.faq-cta {
  text-align: center;
  margin: 4rem auto;
  padding: 2rem;
  background-color: #1e1e1e;
  border-radius: 8px;
}

.faq-cta .xola-checkout {
  margin-top: 1rem;
}

/* Footer logo sizing: ensure the logo in the footer is smaller and consistent */
.footer-logo img {
  /* Shrink footer logo size to harmonize with the rest of the site */
  max-width: 35px;
  width: 100%;
  height: auto;
}
