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

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

.page-faq__section {
  padding: 60px 0;
}

.page-faq__section-title {
  font-size: 2.5em;
  color: #E7C200; /* Accent color for titles */
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
}

.page-faq__hero {
  background: linear-gradient(135deg, #1A2E44 0%, #3a506b 100%); /* Slightly lighter gradient */
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-faq__hero-title {
  font-size: 3.5em;
  color: #E7C200; /* Accent color */
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

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

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

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

.page-faq__btn--primary {
  background-color: #E7C200; /* Accent color */
  color: #1A2E44; /* Dark text for accent background */
}

.page-faq__btn--primary:hover {
  background-color: #f5d742; /* Lighter gold on hover */
  transform: translateY(-2px);
}

.page-faq__btn--secondary {
  background-color: transparent;
  color: #E7C200; /* Accent color */
  border: 2px solid #E7C200;
}

.page-faq__btn--secondary:hover {
  background-color: rgba(231, 194, 0, 0.1);
  transform: translateY(-2px);
}

.page-faq__btn--link {
  color: #E7C200;
  text-decoration: none;
  font-weight: bold;
  font-size: 1em;
  padding: 5px 0;
  border-bottom: 2px solid transparent;
  transition: border-bottom 0.3s ease;
}

.page-faq__btn--link:hover {
  border-bottom: 2px solid #E7C200;
}

.page-faq__faq-categories {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
}

.page-faq__category-card {
  background-color: #2a415a; /* Slightly lighter dark background */
  padding: 30px;
  border-radius: 10px;
  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 20px rgba(0, 0, 0, 0.3);
}

.page-faq__category-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
  filter: drop-shadow(0 0 5px rgba(231, 194, 0, 0.5)); /* Gold glow */
}

.page-faq__category-title {
  font-size: 1.5em;
  color: #E7C200;
  margin-bottom: 10px;
}

.page-faq__category-desc {
  color: #cccccc;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-faq__accordion {
  background-color: #1A2E44;
}

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

.page-faq__accordion-header {
  background-color: #3e5875; /* Slightly lighter dark blue */
  color: #E7C200;
  padding: 20px 25px;
  width: 100%;
  text-align: left;
  border: none;
  outline: none;
  cursor: pointer;
  font-size: 1.2em;
  font-weight: bold;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.3s ease;
}

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

.page-faq__accordion-header.active {
  background-color: #4a6685;
}

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

.page-faq__accordion-content {
  padding: 0 25px;
  background-color: #2a415a;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
}

.page-faq__accordion-content p {
  padding: 15px 0;
  color: #f0f0f0;
}

.page-faq__accordion-content p a {
  color: #E7C200;
  text-decoration: underline;
}

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

.page-faq__cta {
  background-color: #2a415a; /* A darker shade for contrast */
  text-align: center;
  padding: 80px 0;
}

.page-faq__cta-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

.page-faq__cta-image {
  max-width: 250px;
  height: auto;
  filter: drop-shadow(0 0 10px rgba(231, 194, 0, 0.4)); /* Gold glow */
}

.page-faq__cta-title {
  font-size: 2.2em;
  color: #E7C200;
  margin-bottom: 15px;
}

.page-faq__cta-description {
  font-size: 1.1em;
  color: #f0f0f0;
  max-width: 700px;
  margin: 0 auto 30px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-faq__hero-title {
    font-size: 2.5em;
  }
  .page-faq__hero-description {
    font-size: 1em;
  }
  .page-faq__hero-actions {
    flex-direction: column;
  }
  .page-faq__btn {
    width: 80%;
    max-width: 300px;
  }
  .page-faq__section-title {
    font-size: 2em;
  }
  .page-faq__faq-categories {
    grid-template-columns: 1fr;
  }
  .page-faq__cta-content {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .page-faq__hero-title {
    font-size: 2em;
  }
  .page-faq__section {
    padding: 40px 0;
  }
  .page-faq__section-title {
    font-size: 1.8em;
  }
  .page-faq__accordion-header {
    font-size: 1em;
    padding: 15px 20px;
  }
  .page-faq__accordion-content p {
    padding: 10px 0;
  }
  .page-faq__cta-title {
    font-size: 1.8em;
  }
  .page-faq__cta-description {
    font-size: 0.9em;
  }
}