.page-faq {
  font-family: 'Arial', sans-serif;
  color: #E0E0E0; /* Light gray for general text on dark background */
  background-color: #0A192F; /* Primary background color */
}

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

.page-faq__hero {
  background: linear-gradient(135deg, #0A192F 0%, #1a3a60 100%); /* Dark blue gradient */
  padding: 80px 0 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-faq__title {
  font-size: 3.5em;
  color: #FFD700; /* Gold for main title */
  margin-bottom: 15px;
  font-weight: bold;
  line-height: 1.2;
}

.page-faq__subtitle {
  font-size: 1.3em;
  color: #B0B0B0; /* Lighter gray for subtitle */
  max-width: 800px;
  margin: 0 auto 40px;
  line-height: 1.6;
}

.page-faq__hero-image-wrapper {
  margin-top: 30px;
}

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

.page-faq__section {
  padding: 60px 0;
  background-color: #0A192F; /* Primary background color */
}

.page-faq__section--accordion {
  background-color: #0A192F;
}

.page-faq__section-title {
  font-size: 2.8em;
  color: #FFD700; /* Gold for section titles */
  text-align: center;
  margin-bottom: 50px;
  font-weight: bold;
}

.page-faq__accordion {
  background-color: #1a2b47; /* Slightly lighter dark blue for accordion background */
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
  overflow: hidden;
}

.page-faq__accordion-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.page-faq__accordion-item:last-child {
  border-bottom: none;
}

.page-faq__accordion-header {
  background-color: #21375a; /* Darker blue for header */
  color: #FFD700; /* Gold for question text */
  padding: 25px 30px;
  width: 100%;
  text-align: left;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.5em;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.page-faq__accordion-header:hover,
.page-faq__accordion-header[aria-expanded="true"] {
  background-color: #2a416a; /* Even darker blue on hover/active */
}

.page-faq__question {
  margin: 0;
  color: inherit; /* Inherit color from header */
}

.page-faq__accordion-icon {
  font-size: 2em;
  line-height: 1;
  transition: transform 0.3s ease;
  color: #FFD700;
}

.page-faq__accordion-header[aria-expanded="true"] .page-faq__accordion-icon {
  transform: rotate(45deg);
}

.page-faq__accordion-content {
  background-color: #1a2b47; /* Lighter dark blue for content */
  padding: 0 30px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
}

.page-faq__accordion-content[aria-hidden="false"] {
  max-height: 500px; /* Adjust as needed for content */
  padding: 20px 30px 30px;
}

.page-faq__accordion-content p {
  font-size: 1.1em;
  line-height: 1.8;
  margin-bottom: 15px;
  color: #E0E0E0; /* Light gray for answer text */
}

.page-faq__accordion-content strong {
  color: #FFD700; /* Gold for emphasized text */
}

.page-faq__image--inline {
  max-width: 100%;
  height: auto;
  margin-top: 15px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-faq__btn {
  display: inline-block;
  background-color: #FFD700; /* Gold for buttons */
  color: #0A192F; /* Dark blue for button text */
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.2s ease;
  margin-top: 20px;
  border: none;
  cursor: pointer;
}

.page-faq__btn:hover {
  background-color: #e6c200; /* Slightly darker gold on hover */
  transform: translateY(-2px);
}

.page-faq__cta-section {
  background-color: #1a2b47; /* Dark blue for CTA section */
  padding: 80px 0;
  text-align: center;
}

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

.page-faq__cta-title {
  font-size: 2.5em;
  color: #FFD700; /* Gold for CTA title */
  margin-bottom: 20px;
}

.page-faq__cta-text {
  font-size: 1.2em;
  color: #E0E0E0; /* Light gray for CTA text */
  line-height: 1.7;
  margin-bottom: 40px;
}

.page-faq__cta-buttons .page-faq__btn {
  margin: 0 15px;
  min-width: 180px;
}

.page-faq__btn--primary {
  background-color: #FFD700;
  color: #0A192F;
}

.page-faq__btn--primary:hover {
  background-color: #e6c200;
}

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

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

/* Responsive Design */
@media (max-width: 768px) {
  .page-faq__title {
    font-size: 2.5em;
  }

  .page-faq__subtitle {
    font-size: 1.1em;
  }

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

  .page-faq__accordion-header {
    font-size: 1.2em;
    padding: 20px 25px;
  }

  .page-faq__accordion-content[aria-hidden="false"] {
    padding: 15px 25px 25px;
  }

  .page-faq__accordion-content p {
    font-size: 1em;
  }

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

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

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

  .page-faq__cta-buttons .page-faq__btn {
    margin: 0;
    width: 100%;
  }
}

@media (max-width: 480px) {
  .page-faq__title {
    font-size: 2em;
  }

  .page-faq__subtitle {
    font-size: 0.9em;
  }

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

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

  .page-faq__accordion-content[aria-hidden="false"] {
    padding: 10px 20px 20px;
  }

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