/* style/resources-8k8-login-account-faq.css */
.page-resources-8k8-login-account-faq {
  color: #333333; /* Dark text for default light body background */
  line-height: 1.7;
  font-family: Arial, sans-serif;
}

.page-resources-8k8-login-account-faq__hero-section {
  position: relative;
  padding-top: var(--header-offset, 120px); /* Ensure content is below fixed header */
  overflow: hidden;
  color: #ffffff;
  text-align: center;
}

.page-resources-8k8-login-account-faq__hero-image {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  min-height: 100%;
  z-index: 1;
}

.page-resources-8k8-login-account-faq__hero-container {
  position: relative;
  max-width: 1400px;
  margin: 0 auto;
  padding: 80px 20px;
  min-height: 450px; /* Minimum height for hero section */
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.page-resources-8k8-login-account-faq__hero-content {
  position: relative;
  z-index: 3;
  background: rgba(0, 0, 0, 0.6);
  padding: 30px;
  border-radius: 10px;
  max-width: 800px;
}

.page-resources-8k8-login-account-faq__hero-title {
  font-size: 2.8em;
  margin-bottom: 20px;
  color: #ffc107; /* Auxiliary color for emphasis */
  line-height: 1.2;
}

.page-resources-8k8-login-account-faq__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #f0f0f0;
}

.page-resources-8k8-login-account-faq__cta-button {
  display: inline-block;
  background-color: #007bff; /* Primary color */
  color: #ffffff;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease;
}

.page-resources-8k8-login-account-faq__cta-button:hover {
  background-color: #0056b3; /* Darker primary for hover */
}

.page-resources-8k8-login-account-faq__content-area {
  max-width: 800px; /* Optimized for long article reading */
  margin: 40px auto;
  padding: 20px;
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-resources-8k8-login-account-faq__section-title {
  font-size: 2.2em;
  color: #007bff; /* Primary color */
  margin-bottom: 25px;
  text-align: center;
  border-bottom: 2px solid #ffc107;
  padding-bottom: 15px;
}

.page-resources-8k8-login-account-faq__intro-text {
  font-size: 1.1em;
  margin-bottom: 40px;
  text-align: justify;
  color: #555555;
}

.page-resources-8k8-login-account-faq__faq-list {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.page-resources-8k8-login-account-faq__faq-item {
  background-color: #f9f9f9;
  border: 1px solid #eeeeee;
  border-radius: 8px;
  padding: 25px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.page-resources-8k8-login-account-faq__faq-question {
  font-size: 1.5em;
  color: #007bff; /* Primary color */
  margin-bottom: 15px;
}

.page-resources-8k8-login-account-faq__faq-answer {
  font-size: 1.05em;
  color: #333333;
  text-align: justify;
}

.page-resources-8k8-login-account-faq__faq-answer a {
  color: #007bff;
  text-decoration: underline;
}

.page-resources-8k8-login-account-faq__faq-answer a:hover {
  color: #ffc107;
}

.page-resources-8k8-login-account-faq__back-link-container {
  text-align: center;
  margin-top: 50px;
}

.page-resources-8k8-login-account-faq__back-link {
  display: inline-block;
  color: #007bff;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  padding: 10px 20px;
  border: 2px solid #007bff;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.page-resources-8k8-login-account-faq__back-link:hover {
  background-color: #007bff;
  color: #ffffff;
  transform: translateY(-2px);
}

.page-resources-8k8-login-account-faq__cta-section {
  background-color: #007bff;
  padding: 60px 20px;
  text-align: center;
  color: #ffffff;
  border-radius: 8px;
  margin-top: 60px;
}

.page-resources-8k8-login-account-faq__cta-title {
  font-size: 2.5em;
  margin-bottom: 20px;
  color: #ffc107;
}

.page-resources-8k8-login-account-faq__cta-description {
  font-size: 1.2em;
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.page-resources-8k8-login-account-faq__cta-button--large {
  padding: 18px 35px;
  font-size: 1.2em;
  margin: 0 10px;
  background-color: #ffc107;
  color: #333333;
}

.page-resources-8k8-login-account-faq__cta-button--large:hover {
  background-color: #e0a800;
}

.page-resources-8k8-login-account-faq__cta-button--secondary {
  background-color: transparent;
  border: 2px solid #ffffff;
  margin: 0 10px;
}

.page-resources-8k8-login-account-faq__cta-button--secondary:hover {
  background-color: #ffffff;
  color: #007bff;
}

@media (max-width: 768px) {
  .page-resources-8k8-login-account-faq__hero-title {
    font-size: 2em;
  }

  .page-resources-8k8-login-account-faq__hero-description {
    font-size: 1em;
  }

  .page-resources-8k8-login-account-faq__hero-container {
    padding: 60px 15px;
    min-height: 350px;
  }

  .page-resources-8k8-login-account-faq__content-area {
    margin: 20px auto;
    padding: 15px;
  }

  .page-resources-8k8-login-account-faq__section-title {
    font-size: 1.8em;
  }

  .page-resources-8k8-login-account-faq__faq-question {
    font-size: 1.3em;
  }

  .page-resources-8k8-login-account-faq__faq-answer {
    font-size: 0.95em;
  }

  .page-resources-8k8-login-account-faq__cta-title {
    font-size: 2em;
  }

  .page-resources-8k8-login-account-faq__cta-description {
    font-size: 1em;
  }

  .page-resources-8k8-login-account-faq__cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }

  .page-resources-8k8-login-account-faq__cta-button--large,
  .page-resources-8k8-login-account-faq__cta-button--secondary {
    display: block;
    margin: 15px auto;
    max-width: 90%;
  }

  /* Mobile content image constraint */
  .page-resources-8k8-login-account-faq img {
    max-width: 100%;
    height: auto;
  }
}