.page-faq {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  line-height: 1.6;
  color: #FFF5E1; /* Text Main */
  background-color: #B71C1C; /* Background */
}

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

.page-faq__hero-section {
  padding-top: 10px; /* Rely on body padding-top for header offset */
  padding-bottom: 60px;
  background-color: #B71C1C; /* Background */
  text-align: center;
}

.page-faq__hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.page-faq__main-title {
  font-size: 2.8em;
  font-weight: 700;
  line-height: 1.2;
  color: #FFD86A; /* Gold for title contrast */
  margin-bottom: 20px;
}

.page-faq__intro-text {
  font-size: 1.1em;
  margin-bottom: 30px;
  color: #FFF5E1; /* Text Main */
}

.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: 14px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1em;
  transition: all 0.3s ease;
  box-sizing: border-box;
  max-width: 100%;
  white-space: normal;
  word-wrap: break-word;
}

.page-faq__btn-primary {
  background: linear-gradient(180deg, #FFD86A 0%, #E6B800 100%); /* Button gradient */
  color: #000000; /* Dark text for contrast on gold */
  border: none;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-faq__btn-primary:hover {
  background: linear-gradient(180deg, #E6B800 0%, #FFD86A 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.page-faq__btn-secondary {
  background-color: transparent;
  color: #FFD86A; /* Gold for text */
  border: 2px solid #FFD86A; /* Border Gold */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-faq__btn-secondary:hover {
  background-color: #FFD86A;
  color: #000000; /* Dark text on gold hover */
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.page-faq__faq-list-section {
  background-color: #D32F2F; /* Card BG */
  padding: 60px 0;
}

.page-faq__section-title {
  font-size: 2.2em;
  color: #FFD86A; /* Gold for title */
  text-align: center;
  margin-bottom: 20px;
  font-weight: 700;
}

.page-faq__section-description {
  font-size: 1.05em;
  color: #FFF5E1; /* Text Main */
  text-align: center;
  max-width: 900px;
  margin: 0 auto 40px;
}

.page-faq__faq-items {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.page-faq__faq-item {
  background-color: #7A0E0E; /* Deep Red for FAQ item background */
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  color: #FFF5E1; /* Text Main */
}

.page-faq__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  font-size: 1.2em;
  font-weight: 600;
  cursor: pointer;
  color: #FFD86A; /* Gold for question text */
  list-style: none;
  user-select: none;
  position: relative;
}

.page-faq__faq-question::-webkit-details-marker {
  display: none;
}

.page-faq__faq-question::marker {
  display: none;
}

.page-faq__faq-toggle {
  font-size: 1.5em;
  font-weight: 300;
  line-height: 1;
  margin-left: 15px;
  transition: transform 0.3s ease;
}

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

.page-faq__faq-answer {
  padding: 0 25px 20px;
  font-size: 1em;
  color: #FFF5E1; /* Text Main */
  line-height: 1.7;
}

.page-faq__faq-answer p {
  margin-bottom: 10px;
}

.page-faq__faq-answer a {
  color: #FFD86A; /* Gold for links in answers */
  text-decoration: underline;
}

.page-faq__faq-answer a:hover {
  color: #FFF5E1; /* Text Main on hover */
}

.page-faq__content-image {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 20px auto;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-faq__call-to-action-bottom {
  background-color: #B71C1C; /* Background */
  padding: 80px 0;
  text-align: center;
}

.page-faq__cta-content {
  max-width: 800px;
  margin: 0 auto;
}

.page-faq__cta-title {
  font-size: 2.5em;
  color: #FFD86A; /* Gold for title */
  margin-bottom: 20px;
  font-weight: 700;
}

.page-faq__cta-description {
  font-size: 1.1em;
  color: #FFF5E1; /* Text Main */
  margin-bottom: 40px;
}

.page-faq__cta-bottom-btn {
  /* Uses .page-faq__btn-primary styles */
}

/* -------------------------------------------------------- */
/* Mobile Responsive Styles */
/* -------------------------------------------------------- */
@media (max-width: 768px) {
  .page-faq__container {
    padding: 0 15px !important;
  }

  .page-faq__hero-section {
    padding-top: 10px !important; /* Fixed header spacing */
    padding-bottom: 40px !important;
  }

  .page-faq__main-title {
    font-size: 2em !important;
    margin-bottom: 15px !important;
  }

  .page-faq__intro-text {
    font-size: 1em !important;
    margin-bottom: 25px !important;
  }

  .page-faq__cta-buttons {
    flex-direction: column !important;
    gap: 15px !important;
  }

  .page-faq__btn-primary,
  .page-faq__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    font-size: 1em !important;
    padding: 12px 20px !important;
  }

  .page-faq__faq-list-section {
    padding: 40px 0 !important;
  }

  .page-faq__section-title {
    font-size: 1.8em !important;
    margin-bottom: 15px !important;
  }

  .page-faq__section-description {
    font-size: 0.95em !important;
    margin-bottom: 30px !important;
  }

  .page-faq__faq-item {
    margin-bottom: 10px !important;
  }

  .page-faq__faq-question {
    font-size: 1.1em !important;
    padding: 15px 20px !important;
  }

  .page-faq__faq-toggle {
    font-size: 1.3em !important;
  }

  .page-faq__faq-answer {
    font-size: 0.95em !important;
    padding: 0 20px 15px !important;
  }

  .page-faq__content-image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    margin: 15px auto !important;
  }

  .page-faq__call-to-action-bottom {
    padding: 60px 0 !important;
  }

  .page-faq__cta-title {
    font-size: 2em !important;
    margin-bottom: 15px !important;
  }

  .page-faq__cta-description {
    font-size: 1em !important;
    margin-bottom: 30px !important;
  }

  /* General image and container responsiveness */
  .page-faq img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    box-sizing: border-box !important;
  }

  .page-faq__section, .page-faq__card, .page-faq__container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
}