.page-faq {
  color: #ffffff; /* Light text for dark body background */
  padding-top: var(--header-offset, 120px); /* Ensure space for fixed header */
}

.page-faq__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
  text-align: center;
  background: linear-gradient(135deg, rgba(26, 32, 44, 0.9), rgba(0, 0, 0, 0.8));
  gap: 30px;
}

.page-faq__hero-content {
  max-width: 800px;
  z-index: 1;
}

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

.page-faq__hero-description {
  font-size: 1.2em;
  color: #f0f0f0;
  margin-bottom: 30px;
  line-height: 1.6;
}

.page-faq__hero-button {
  display: inline-block;
  background-color: #FFD700;
  color: #1A202C;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-faq__hero-button:hover {
  background-color: #e6c200;
  transform: translateY(-3px);
}

.page-faq__hero-image {
  width: 100%;
  max-width: 1000px; /* Adjust as needed */
  margin-top: 40px;
}

.page-faq__hero-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  min-width: 200px; /* Ensure min size */
  min-height: 200px; /* Ensure min size */
}

.page-faq__accordion-section {
  padding: 80px 20px;
  background-color: #1A202C;
}

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

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

.page-faq__section-description {
  font-size: 1.1em;
  color: #cccccc;
  text-align: center;
  margin-bottom: 50px;
  line-height: 1.6;
}

.page-faq__accordion-item {
  background-color: rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.page-faq__accordion-header {
  font-size: 1.3em;
  color: #FFD700;
  padding: 20px 25px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.3s ease;
  font-weight: 600;
}

.page-faq__accordion-header:hover {
  background-color: rgba(255, 255, 255, 0.15);
}

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

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

.page-faq__accordion-content {
  padding: 0 25px 20px;
  color: #e0e0e0;
  font-size: 1em;
  line-height: 1.7;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-out, padding 0.5s ease-out;
}

.page-faq__accordion-content p {
  margin-bottom: 15px;
}

.page-faq__accordion-content a {
  color: #FFD700;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-faq__accordion-content a:hover {
  color: #e6c200;
  text-decoration: underline;
}

.page-faq__button {
  display: inline-block;
  background-color: #FFD700;
  color: #1A202C;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  margin-top: 15px;
  border: none;
  cursor: pointer;
}

.page-faq__button:hover {
  background-color: #e6c200;
  transform: translateY(-2px);
}

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

.page-faq__cta-title {
  font-size: 2.5em;
  color: #FFD700;
  margin-bottom: 25px;
  font-weight: 700;
}

.page-faq__cta-description {
  font-size: 1.15em;
  color: #cccccc;
  max-width: 800px;
  margin: 0 auto 40px;
  line-height: 1.6;
}

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

.page-faq__cta-button {
  display: inline-block;
  padding: 15px 35px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease, border-color 0.3s ease;
  border: 2px solid transparent;
  cursor: pointer;
}

.page-faq__cta-button--primary {
  background-color: #FFD700;
  color: #1A202C;
}

.page-faq__cta-button--primary:hover {
  background-color: #e6c200;
  transform: translateY(-3px);
}

.page-faq__cta-button--secondary {
  background-color: transparent;
  color: #FFD700;
  border-color: #FFD700;
}

.page-faq__cta-button--secondary:hover {
  background-color: rgba(255, 215, 0, 0.1);
  transform: translateY(-3px);
  border-color: #e6c200;
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-faq__hero-section {
    padding: 40px 15px;
  }

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

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

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

  .page-faq__hero-image img {
    max-width: 100%;
    height: auto;
    min-width: 200px;
    min-height: 200px;
  }

  .page-faq__accordion-section {
    padding: 50px 15px;
  }

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

  .page-faq__section-description {
    font-size: 0.95em;
  }

  .page-faq__accordion-header {
    font-size: 1.1em;
    padding: 18px 20px;
  }

  .page-faq__accordion-content {
    padding: 0 20px 15px;
    font-size: 0.9em;
  }

  .page-faq__button {
    padding: 8px 15px;
    font-size: 0.85em;
  }

  .page-faq__cta-section {
    padding: 50px 15px;
  }

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

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

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

  .page-faq__cta-button {
    width: 100%;
    max-width: 300px;
    font-size: 1em;
  }
}

/* Ensure content area images are responsive and not too small on mobile */
@media (max-width: 768px) {
  .page-faq img {
    max-width: 100%;
    height: auto;
    min-width: 200px;
    min-height: 200px;
  }
}

/* Generic img rules for content area to prevent small sizes */
.page-faq img:not(.page-faq__hero-image img) {
  min-width: 200px; 
  min-height: 200px; 
  width: auto; 
  height: auto; 
  max-width: 100%; /* Ensure responsiveness */
}

/* Additional rules for any img within .page-faq to meet min size requirements */
.page-faq__accordion-content img, 
.page-faq__content-area img {
  width: 100%; /* Occupy available space, will be constrained by max-width */
  height: auto;
  min-width: 200px;
  min-height: 200px;
}