.page-faq {
  font-family: Arial, sans-serif;
  color: #E0E0E0; /* Light gray for general text */
  background-color: #0A1931; /* Main background color */
}

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

.page-faq__hero {
  background: linear-gradient(135deg, #0A1931 0%, #1a3a60 100%); /* Gradient background for hero */
  padding: 80px 0;
  text-align: center;
  color: #FFD700; /* Gold for hero text */
}

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

.page-faq__subtitle {
  font-size: 1.2em;
  margin-bottom: 40px;
  color: #E0E0E0;
}

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

.page-faq__button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease;
  font-size: 1.1em;
}

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

.page-faq__button--primary:hover {
  background-color: #e6c200; /* Slightly darker gold on hover */
  color: #0A1931;
}

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

.page-faq__button--secondary:hover {
  background-color: #FFD700;
  color: #0A1931;
}

.page-faq__categories {
  padding: 60px 0;
  background-color: #0A1931;
}

.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__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.page-faq__category-card {
  background-color: #1A2F4B; /* Slightly lighter dark blue for cards */
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-faq__category-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.page-faq__card-icon {
  margin-bottom: 20px;
}

.page-faq__icon-image {
  width: 60px;
  height: 60px;
  object-fit: contain;
}

.page-faq__card-title {
  font-size: 1.6em;
  margin-bottom: 15px;
  color: #FFD700; /* Gold for card titles */
  font-weight: bold;
}

.page-faq__card-title a {
  color: inherit;
  text-decoration: none;
}

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

.page-faq__card-description {
  font-size: 1em;
  color: #B0B0B0; /* Lighter gray for description */
  line-height: 1.6;
  flex-grow: 1;
  margin-bottom: 20px;
}

.page-faq__card-link {
  display: inline-block;
  margin-top: auto;
  padding: 10px 20px;
  background-color: #FFD700; /* Gold button for card link */
  color: #0A1931;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.page-faq__card-link:hover {
  background-color: #e6c200;
}

.page-faq__call-to-action {
  padding: 80px 0;
  text-align: center;
  background-color: #0A1931;
  border-top: 1px solid rgba(255, 215, 0, 0.1);
}

.page-faq__call-to-action .page-faq__section-title {
  margin-bottom: 20px;
}

.page-faq__call-to-action .page-faq__description {
  font-size: 1.1em;
  color: #B0B0B0;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

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

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

  .page-faq__grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }

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

  .page-faq__button {
    width: 80%;
    margin: 0 auto;
  }
}

@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__category-card {
    padding: 20px;
  }

  .page-faq__card-title {
    font-size: 1.4em;
  }

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

  .page-faq__button {
    width: 90%;
  }
}