.page-resources-troubleshooting-login {
  color: #333333; /* Dark text for light body background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
  padding-top: var(--header-offset, 120px); /* Ensure content clears fixed header */
}

.page-resources-troubleshooting-login__hero-section {
  background-color: #f5f5f5;
  padding: 80px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 30px;
}

.page-resources-troubleshooting-login__hero-content {
  max-width: 800px;
  margin-bottom: 30px;
}

.page-resources-troubleshooting-login__hero-title {
  font-size: 2.8em;
  color: #000000;
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-resources-troubleshooting-login__hero-description {
  font-size: 1.1em;
  color: #555555;
  margin-bottom: 30px;
}

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

.page-resources-troubleshooting-login__button {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.05em;
  transition: background-color 0.3s ease, color 0.3s ease;
  min-width: 150px;
  text-align: center;
}

.page-resources-troubleshooting-login__button--login {
  background-color: #FCBC45;
  color: #000000;
  border: 2px solid #FCBC45;
}

.page-resources-troubleshooting-login__button--login:hover {
  background-color: #e0a53b;
  border-color: #e0a53b;
}

.page-resources-troubleshooting-login__button--register {
  background-color: #000000;
  color: #FFFFFF;
  border: 2px solid #000000;
}

.page-resources-troubleshooting-login__button--register:hover {
  background-color: #333333;
  border-color: #333333;
}

.page-resources-troubleshooting-login__hero-image {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  min-width: 200px; /* Ensure image is not too small */
  min-height: 200px; /* Ensure image is not too small */
}

.page-resources-troubleshooting-login__content-area {
  max-width: 800px; /* Optimal reading width for long articles */
  margin: 0 auto;
  padding: 60px 20px;
}

.page-resources-troubleshooting-login__article-header {
  margin-bottom: 40px;
}

.page-resources-troubleshooting-login__back-link {
  color: #000000;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: color 0.3s ease;
}

.page-resources-troubleshooting-login__back-link:hover {
  color: #FCBC45;
}

.page-resources-troubleshooting-login__faq-article {
  background-color: #FFFFFF;
  border-radius: 12px;
  padding: 40px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.page-resources-troubleshooting-login__article-heading {
  font-size: 2em;
  color: #000000;
  margin-bottom: 25px;
  text-align: center;
}

.page-resources-troubleshooting-login__article-intro {
  font-size: 1.05em;
  color: #666666;
  margin-bottom: 40px;
  text-align: center;
}

.page-resources-troubleshooting-login__faq-item {
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}

.page-resources-troubleshooting-login__faq-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.page-resources-troubleshooting-login__faq-question {
  font-size: 1.5em;
  color: #000000;
  margin-bottom: 15px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.page-resources-troubleshooting-login__faq-question::after {
  content: '+';
  font-size: 1.2em;
  transition: transform 0.3s ease;
}

.page-resources-troubleshooting-login__faq-question.active::after {
  content: '-';
  transform: rotate(180deg);
}

.page-resources-troubleshooting-login__faq-answer {
  font-size: 1.0em;
  color: #444444;
  padding-left: 15px;
  margin-top: 10px;
  display: none; /* Hidden by default, shown by JS */
}

.page-resources-troubleshooting-login__faq-answer.active {
  display: block;
}

.page-resources-troubleshooting-login__faq-answer ul {
  list-style-type: disc;
  margin-left: 20px;
  padding-left: 0;
}

.page-resources-troubleshooting-login__faq-answer li {
  margin-bottom: 8px;
}

.page-resources-troubleshooting-login__faq-image {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 25px auto;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  min-width: 200px; /* Ensure image is not too small */
  min-height: 200px; /* Ensure image is not too small */
}

.page-resources-troubleshooting-login__text-link {
  color: #FCBC45;
  text-decoration: underline;
  font-weight: bold;
}

.page-resources-troubleshooting-login__text-link:hover {
  color: #e0a53b;
}

.page-resources-troubleshooting-login__support-cta {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 40px;
  align-items: center;
}

.page-resources-troubleshooting-login__button--support {
  background-color: #000000;
  color: #FFFFFF;
  border: 2px solid #000000;
}

.page-resources-troubleshooting-login__button--support:hover {
  background-color: #333333;
  border-color: #333333;
}

.page-resources-troubleshooting-login__button--play {
  background-color: #FCBC45;
  color: #000000;
  border: 2px solid #FCBC45;
}

.page-resources-troubleshooting-login__button--play:hover {
  background-color: #e0a53b;
  border-color: #e0a53b;
}

@media (max-width: 768px) {
  .page-resources-troubleshooting-login__hero-section {
    padding: 40px 15px;
    flex-direction: column;
  }

  .page-resources-troubleshooting-login__hero-title {
    font-size: 2em;
  }

  .page-resources-troubleshooting-login__hero-description {
    font-size: 1em;
  }

  .page-resources-troubleshooting-login__hero-actions {
    flex-direction: column;
    gap: 15px;
  }

  .page-resources-troubleshooting-login__button {
    width: 100%;
    max-width: 250px;
  }

  .page-resources-troubleshooting-login__content-area {
    padding: 30px 15px;
  }

  .page-resources-troubleshooting-login__article-heading {
    font-size: 1.8em;
  }

  .page-resources-troubleshooting-login__faq-question {
    font-size: 1.3em;
  }

  .page-resources-troubleshooting-login__faq-answer {
    padding-left: 0;
  }

  /* Mobile image responsiveness */
  .page-resources-troubleshooting-login__hero-image,
  .page-resources-troubleshooting-login__faq-image {
    max-width: 100%;
    height: auto;
    min-width: 200px;
    min-height: 200px;
  }

  .page-resources-troubleshooting-login__support-cta {
    flex-direction: column;
  }
}