.page-support-faq {
  padding-top: var(--header-offset, 120px); /* Ensures content is not hidden by fixed header */
  background-color: #FFFFFF; /* Light background for the page */
  color: #333333; /* Dark text for contrast on light background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

.page-support-faq__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 80px 20px;
  min-height: 450px;
  overflow: hidden;
  color: #FFFFFF; /* White text on hero image */
}

.page-support-faq__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
  filter: brightness(0.7); /* Slightly dim the image for text readability */
}

.page-support-faq__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
}

.page-support-faq__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #FFFFFF;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-support-faq__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #F0F0F0;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6);
}

.page-support-faq__cta-button {
  display: inline-block;
  background-color: #FCBC45; /* Login button color for CTA */
  color: #000000; /* Black text for contrast */
  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;
  border: none;
  cursor: pointer;
}

.page-support-faq__cta-button:hover {
  background-color: #e0a53b;
  transform: translateY(-2px);
}

.page-support-faq__cta-button--small {
  padding: 10px 20px;
  font-size: 0.9em;
  margin-top: 15px;
}

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

.page-support-faq__section-title {
  font-size: 2.5em;
  color: #000000;
  text-align: center;
  margin-bottom: 50px;
  position: relative;
}

.page-support-faq__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: #FCBC45;
  margin: 15px auto 0;
}

.page-support-faq__faq-category {
  margin-bottom: 60px;
  background-color: #f9f9f9;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 30px;
}

.page-support-faq__category-title {
  font-size: 2em;
  color: #000000;
  margin-bottom: 30px;
  width: 100%;
}

.page-support-faq__accordion {
  flex: 2;
  min-width: 300px;
}

.page-support-faq__category-image {
  flex: 1;
  min-width: 250px;
  max-width: 400px;
  height: auto;
  border-radius: 10px;
  object-fit: cover;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.page-support-faq__accordion-item {
  margin-bottom: 15px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  overflow: hidden;
}

.page-support-faq__accordion-header {
  background-color: #000000; /* Primary color for header */
  color: #FFFFFF; /* White text for contrast */
  padding: 18px 25px;
  width: 100%;
  text-align: left;
  font-size: 1.15em;
  font-weight: bold;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.3s ease;
}

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

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

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

.page-support-faq__accordion-body {
  padding: 0 25px;
  background-color: #FFFFFF;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
}

.page-support-faq__accordion-body.active {
  max-height: 500px; /* Adjust as needed for content length */
  padding: 25px;
}

.page-support-faq__accordion-body p {
  margin: 0;
  color: #555555;
}

.page-support-faq__call-to-action {
  text-align: center;
  padding: 60px 20px;
  background-color: #000000; /* Dark background */
  color: #FFFFFF;
  border-radius: 12px;
  margin-top: 60px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.page-support-faq__cta-title {
  font-size: 2.2em;
  margin-bottom: 20px;
  color: #FFFFFF;
}

.page-support-faq__cta-text {
  font-size: 1.1em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #F0F0F0;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-support-faq__hero-title {
    font-size: 2.8em;
  }
  .page-support-faq__hero-description {
    font-size: 1.1em;
  }
  .page-support-faq__section-title {
    font-size: 2em;
  }
  .page-support-faq__faq-category {
    flex-direction: column;
    align-items: center;
  }
  .page-support-faq__category-image {
    order: -1; /* Image appears above accordion on smaller screens */
    margin-bottom: 30px;
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .page-support-faq__hero-section {
    padding: 60px 15px;
    min-height: 350px;
  }
  .page-support-faq__hero-title {
    font-size: 2.2em;
  }
  .page-support-faq__hero-description {
    font-size: 1em;
  }
  .page-support-faq__cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-support-faq__content-area {
    padding: 40px 15px;
  }
  .page-support-faq__section-title {
    font-size: 1.8em;
    margin-bottom: 40px;
  }
  .page-support-faq__faq-category {
    padding: 20px;
  }
  .page-support-faq__category-title {
    font-size: 1.6em;
    margin-bottom: 20px;
  }
  .page-support-faq__accordion-header {
    font-size: 1em;
    padding: 15px 20px;
  }
  .page-support-faq__accordion-body.active {
    padding: 20px;
  }
  .page-support-faq__call-to-action {
    padding: 40px 15px;
  }
  .page-support-faq__cta-title {
    font-size: 1.8em;
  }
  .page-support-faq__cta-text {
    font-size: 0.95em;
  }
  .page-support-faq img {
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 480px) {
  .page-support-faq__hero-title {
    font-size: 1.8em;
  }
  .page-support-faq__hero-description {
    font-size: 0.9em;
  }
  .page-support-faq__section-title {
    font-size: 1.5em;
  }
  .page-support-faq__category-title {
    font-size: 1.4em;
  }
  .page-support-faq__accordion-header {
    font-size: 0.9em;
    padding: 12px 15px;
  }
  .page-support-faq__cta-title {
    font-size: 1.5em;
  }
}