.page-faq {
  color: #333333; /* Dark text for light body background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
  padding-top: var(--header-offset, 120px); /* Ensure content clears fixed header */
}

.page-faq__hero-section {
  background-color: #f8f8f8;
  padding: 80px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.page-faq__hero-content {
  max-width: 800px;
  margin-bottom: 40px;
}

.page-faq__hero-title {
  font-size: 2.8em;
  color: #000000;
  margin-bottom: 20px;
  line-height: 1.2;
  font-weight: bold;
}

.page-faq__hero-description {
  font-size: 1.2em;
  color: #555555;
  margin-bottom: 30px;
}

.page-faq__hero-button {
  display: inline-block;
  background-color: #FCBC45; /* Login color for primary action */
  color: #000000; /* Dark text for bright button */
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease;
}

.page-faq__hero-button:hover {
  background-color: #e0a53b;
}

.page-faq__hero-image-wrapper {
  max-width: 1000px;
  width: 100%;
}

.page-faq__hero-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-faq__accordion-section {
  padding: 60px 20px;
  background-color: #ffffff;
}

.page-faq__container {
  max-width: 1000px;
  margin: 0 auto;
}

.page-faq__section-title {
  font-size: 2.2em;
  color: #000000;
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
}

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

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

.page-faq__accordion-header:hover {
  background-color: #e5e5e5;
}

.page-faq__accordion-question {
  margin: 0;
  font-size: 1.1em;
}

.page-faq__accordion-icon {
  font-size: 1.5em;
  transition: transform 0.3s ease;
}

.page-faq__accordion-header[aria-expanded="true"] .page-faq__accordion-icon {
  transform: rotate(45deg);
}

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

.page-faq__accordion-body p {
  margin-bottom: 15px;
  color: #444444;
}

.page-faq__accordion-body a.page-faq__button {
  display: inline-block;
  background-color: #000000; /* Primary color for secondary actions */
  color: #ffffff; /* White text for dark button */
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-size: 0.9em;
  margin-top: 10px;
  margin-right: 10px;
  margin-bottom: 20px;
  transition: background-color 0.3s ease;
}

.page-faq__accordion-body a.page-faq__button:hover {
  background-color: #333333;
}

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

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

.page-faq__cta-title {
  font-size: 2.5em;
  color: #000000;
  margin-bottom: 20px;
  font-weight: bold;
}

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

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

.page-faq__cta-button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.page-faq__cta-button--primary {
  background-color: #FCBC45; /* Login color */
  color: #000000; /* Dark text for bright button */
  border: 2px solid #FCBC45;
}

.page-faq__cta-button--primary:hover {
  background-color: #e0a53b;
  border-color: #e0a53b;
}

.page-faq__cta-button--secondary {
  background-color: transparent;
  color: #000000; /* Dark text for transparent button */
  border: 2px solid #000000;
}

.page-faq__cta-button--secondary:hover {
  background-color: #000000;
  color: #ffffff;
}

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

.page-faq__cta-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-faq__hero-section {
    padding: 60px 20px;
  }

  .page-faq__hero-title {
    font-size: 2em;
  }

  .page-faq__hero-description {
    font-size: 1em;
  }

  .page-faq__section-title {
    font-size: 1.8em;
  }

  .page-faq__accordion-header {
    padding: 15px;
    font-size: 1em;
  }

  .page-faq__accordion-question {
    font-size: 1em;
  }

  .page-faq__accordion-body {
    padding: 0 15px;
  }

  .page-faq__cta-title {
    font-size: 1.8em;
  }

  .page-faq__cta-description {
    font-size: 0.9em;
  }

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

  .page-faq__cta-button {
    width: 100%;
    padding: 12px 20px;
    font-size: 1em;
  }

  /* Ensure images do not overflow on mobile */
  .page-faq img {
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 480px) {
  .page-faq__hero-section {
    padding: 40px 15px;
  }

  .page-faq__hero-title {
    font-size: 1.8em;
  }

  .page-faq__hero-description {
    font-size: 0.9em;
  }

  .page-faq__hero-button {
    padding: 12px 25px;
    font-size: 1em;
  }

  .page-faq__section-title {
    font-size: 1.6em;
  }

  .page-faq__accordion-item {
    margin-bottom: 10px;
  }

  .page-faq__accordion-header {
    padding: 12px;
  }

  .page-faq__accordion-question {
    font-size: 0.95em;
  }

  .page-faq__accordion-body p {
    font-size: 0.9em;
  }

  .page-faq__cta-title {
    font-size: 1.6em;
  }

  .page-faq__cta-description {
    font-size: 0.85em;
  }
}