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

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

/* Hero Section */
.page-faq__hero {
  background: linear-gradient(135deg, #FFD700 0%, #8B0000 100%);
  color: #fff;
  padding: 80px 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.page-faq__hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1;
}

.page-faq__hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

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

.page-faq__hero-description {
  font-size: 1.3em;
  margin-bottom: 30px;
  color: #eee;
}

.page-faq__hero-btn {
  display: inline-block;
  background-color: #FFD700;
  color: #8B0000;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: 2px solid #FFD700;
}

.page-faq__hero-btn:hover {
  background-color: #e6c200;
  transform: translateY(-3px);
}

.page-faq__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.page-faq__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.6);
}

/* Accordion Section */
.page-faq__accordion-section {
  padding: 60px 0;
  background-color: #fff;
}

.page-faq__section-title {
  font-size: 2.5em;
  color: #8B0000;
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
}

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

.page-faq__accordion-item {
  border: 1px solid #ddd;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

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

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

.page-faq__accordion-question {
  margin: 0;
  color: #8B0000; /* Ensure text color is consistent */
}

.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-body {
  padding: 0 25px;
  background-color: #fdfdfd;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-out, padding 0.5s ease-out;
}

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

.page-faq__accordion-body p {
  margin: 0 0 15px 0;
  color: #555;
}

.page-faq__inline-link {
  color: #8B0000;
  text-decoration: underline;
  font-weight: bold;
}

.page-faq__inline-link:hover {
  color: #FFD700;
}

/* Related Info Section */
.page-faq__related-info {
  padding: 60px 0;
  background-color: #f0f0f0;
}

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

.page-faq__info-card {
  background-color: #fff;
  border-radius: 8px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.page-faq__info-card:hover {
  transform: translateY(-5px);
}

.page-faq__info-card-icon {
  width: 80px;
  height: 80px;
  object-fit: contain;
  margin-bottom: 20px;
}

.page-faq__info-card-title {
  font-size: 1.5em;
  color: #8B0000;
  margin-bottom: 15px;
}

.page-faq__info-card-title a {
  color: #8B0000;
  text-decoration: none;
}

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

.page-faq__info-card-description {
  color: #666;
  margin-bottom: 25px;
}

.page-faq__info-card-btn {
  display: inline-block;
  background-color: #FFD700;
  color: #8B0000;
  padding: 10px 25px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.page-faq__info-card-btn:hover {
  background-color: #e6c200;
}

/* Call to Action Section */
.page-faq__cta-section {
  background: #8B0000;
  padding: 80px 0;
  text-align: center;
  color: #fff;
}

.page-faq__cta-content {
  max-width: 900px;
}

.page-faq__cta-title {
  font-size: 3em;
  margin-bottom: 20px;
  color: #FFD700;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

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

.page-faq__cta-btn {
  display: inline-block;
  background-color: #FFD700;
  color: #8B0000;
  padding: 15px 35px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.2em;
  margin: 0 10px;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: 2px solid #FFD700;
}

.page-faq__cta-btn:hover {
  background-color: #e6c200;
  transform: translateY(-3px);
}

.page-faq__cta-btn--secondary {
  background-color: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
}

.page-faq__cta-btn--secondary:hover {
  background-color: #FFD700;
  color: #8B0000;
}

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

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

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

  .page-faq__accordion-header {
    font-size: 1.1em;
    padding: 15px 20px;
  }

  .page-faq__accordion-body {
    padding: 15px 20px;
  }

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

  .page-faq__cta-title {
    font-size: 2.2em;
  }

  .page-faq__cta-description {
    font-size: 1em;
  }

  .page-faq__cta-btn {
    display: block;
    margin: 15px auto;
    width: 80%;
  }
}

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

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

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

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

  .page-faq__accordion-header {
    font-size: 1em;
    padding: 12px 15px;
  }

  .page-faq__accordion-body p {
    font-size: 0.9em;
  }

  .page-faq__info-card-title {
    font-size: 1.3em;
  }

  .page-faq__cta-title {
    font-size: 1.8em;
  }

  .page-faq__cta-btn {
    font-size: 1.1em;
    padding: 12px 25px;
  }
}