.page-faq {
  font-family: 'Arial', sans-serif;
  color: #333;
  line-height: 1.6;
  background-color: #f8f8f8;
}

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

.page-faq__hero {
  position: relative;
  padding: 100px 0;
  text-align: center;
  color: #fff;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 400px;
}

.page-faq__hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.page-faq__hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 0, 128, 0.8), rgba(255, 215, 0, 0.5)); /* #000080 and #FFD700 */
  z-index: 2;
}

.page-faq__hero-title {
  font-size: 3.5em;
  margin-bottom: 15px;
  font-weight: bold;
  color: #FFD700; /* Gold for emphasis */
  position: relative;
  z-index: 3;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-faq__hero-subtitle {
  font-size: 1.5em;
  margin-bottom: 30px;
  color: #fff;
  position: relative;
  z-index: 3;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
}

.page-faq__btn {
  display: inline-block;
  padding: 12px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
  z-index: 3;
}

.page-faq__btn--primary {
  background-color: #FFD700; /* Gold */
  color: #000080; /* Navy Blue for text */
  border: 2px solid #FFD700;
}

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

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

.page-faq__btn--secondary:hover {
  background-color: #000066;
  border-color: #000066;
  color: #ffe033;
}

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

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

.page-faq__section-title {
  font-size: 2.5em;
  color: #000080; /* Navy Blue */
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

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

.page-faq__section-title--light {
  color: #fff;
}

.page-faq__section-title--light::after {
  background-color: #FFD700;
}

.page-faq__text {
  font-size: 1.1em;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 20px auto;
  color: #555;
}

.page-faq__text--light {
  color: #eee;
}

.page-faq__intro .page-faq__text {
  text-align: left;
  max-width: 100%;
}

.page-faq__categories {
  background-color: #fff;
}

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

.page-faq__category-item {
  background-color: #f9f9f9;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-faq__category-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.page-faq__category-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  object-fit: contain;
}

.page-faq__category-title {
  font-size: 1.6em;
  color: #000080; /* Navy Blue */
  margin-bottom: 15px;
  font-weight: bold;
}

.page-faq__category-desc {
  font-size: 1em;
  color: #666;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-faq__general-questions {
  background-color: #eef2f7;
}

.page-faq__accordion {
  max-width: 900px;
  margin: 40px auto;
}

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

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

.page-faq__accordion-header:hover {
  background-color: #e0e6ed;
}

.page-faq__accordion-header::after {
  content: '+';
  font-size: 1.5em;
  color: #FFD700; /* Gold */
  transition: transform 0.3s ease;
}

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

.page-faq__accordion-content {
  padding: 0 25px;
  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;
  font-size: 1em;
  color: #555;
  margin: 0;
}

.page-faq__accordion-content ul {
  padding-left: 20px;
  margin: 10px 0;
}

.page-faq__accordion-content li {
  margin-bottom: 5px;
  color: #555;
}

.page-faq__link {
  color: #000080; /* Navy Blue */
  text-decoration: underline;
  font-weight: bold;
}

.page-faq__link:hover {
  color: #FFD700; /* Gold */
}

.page-faq__cta-bottom {
  background-color: #000080; /* Navy Blue background */
  color: #fff;
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-faq__cta-banner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.2;
  z-index: 1;
}

.page-faq__cta-bottom .page-faq__container {
  position: relative;
  z-index: 2;
}

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

.page-faq__support-contact {
  background-color: #fff;
  text-align: center;
}

.page-faq__contact-info {
  margin-top: 30px;
  font-size: 1.1em;
  color: #555;
}

.page-faq__contact-info p {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-faq__icon {
  display: inline-block;
  width: 24px;
  height: 24px;
  background-size: contain;
  background-repeat: no-repeat;
  margin-right: 10px;
  filter: invert(15%) sepia(90%) saturate(6000%) hue-rotate(240deg) brightness(80%) contrast(100%); /* Navy blue filter */
}

.page-faq__icon--chat {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23000080"><path d="M20 2H4c-1.1 0-2 .9-2 2v18l4-4h14c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zM6 9h12v2H6V9zm8 4H6v-2h8v2zm4-8H6V7h12V5z"/></svg>');
}

.page-faq__icon--email {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23000080"><path d="M20 4H4c-1.1 0-1.99.9-1.99 2L2 18c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 4l-8 5-8-5V6l8 5 8-5v2z"/></svg>');
}

.page-faq__icon--phone {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23000080"><path d="M20 15.5c-1.25 0-2.45-.2-3.57-.57-.35-.11-.74-.03-1.01.24l-2.2 2.2c-2.83-1.44-5.15-3.75-6.59-6.59l2.2-2.2c.27-.27.35-.66.24-1.01C8.7 6.45 8.5 5.25 8.5 4c0-.55-.45-1-1-1H4c-.55 0-1 .45-1 1 0 9.39 7.61 17 17 17 .55 0 1-.45 1-1v-3.5c0-.55-.45-1-1-1z"/></svg>');
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-faq__hero-title {
    font-size: 2.8em;
  }
  .page-faq__hero-subtitle {
    font-size: 1.2em;
  }
  .page-faq__section-title {
    font-size: 2em;
  }
  .page-faq__category-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
  .page-faq__accordion-header {
    font-size: 1.1em;
    padding: 18px 20px;
  }
  .page-faq__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
}

@media (max-width: 768px) {
  .page-faq__hero {
    padding: 80px 0;
    min-height: 350px;
  }
  .page-faq__hero-title {
    font-size: 2.2em;
  }
  .page-faq__hero-subtitle {
    font-size: 1em;
  }
  .page-faq__btn--large {
    padding: 12px 30px;
    font-size: 1em;
  }
  .page-faq__section {
    padding: 40px 0;
  }
  .page-faq__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }
  .page-faq__text {
    font-size: 1em;
  }
  .page-faq__category-item {
    padding: 20px;
  }
  .page-faq__category-title {
    font-size: 1.4em;
  }
  .page-faq__accordion-header {
    font-size: 1em;
    padding: 15px 18px;
  }
  .page-faq__accordion-content p, .page-faq__accordion-content li {
    font-size: 0.95em;
  }
  .page-faq__cta-buttons {
    flex-direction: column;
    gap: 10px;
  }
}

@media (max-width: 480px) {
  .page-faq__hero {
    padding: 60px 0;
    min-height: 300px;
  }
  .page-faq__hero-title {
    font-size: 1.8em;
  }
  .page-faq__hero-subtitle {
    font-size: 0.9em;
  }
  .page-faq__btn {
    padding: 10px 25px;
    font-size: 0.9em;
  }
  .page-faq__section {
    padding: 30px 0;
  }
  .page-faq__section-title {
    font-size: 1.5em;
  }
  .page-faq__category-grid {
    grid-template-columns: 1fr;
  }
  .page-faq__accordion-header {
    font-size: 0.95em;
    padding: 12px 15px;
  }
  .page-faq__contact-info p {
    flex-direction: column;
    gap: 5px;
  }
  .page-faq__icon {
    margin-right: 0;
    margin-bottom: 5px;
  }
}