.page-faq {
  font-family: 'Arial', sans-serif;
  color: #E0E0E0; /* Light grey for general text on dark background */
  background-color: #0A1931; /* Main background color */
  line-height: 1.6;
}

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

.page-faq__hero {
  background: linear-gradient(135deg, #0A1931 0%, #1a3055 100%); /* Dark blue gradient */
  padding: 80px 0;
  text-align: center;
  color: #FFD700; /* Gold for hero title */
  border-bottom: 2px solid #FFD700;
}

.page-faq__title {
  font-size: 3.5em;
  margin-bottom: 20px;
  font-weight: bold;
  color: #FFD700; /* Gold for main title */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-faq__subtitle {
  font-size: 1.4em;
  margin-bottom: 40px;
  color: #C0C0C0; /* Lighter grey for subtitle */
}

.page-faq__hero-cta {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.page-faq__button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  font-size: 1.1em;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  text-align: center;
}

.page-faq__button--primary {
  background-color: #FFD700; /* Gold for primary button */
  color: #0A1931; /* Dark blue for text on gold */
}

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

.page-faq__button--secondary {
  background-color: transparent;
  color: #FFD700; /* Gold for secondary button text */
  border: 2px solid #FFD700;
}

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

.page-faq__section {
  padding: 60px 0;
  border-bottom: 1px solid rgba(255, 215, 0, 0.1);
}

.page-faq__section--content {
  background-color: #1a2a47; /* Slightly lighter dark blue for content sections */
}

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

.page-faq__accordion {
  margin-top: 30px;
}

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

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

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

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

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

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

.page-faq__accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-out, padding 0.5s ease-out;
  background-color: #1a2a47; /* Slightly lighter dark blue for content */
  color: #E0E0E0; /* Light grey for content text */
  padding: 0 25px;
}

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

.page-faq__accordion-content p {
  margin-bottom: 10px;
  font-size: 1.1em;
}

.page-faq__link {
  color: #FFD700; /* Gold for links */
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-faq__link:hover {
  color: #e6c200; /* Darker gold on hover */
  text-decoration: underline;
}

.page-faq__section--cta {
  text-align: center;
  background-color: #0A1931;
  padding-bottom: 80px;
}

.page-faq__cta-text {
  font-size: 1.2em;
  margin-bottom: 40px;
  color: #C0C0C0;
}

.page-faq__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.page-faq__image-wrapper {
  margin-top: 40px;
  display: flex;
  justify-content: center;
}

.page-faq__cta-image {
  max-width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
  max-height: 350px;
  object-fit: cover;
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-faq__title {
    font-size: 2.5em;
  }
  .page-faq__subtitle {
    font-size: 1.2em;
  }
  .page-faq__section-title {
    font-size: 2em;
  }
  .page-faq__accordion-header {
    font-size: 1.1em;
    padding: 15px 20px;
  }
  .page-faq__accordion-content {
    padding: 15px 20px;
  }
  .page-faq__button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-faq__hero-cta, .page-faq__cta-buttons {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 480px) {
  .page-faq__title {
    font-size: 2em;
  }
  .page-faq__subtitle {
    font-size: 1em;
  }
  .page-faq__section-title {
    font-size: 1.8em;
  }
  .page-faq__accordion-header {
    font-size: 1em;
    padding: 12px 15px;
  }
  .page-faq__accordion-content {
    padding: 12px 15px;
  }
  .page-faq__button {
    width: 100%;
    max-width: 280px;
  }
  .page-faq__hero, .page-faq__section {
    padding: 40px 0;
  }
}