.page-faq {
  color: #333333;
  font-family: Arial, sans-serif;
  line-height: 1.6;
  padding-top: var(--header-offset, 120px); /* Ensure content is not hidden by fixed header */
}

.page-faq__hero-section {
  background: linear-gradient(135deg, #3A1C71 0%, #D72638 100%);
  padding: 80px 20px;
  text-align: center;
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

.page-faq__hero-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.page-faq__hero-title {
  font-size: 3em;
  margin-bottom: 20px;
  font-weight: bold;
  color: #FFD700; /* Gold for prominence */
  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;
}

.page-faq__hero-cta-button {
  display: inline-block;
  background-color: #FFD700; /* Gold accent */
  color: #3A1C71;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  margin-bottom: 30px;
}

.page-faq__hero-cta-button:hover {
  background-color: #E6B800;
  transform: translateY(-2px);
}

.page-faq__hero-image {
  width: 100%;
  max-width: 1000px;
  height: auto;
  display: block;
  margin: 40px auto 0;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.page-faq__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
}

.page-faq__section-title {
  font-size: 2.5em;
  color: #3A1C71;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

.page-faq__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #D72638;
  border-radius: 2px;
}

.page-faq__accordion-container {
  margin-bottom: 60px;
}

.page-faq__accordion-item {
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.page-faq__accordion-header {
  width: 100%;
  padding: 20px 25px;
  background-color: #f9f9f9;
  color: #3A1C71;
  font-size: 1.3em;
  font-weight: bold;
  text-align: left;
  border: none;
  cursor: pointer;
  outline: none;
  transition: background-color 0.3s ease;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.page-faq__accordion-header::after {
  content: '+';
  font-size: 1.5em;
  transition: transform 0.3s ease;
}

.page-faq__accordion-header.active {
  background-color: #D72638;
  color: #ffffff;
}

.page-faq__accordion-header.active::after {
  content: '-';
  transform: rotate(180deg);
}

.page-faq__accordion-body {
  padding: 0 25px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-out;
  background-color: #ffffff;
  color: #555555;
}

.page-faq__accordion-body p {
  padding: 20px 0;
  margin: 0;
  font-size: 1.1em;
}

.page-faq__accordion-body a {
  color: #D72638;
  text-decoration: none;
  font-weight: bold;
}

.page-faq__accordion-body a:hover {
  text-decoration: underline;
}

.page-faq__cta-button {
  display: inline-block;
  background-color: #D72638;
  color: #ffffff;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
  margin-top: 15px;
}

.page-faq__cta-button:hover {
  background-color: #B01E2E;
  transform: translateY(-1px);
}

.page-faq__image-inline {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 20px auto;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.page-faq__cta-section {
  background-color: #3A1C71;
  padding: 80px 20px;
  text-align: center;
  color: #ffffff;
}

.page-faq__cta-container {
  max-width: 900px;
  margin: 0 auto;
}

.page-faq__cta-title {
  font-size: 2.8em;
  color: #FFD700;
  margin-bottom: 20px;
}

.page-faq__cta-description {
  font-size: 1.3em;
  margin-bottom: 40px;
}

.page-faq__cta-button--large {
  padding: 18px 40px;
  font-size: 1.3em;
  background-color: #D72638;
  color: #ffffff;
}

.page-faq__cta-button--large:hover {
  background-color: #B01E2E;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-faq__hero-title {
    font-size: 2.5em;
  }
  .page-faq__section-title {
    font-size: 2em;
  }
  .page-faq__accordion-header {
    font-size: 1.2em;
  }
  .page-faq__cta-title {
    font-size: 2.2em;
  }
}

@media (max-width: 768px) {
  .page-faq__hero-section {
    padding: 60px 15px;
  }
  .page-faq__hero-title {
    font-size: 2em;
  }
  .page-faq__hero-description {
    font-size: 1em;
  }
  .page-faq__hero-cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-faq__content-area {
    padding: 40px 15px;
  }
  .page-faq__section-title {
    font-size: 1.8em;
  }
  .page-faq__accordion-header {
    font-size: 1.1em;
    padding: 15px 20px;
  }
  .page-faq__accordion-body p {
    font-size: 1em;
    padding: 15px 0;
  }
  .page-faq__accordion-body {
    padding: 0 20px;
  }
  .page-faq__cta-section {
    padding: 60px 15px;
  }
  .page-faq__cta-title {
    font-size: 1.8em;
  }
  .page-faq__cta-description {
    font-size: 1.1em;
  }
  .page-faq__cta-button--large {
    padding: 15px 30px;
    font-size: 1.1em;
  }
  /* Ensure images do not overflow on mobile */
  .page-faq img {
    max-width: 100%;
    height: auto;
  }
  /* Specific content images must also adhere to minimum size */
  .page-faq__image-inline {
    min-width: 200px;
    min-height: 200px;
  }
}

@media (max-width: 480px) {
  .page-faq__hero-title {
    font-size: 1.8em;
  }
  .page-faq__section-title {
    font-size: 1.5em;
  }
  .page-faq__accordion-header {
    font-size: 1em;
    padding: 12px 15px;
  }
  .page-faq__accordion-body p {
    font-size: 0.95em;
  }
  .page-faq__accordion-body {
    padding: 0 15px;
  }
  .page-faq__cta-title {
    font-size: 1.6em;
  }
  .page-faq__cta-description {
    font-size: 1em;
  }
  .page-faq__cta-button--large {
    padding: 12px 25px;
    font-size: 1em;
  }
}