.page-faq {
  color: #ffffff; /* Light text for dark body background */
  padding-top: var(--header-offset, 120px);
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

.page-faq__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 80px 20px;
  background: linear-gradient(135deg, #1A1A1A, #0a0a0a);
  gap: 40px;
}

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

.page-faq__hero-title {
  font-size: 3.2em;
  color: #FFD700; /* Gold for main title */
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

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

.page-faq__hero-button {
  display: inline-block;
  background-color: #FFD700;
  color: #1A1A1A;
  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;
  box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

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

.page-faq__hero-image {
  max-width: 100%;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.page-faq__hero-image img {
  display: block;
  width: 100%;
  height: auto;
  min-width: 200px; /* Ensure minimum size */
  min-height: 200px; /* Ensure minimum size */
}

.page-faq__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
  background-color: #1A1A1A;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
}

.page-faq__section-title {
  font-size: 2.5em;
  color: #FFD700;
  text-align: center;
  margin-bottom: 30px;
  text-shadow: 0 0 8px rgba(255, 215, 0, 0.3);
}

.page-faq__section-intro {
  font-size: 1.1em;
  text-align: center;
  margin-bottom: 50px;
  color: #cccccc;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

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

.page-faq__accordion-item {
  margin-bottom: 15px;
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 8px;
  overflow: hidden;
  background-color: #2a2a2a;
}

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

.page-faq__accordion-header h3 {
  margin: 0;
  color: inherit;
  font-size: 1em;
}

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

.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 {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out;
}

.page-faq__accordion-body--expanded {
  max-height: 1000px; /* Sufficiently large value for content */
  transition: max-height 0.6s ease-in;
}

.page-faq__accordion-inner {
  padding: 20px 25px;
  background-color: #2a2a2a;
  color: #f0f0f0;
}

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

.page-faq__accordion-inner p:last-child {
  margin-bottom: 0;
}

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

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

.page-faq__cta-section {
  background: linear-gradient(45deg, #FFD700, #e6c200);
  padding: 80px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  margin-top: 60px;
}

.page-faq__cta-content {
  max-width: 800px;
}

.page-faq__cta-title {
  font-size: 2.8em;
  color: #1A1A1A;
  margin-bottom: 20px;
  line-height: 1.2;
}

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

.page-faq__cta-button {
  display: inline-block;
  background-color: #1A1A1A;
  color: #FFD700;
  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;
  margin: 0 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

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

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

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

.page-faq__cta-image {
  max-width: 100%;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.page-faq__cta-image img {
  display: block;
  width: 100%;
  height: auto;
  min-width: 200px; /* Ensure minimum size */
  min-height: 200px; /* Ensure minimum size */
}

@media (min-width: 769px) {
  .page-faq__hero-section {
    flex-direction: row;
    text-align: left;
    padding: 100px 40px;
  }

  .page-faq__hero-content {
    flex: 1;
    margin-right: 40px;
    margin-bottom: 0;
  }

  .page-faq__hero-image {
    flex: 1;
    max-width: 50%;
  }

  .page-faq__cta-section {
    flex-direction: row;
    text-align: left;
    padding: 100px 40px;
  }

  .page-faq__cta-content {
    flex: 1;
    margin-right: 40px;
  }

  .page-faq__cta-image {
    flex: 1;
    max-width: 50%;
  }
}

@media (max-width: 768px) {
  .page-faq__hero-title {
    font-size: 2.2em;
  }

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

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

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

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

  .page-faq__accordion-inner {
    padding: 15px 20px;
  }

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

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

  .page-faq__cta-button {
    margin: 10px 0;
    width: 100%;
  }

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