.page-faq {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #E0E0E0; /* Light text for dark background */
  background-color: #1A1A2E; /* Dark background */
}

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

.page-faq__highlight {
  color: #FFD700; /* Gold accent for keywords */
}

/* Hero Section */
.page-faq__hero {
  background: linear-gradient(135deg, #0A2E50 0%, #1A1A2E 100%);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  color: #FFFFFF;
}

.page-faq__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #FFFFFF;
  font-weight: bold;
}

.page-faq__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #E0E0E0;
}

.page-faq__hero-image {
  position: absolute;
  bottom: -20px;
  right: -50px;
  opacity: 0.1;
  width: 300px;
  height: auto;
  pointer-events: none;
  z-index: 0;
}

/* Buttons */
.page-faq__btn {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  font-size: 1em;
  text-align: center;
}

.page-faq__btn--primary {
  background-color: #FFD700; /* Gold */
  color: #0A2E50; /* Dark navy text */
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.page-faq__btn--primary:hover {
  background-color: #E5C100;
  transform: translateY(-2px);
}

.page-faq__btn--secondary {
  background-color: #0A2E50; /* Dark navy */
  color: #FFD700; /* Gold text */
  border: 1px solid #FFD700;
}

.page-faq__btn--secondary:hover {
  background-color: #1A4D7A;
  color: #FFFFFF;
  border-color: #FFFFFF;
  transform: translateY(-2px);
}

.page-faq__btn--small {
  padding: 8px 15px;
  font-size: 0.9em;
}

.page-faq__btn--large {
  padding: 15px 30px;
  font-size: 1.1em;
}

/* Section Styling */
.page-faq__section {
  padding: 60px 0;
  background-color: #1A1A2E;
}

.page-faq__section:nth-of-type(even) {
  background-color: #0A2E50;
}

.page-faq__section-title {
  font-size: 2.5em;
  text-align: center;
  margin-bottom: 20px;
  color: #FFFFFF;
  font-weight: bold;
}

.page-faq__section-subtitle {
  font-size: 1.1em;
  text-align: center;
  margin-bottom: 40px;
  color: #B0B0B0;
}

/* Accordion */
.page-faq__accordion {
  max-width: 900px;
  margin: 0 auto;
}

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

.page-faq__accordion-item:nth-child(even) {
  background-color: #1A1A2E;
}

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

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

.page-faq__accordion-header h3 {
  margin: 0;
  color: #FFFFFF;
  font-size: 1.3em;
}

.page-faq__icon {
  font-size: 1.8em;
  font-weight: bold;
  color: #FFD700;
  transition: transform 0.3s ease;
}

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

.page-faq__accordion-content {
  padding: 0 25px 20px;
  background-color: #2A2A44; /* Slightly lighter dark background for content */
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
}

.page-faq__accordion-content p {
  margin-top: 0;
  margin-bottom: 15px;
  color: #E0E0E0;
  font-size: 1.05em;
}

.page-faq__accordion-content a {
  margin-top: 10px;
  display: inline-block;
}

/* Related FAQs */
.page-faq__related-faqs {
  background-color: #0A2E50;
}

.page-faq__related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-faq__related-item {
  background-color: #1A1A2E;
  border-radius: 8px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.page-faq__related-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.page-faq__related-image {
  width: 100%;
  max-width: 150px;
  height: auto;
  margin-bottom: 20px;
  border-radius: 5px;
  object-fit: cover;
}

.page-faq__related-title {
  font-size: 1.4em;
  margin-bottom: 10px;
  color: #FFD700;
}

.page-faq__related-title a {
  color: #FFD700;
  text-decoration: none;
}

.page-faq__related-title a:hover {
  text-decoration: underline;
}

.page-faq__related-description {
  font-size: 0.95em;
  color: #B0B0B0;
  margin-bottom: 20px;
}

/* CTA Bottom */
.page-faq__cta-bottom {
  background: linear-gradient(45deg, #0A2E50, #1A1A2E);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  color: #FFFFFF;
}

.page-faq__cta-title {
  font-size: 2.8em;
  margin-bottom: 20px;
  color: #FFFFFF;
  font-weight: bold;
}

.page-faq__cta-description {
  font-size: 1.1em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #E0E0E0;
}

.page-faq__cta-image {
  position: absolute;
  bottom: -50px;
  left: -50px;
  opacity: 0.1;
  width: 250px;
  height: auto;
  pointer-events: none;
  z-index: 0;
}

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

  .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: 15px 20px;
  }

  .page-faq__accordion-header h3 {
    font-size: 1.1em;
  }

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

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

  .page-faq__btn--large {
    padding: 12px 25px;
    font-size: 1em;
  }

  .page-faq__related-grid {
    grid-template-columns: 1fr;
  }
}

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

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

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

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

  .page-faq__accordion-header h3 {
    font-size: 1em;
  }

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

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