.page-faq {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Default light text for dark body background */
  background-color: #000000; /* Ensure consistency with body background */
}

.page-faq__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

/* Hero Section */
.page-faq__hero-section {
  position: relative;
  padding: 80px 20px;
  padding-top: var(--header-offset, 120px); /* Account for fixed header */
  text-align: center;
  background: linear-gradient(135deg, #8B0000 0%, #FFD700 100%); /* Brand colors gradient */
  color: #ffffff;
}

.page-faq__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  font-weight: bold;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-faq__hero-description {
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto 30px auto;
}

.page-faq__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.page-faq__btn-primary,
.page-faq__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  min-width: 180px;
  text-align: center;
  box-sizing: border-box;
}

.page-faq__btn-primary {
  background-color: #FFD700; /* Gold */
  color: #000000; /* Dark text for gold background */
  border: 2px solid #FFD700;
}

.page-faq__btn-primary:hover {
  background-color: #e6c200;
  border-color: #e6c200;
  color: #000000;
}

.page-faq__btn-secondary {
  background-color: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
}

.page-faq__btn-secondary:hover {
  background-color: #ffffff;
  color: #8B0000; /* Dark red text for white background */
}

/* Content Area */
.page-faq__content-area {
  padding: 60px 20px;
  background-color: #0d0d0d; /* Slightly lighter dark background */
  color: #ffffff;
}

.page-faq__section-title {
  font-size: 2.5em;
  color: #FFD700;
  text-align: center;
  margin-bottom: 20px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
}

.page-faq__section-intro {
  font-size: 1.1em;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 50px auto;
  color: #f0f0f0;
}

/* FAQ List */
.page-faq__faq-list {
  margin-top: 40px;
}

.page-faq__faq-item {
  background-color: rgba(255, 255, 255, 0.08); /* Semi-transparent white card */
  border-radius: 10px;
  margin-bottom: 15px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.page-faq__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  font-size: 1.2em;
  font-weight: bold;
  color: #FFD700; /* Gold text for question */
  background-color: rgba(255, 255, 255, 0.05);
  transition: background-color 0.3s ease;
}

.page-faq__faq-question:hover {
  background-color: rgba(255, 255, 255, 0.12);
}

.page-faq__faq-question h3 {
  margin: 0;
  color: inherit;
}

.page-faq__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  transition: transform 0.3s ease;
}

.page-faq__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 25px;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
  color: #f0f0f0;
}

.page-faq__faq-answer p {
  margin-bottom: 15px;
  font-size: 1em;
}

.page-faq__faq-answer p:last-child {
  margin-bottom: 0;
}

.page-faq__faq-item.active .page-faq__faq-question {
  background-color: rgba(255, 255, 255, 0.15);
}

.page-faq__faq-item.active .page-faq__faq-answer {
  max-height: 1000px !important; /* Sufficiently large to accommodate content */
  padding: 20px 25px;
}

.page-faq__faq-item.active .page-faq__faq-toggle {
  transform: rotate(45deg);
}

/* Contact CTA */
.page-faq__contact-cta {
  background-color: #8B0000; /* Dark red background */
  border-radius: 10px;
  padding: 40px;
  text-align: center;
  margin-top: 60px;
  color: #ffffff;
}

.page-faq__contact-title {
  font-size: 2em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-faq__contact-text {
  font-size: 1.1em;
  margin-bottom: 30px;
}

/* Promotion Banner */
.page-faq__promotion-banner {
  padding: 60px 20px;
  background-color: #000000;
  color: #ffffff;
  text-align: center;
}

.page-faq__promotion-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.page-faq__promotion-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  object-fit: cover;
}

.page-faq__promotion-title {
  font-size: 2.5em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-faq__promotion-description {
  font-size: 1.1em;
  margin-bottom: 30px;
  color: #f0f0f0;
}

/* Responsive Design */
@media (min-width: 769px) {
  .page-faq__promotion-content {
    flex-direction: row;
    text-align: left;
  }
  .page-faq__promotion-image {
    flex-basis: 50%;
  }
  .page-faq__promotion-text {
    flex-basis: 50%;
  }
}

@media (max-width: 1024px) {
  .page-faq__hero-title {
    font-size: 3em;
  }
  .page-faq__section-title {
    font-size: 2em;
  }
  .page-faq__faq-question {
    font-size: 1.1em;
  }
  .page-faq__contact-title {
    font-size: 1.8em;
  }
  .page-faq__promotion-title {
    font-size: 2em;
  }
}

@media (max-width: 768px) {
  .page-faq__hero-title {
    font-size: 2.5em;
  }
  .page-faq__hero-description {
    font-size: 1em;
  }
  .page-faq__hero-section {
    padding: 60px 15px;
    padding-top: var(--header-offset, 120px) !important; /* Ensure mobile header offset */
  }
  .page-faq__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-faq__btn-primary,
  .page-faq__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 20px;
    font-size: 1em;
    white-space: normal !important;
    word-wrap: break-word !important;
  }
  .page-faq__content-area {
    padding: 40px 15px;
  }
  .page-faq__section-title {
    font-size: 1.8em;
  }
  .page-faq__section-intro {
    font-size: 0.95em;
  }
  .page-faq__faq-question {
    font-size: 1em;
    padding: 18px 20px;
  }
  .page-faq__faq-answer {
    padding: 15px 20px;
  }
  .page-faq__contact-cta {
    padding: 30px 20px;
  }
  .page-faq__contact-title {
    font-size: 1.5em;
  }
  .page-faq__contact-text {
    font-size: 0.95em;
  }
  .page-faq__promotion-banner {
    padding: 40px 15px;
  }
  .page-faq__promotion-title {
    font-size: 1.8em;
  }
  .page-faq__promotion-description {
    font-size: 0.95em;
  }
  .page-faq__promotion-content {
    gap: 20px;
  }

  /* Mobile image responsiveness */
  .page-faq img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-faq__section,
  .page-faq__card,
  .page-faq__container,
  .page-faq__promotion-content {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow-x: hidden !important;
  }
  .page-faq__faq-item {
    width: 100% !important;
    box-sizing: border-box !important;
  }
}