.page-faq {
  color: #333333; /* Dark text for light body background #f4f4f4 */
}

.page-faq__hero-section {
  background-color: #000000; /* Main color for hero background */
  padding-top: var(--header-offset, 120px); /* Ensure space for fixed header */
  padding-bottom: 80px;
  text-align: center;
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

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

.page-faq__hero-title {
  font-size: 3.5em;
  color: #FFD700; /* Accent color for title */
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

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

.page-faq__hero-button {
  display: inline-block;
  background-color: #FFD700; /* Accent color for button */
  color: #000000;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

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

.page-faq__content-section {
  padding: 60px 0;
  background-color: #f4f4f4;
}

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

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

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

.page-faq__accordion-item {
  background-color: #ffffff;
  border-radius: 10px;
  margin-bottom: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

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

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

.page-faq__accordion-header h3 {
  margin: 0;
  color: #FFD700;
}

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

.page-faq__accordion-item.active .page-faq__accordion-icon {
  transform: rotate(45deg);
}

.page-faq__accordion-content {
  padding: 0 30px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-out, padding 0.5s ease-out;
  background-color: #fcfcfc;
  color: #333333;
}

.page-faq__accordion-item.active .page-faq__accordion-content {
  max-height: 500px; /* Adjust as needed */
  padding: 20px 30px 30px;
}

.page-faq__accordion-content p {
  margin-bottom: 15px;
  line-height: 1.7;
  font-size: 1.1em;
}

.page-faq__accordion-content p strong {
  color: #000000;
}

.page-faq__accordion-content a {
  color: #000000;
  text-decoration: underline;
  font-weight: bold;
}

.page-faq__accordion-content a:hover {
  color: #FFD700;
}

.page-faq__content-image {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 25px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  min-width: 200px; /* Enforce min size */
  min-height: 200px; /* Enforce min size */
}

.page-faq__cta-section {
  text-align: center;
  background-color: #000000;
  color: #ffffff;
  padding: 60px 30px;
  border-radius: 10px;
  margin-top: 60px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.page-faq__cta-text {
  font-size: 1.8em;
  margin-bottom: 30px;
  line-height: 1.5;
  color: #f0f0f0;
}

.page-faq__cta-button {
  display: inline-block;
  background-color: #FFD700;
  color: #000000;
  padding: 15px 35px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.2em;
  margin: 10px;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

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

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

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

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-faq__hero-title {
    font-size: 3em;
  }
  .page-faq__hero-description {
    font-size: 1.1em;
  }
  .page-faq__section-title {
    font-size: 2.2em;
  }
  .page-faq__accordion-header {
    font-size: 1.2em;
    padding: 20px 25px;
  }
  .page-faq__accordion-content {
    font-size: 0.95em;
  }
  .page-faq__cta-text {
    font-size: 1.5em;
  }
  .page-faq__cta-button {
    font-size: 1.1em;
    padding: 12px 25px;
  }
}

@media (max-width: 768px) {
  .page-faq__hero-section {
    padding-top: var(--header-offset, 80px); /* Adjust for mobile header offset if needed */
    padding-bottom: 60px;
  }
  .page-faq__hero-title {
    font-size: 2.5em;
  }
  .page-faq__hero-description {
    font-size: 1em;
  }
  .page-faq__section-title {
    font-size: 2em;
  }
  .page-faq__accordion-header {
    font-size: 1.1em;
    padding: 18px 20px;
  }
  .page-faq__accordion-content p {
    font-size: 1em;
  }
  .page-faq__accordion-item.active .page-faq__accordion-content {
    padding: 15px 20px 20px;
  }
  .page-faq__cta-text {
    font-size: 1.3em;
  }
  .page-faq__cta-button {
    width: 100%;
    margin-bottom: 15px;
    display: block;
  }
  .page-faq__cta-button:last-child {
    margin-bottom: 0;
  }
  .page-faq__content-image {
    max-width: 100%;
    height: auto;
    min-width: 200px; /* Enforce min size */
    min-height: 200px; /* Enforce min size */
  }
  .page-faq__container img,
  .page-faq__content-section img {
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 480px) {
  .page-faq__hero-title {
    font-size: 2em;
  }
  .page-faq__hero-description {
    font-size: 0.9em;
  }
  .page-faq__hero-button {
    font-size: 1em;
    padding: 10px 20px;
  }
  .page-faq__section-title {
    font-size: 1.8em;
  }
  .page-faq__accordion-header {
    font-size: 1em;
    padding: 15px;
  }
  .page-faq__accordion-icon {
    font-size: 1.5em;
  }
  .page-faq__accordion-content p {
    font-size: 0.9em;
  }
  .page-faq__accordion-item.active .page-faq__accordion-content {
    padding: 10px 15px 15px;
  }
  .page-faq__cta-text {
    font-size: 1.1em;
  }
  .page-faq__cta-button {
    font-size: 0.9em;
    padding: 10px 20px;
  }
}