.page-faq {
  font-family: 'Arial', sans-serif;
  color: #0A2342; /* Dark blue for main text */
  line-height: 1.6;
  background-color: #f8f8f8; /* Light background for readability */
}

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

.page-faq__hero {
  background: linear-gradient(135deg, #0A2342 0%, #1A3F6C 100%); /* Dark blue gradient */
  color: #ffffff; /* White text on dark background */
  padding: 80px 0;
  text-align: center;
}

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

.page-faq__hero-description {
  font-size: 1.3em;
  max-width: 800px;
  margin: 0 auto 40px auto;
  line-height: 1.8;
}

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

.page-faq__btn {
  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;
  text-align: center;
}

.page-faq__btn--primary {
  background-color: #FFD700; /* Gold */
  color: #0A2342; /* Dark blue text */
  border: 2px solid #FFD700;
}

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

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

.page-faq__btn--secondary:hover {
  background-color: #FFD700;
  color: #0A2342;
}

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

.page-faq__section-title {
  font-size: 2.5em;
  color: #0A2342;
  text-align: center;
  margin-bottom: 50px;
  position: relative;
  padding-bottom: 15px;
}

.page-faq__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #FFD700;
  border-radius: 2px;
}

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

.page-faq__category-item {
  background-color: #f0f4f8; /* Light grey background for items */
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

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

.page-faq__category-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px auto;
  color: #FFD700; /* Gold for icons */
}

.page-faq__category-title {
  font-size: 1.6em;
  color: #0A2342;
  margin-bottom: 15px;
}

.page-faq__category-title a {
  color: #0A2342;
  text-decoration: none;
}

.page-faq__category-title a:hover {
  color: #FFD700;
}

.page-faq__category-desc {
  font-size: 1em;
  color: #4A5C70; /* Slightly lighter dark blue for description */
  margin-bottom: 25px;
  flex-grow: 1;
}

.page-faq__btn--link {
  color: #FFD700; /* Gold for link buttons */
  background-color: transparent;
  border: none;
  padding: 0;
  font-size: 1em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.page-faq__btn--link:hover {
  color: #e6c200;
  text-decoration: underline;
}

.page-faq__arrow {
  margin-left: 8px;
  transition: transform 0.2s ease;
}

.page-faq__btn--link:hover .page-faq__arrow {
  transform: translateX(5px);
}

.page-faq__contact {
  background-color: #0A2342; /* Dark blue background */
  color: #ffffff; /* White text */
  padding: 80px 0;
  text-align: center;
}

.page-faq__contact-text {
  font-size: 1.2em;
  max-width: 700px;
  margin: 0 auto 40px auto;
}

.page-faq__btn--contact {
  background-color: #FFD700; /* Gold */
  color: #0A2342; /* Dark blue text */
  border: 2px solid #FFD700;
}

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

.page-faq .highlight {
  color: #FFD700; /* Gold for highlights */
  font-weight: bold;
}

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

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

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

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

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

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

@media (max-width: 480px) {
  .page-faq__hero {
    padding: 60px 0;
  }

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

  .page-faq__hero-description {
    font-size: 1em;
    margin-bottom: 30px;
  }

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

  .page-faq__categories, .page-faq__contact {
    padding: 40px 0;
  }

  .page-faq__section-title {
    font-size: 1.8em;
    margin-bottom: 40px;
  }

  .page-faq__category-item {
    padding: 25px;
  }

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

  .page-faq__category-desc {
    font-size: 0.95em;
  }
}