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

.page-faq__hero-section {
  background-color: #0A1931; /* Main brand color for hero background */
  padding: 80px 20px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

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

.page-faq__hero-title {
  font-size: 3.2em;
  color: #FFD700; /* Gold for emphasis */
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  font-weight: 700;
}

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

.page-faq__hero-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 40px;
}

.page-faq__button {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 8px;
  font-size: 1.1em;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  white-space: nowrap;
}

.page-faq__button--primary {
  background-color: #FFD700; /* Gold primary button */
  color: #0A1931;
  border: 2px solid #FFD700;
}

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

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

.page-faq__button--secondary:hover {
  background-color: #FFD700;
  color: #0A1931;
  transform: translateY(-2px);
}

.page-faq__hero-image {
  width: 100%;
  max-width: 1000px; /* Max width for the hero image */
  height: auto;
  display: block;
  margin: 40px auto 0;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

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

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

.page-faq__section-intro {
  font-size: 1.1em;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 50px;
  line-height: 1.7;
  color: #e0e0e0;
}

.page-faq__accordion-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.page-faq__accordion-item {
  background-color: rgba(255, 255, 255, 0.08); /* Slightly transparent white for cards */
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

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

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

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

.page-faq__accordion-content {
  padding: 0 30px 25px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-out, padding 0.5s ease-out;
}

.page-faq__accordion-item.active .page-faq__accordion-content {
  max-height: 1500px; /* Sufficiently large to accommodate content */
  padding-top: 15px;
}

.page-faq__question-title {
  font-size: 1.3em;
  color: #FFD700;
  margin-top: 20px;
  margin-bottom: 10px;
  font-weight: 600;
}

.page-faq__accordion-content p {
  font-size: 1.05em;
  line-height: 1.6;
  margin-bottom: 15px;
  color: #e0e0e0;
}

.page-faq__accordion-content p:last-of-type {
  margin-bottom: 0;
}

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

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

.page-faq__content-image {
  width: 100%;
  max-width: 600px; /* Image size for content area */
  height: auto;
  display: block;
  margin: 30px auto;
  border-radius: 8px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  min-width: 200px;
  min-height: 200px;
}

.page-faq__call-to-action {
  background-color: rgba(10, 25, 49, 0.7); /* Dark blue with transparency */
  padding: 60px 30px;
  text-align: center;
  border-radius: 12px;
  margin-top: 60px;
  border: 1px solid rgba(255, 215, 0, 0.2);
}

.page-faq__call-to-action-title {
  font-size: 2.5em;
  color: #FFD700;
  margin-bottom: 20px;
  font-weight: 700;
}

.page-faq__call-to-action-description {
  font-size: 1.15em;
  color: #e0e0e0;
  max-width: 800px;
  margin: 0 auto 30px;
  line-height: 1.6;
}

@media (max-width: 1024px) {
  .page-faq__hero-title {
    font-size: 2.8em;
  }
  .page-faq__accordion-header {
    font-size: 1.6em;
  }
  .page-faq__section-title {
    font-size: 2.4em;
  }
  .page-faq__call-to-action-title {
    font-size: 2.2em;
  }
}

@media (max-width: 768px) {
  .page-faq__hero-section {
    padding: 60px 15px 30px;
  }
  .page-faq__hero-title {
    font-size: 2.2em;
  }
  .page-faq__hero-description {
    font-size: 1em;
  }
  .page-faq__hero-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-faq__button {
    width: 100%;
    max-width: 280px;
    margin: 0 auto;
  }
  .page-faq__content-area {
    padding: 40px 15px;
  }
  .page-faq__section-title {
    font-size: 2em;
  }
  .page-faq__section-intro {
    font-size: 0.95em;
    margin-bottom: 40px;
  }
  .page-faq__accordion-header {
    font-size: 1.4em;
    padding: 20px 25px;
  }
  .page-faq__question-title {
    font-size: 1.2em;
  }
  .page-faq__accordion-content p {
    font-size: 0.95em;
  }
  .page-faq__content-image {
    max-width: 100%;
    height: auto;
  }
  .page-faq__call-to-action {
    padding: 40px 20px;
  }
  .page-faq__call-to-action-title {
    font-size: 1.8em;
  }
  .page-faq__call-to-action-description {
    font-size: 1em;
  }
  .page-faq img {
    max-width: 100%;
    height: auto;
    min-width: 200px;
    min-height: 200px;
  }
}

@media (max-width: 480px) {
  .page-faq__hero-title {
    font-size: 1.8em;
  }
  .page-faq__accordion-header {
    font-size: 1.2em;
    padding: 18px 20px;
  }
  .page-faq__question-title {
    font-size: 1.1em;
  }
  .page-faq__section-title {
    font-size: 1.8em;
  }
  .page-faq__call-to-action-title {
    font-size: 1.6em;
  }
}