.page-resources-troubleshooting-login {
  color: #333333; /* Default text color for light body background */
}

.page-resources-troubleshooting-login__hero-section {
  position: relative;
  padding-top: var(--header-offset, 120px); /* Ensure space for fixed header */
  padding-bottom: 60px;
  background-color: #0A2463; /* Main brand color for hero background */
  overflow: hidden;
}

.page-resources-troubleshooting-login__hero-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 1;
}

.page-resources-troubleshooting-login__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 30px;
}

.page-resources-troubleshooting-login__hero-content {
  color: #ffffff;
  padding: 0 20px;
}

.page-resources-troubleshooting-login__hero-title {
  font-size: 2.8em;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #E0B14B; /* Auxiliary color for emphasis */
}

.page-resources-troubleshooting-login__hero-description {
  font-size: 1.1em;
  line-height: 1.6;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-resources-troubleshooting-login__cta-button {
  display: inline-block;
  background-color: #E0B14B; /* Auxiliary color for primary CTA */
  color: #0A2463; /* Main color for button text */
  padding: 14px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-resources-troubleshooting-login__cta-button:hover {
  background-color: #f5db9c; /* Lighter shade for hover */
  transform: translateY(-2px);
}

.page-resources-troubleshooting-login__cta-button--secondary {
  background-color: transparent;
  color: #E0B14B;
  border: 2px solid #E0B14B;
  margin-left: 15px;
}

.page-resources-troubleshooting-login__cta-button--secondary:hover {
  background-color: rgba(224, 177, 75, 0.1);
  color: #f5db9c;
}

.page-resources-troubleshooting-login__content-area {
  max-width: 800px; /* Content width for comfortable reading */
  margin: 40px auto;
  padding: 0 20px;
}

.page-resources-troubleshooting-login__article-navigation {
  margin-bottom: 30px;
}

.page-resources-troubleshooting-login__back-link {
  color: #0A2463;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

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

.page-resources-troubleshooting-login__article {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.page-resources-troubleshooting-login__section-title {
  font-size: 2em;
  color: #0A2463;
  margin-top: 40px;
  margin-bottom: 25px;
  border-bottom: 2px solid #E0B14B;
  padding-bottom: 10px;
}

.page-resources-troubleshooting-login__sub-section-title {
  font-size: 1.5em;
  color: #0A2463;
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-resources-troubleshooting-login__paragraph {
  font-size: 1.05em;
  line-height: 1.8;
  margin-bottom: 20px;
}

.page-resources-troubleshooting-login__list {
  list-style-type: disc;
  margin-left: 25px;
  margin-bottom: 20px;
  line-height: 1.8;
}

.page-resources-troubleshooting-login__list-item {
  margin-bottom: 10px;
}

.page-resources-troubleshooting-login__list-item strong {
  color: #0A2463;
}

.page-resources-troubleshooting-login__list-item a {
  color: #E0B14B;
  text-decoration: underline;
}

.page-resources-troubleshooting-login__list-item a:hover {
  color: #0A2463;
}

.page-resources-troubleshooting-login__image-wrapper {
  text-align: center;
  margin: 30px 0;
}

.page-resources-troubleshooting-login__content-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  min-width: 200px; /* Ensure content images are not small icons */
  min-height: 200px;
}

.page-resources-troubleshooting-login__contact-cta {
  text-align: center;
  margin-top: 40px;
  margin-bottom: 40px;
}

.page-resources-troubleshooting-login__faq-item {
  background-color: #f9f9f9;
  border: 1px solid #eeeeee;
  border-radius: 6px;
  padding: 20px;
  margin-bottom: 15px;
}

.page-resources-troubleshooting-login__faq-question {
  font-size: 1.2em;
  color: #0A2463;
  margin-top: 0;
  margin-bottom: 10px;
}

.page-resources-troubleshooting-login__faq-answer {
  font-size: 1em;
  line-height: 1.7;
  margin-bottom: 0;
}

.page-resources-troubleshooting-login__faq-answer a {
  color: #E0B14B;
  text-decoration: underline;
}

.page-resources-troubleshooting-login__faq-answer a:hover {
  color: #0A2463;
}

.page-resources-troubleshooting-login__final-cta {
  text-align: center;
  margin-top: 50px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}

.page-resources-troubleshooting-login__article-navigation--bottom {
  margin-top: 50px;
  text-align: center;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-resources-troubleshooting-login__hero-title {
    font-size: 2.2em;
  }
}

@media (max-width: 768px) {
  .page-resources-troubleshooting-login__hero-section {
    padding-top: var(--header-offset, 80px); /* Adjust for mobile header */
    padding-bottom: 40px;
  }

  .page-resources-troubleshooting-login__hero-title {
    font-size: 1.8em;
    margin-bottom: 15px;
  }

  .page-resources-troubleshooting-login__hero-description {
    font-size: 1em;
    margin-bottom: 20px;
  }

  .page-resources-troubleshooting-login__cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }

  .page-resources-troubleshooting-login__cta-button--secondary {
    margin-left: 0;
    margin-top: 10px;
  }

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

  .page-resources-troubleshooting-login__section-title {
    font-size: 1.8em;
    margin-top: 30px;
    margin-bottom: 20px;
  }

  .page-resources-troubleshooting-login__sub-section-title {
    font-size: 1.3em;
    margin-top: 25px;
    margin-bottom: 10px;
  }

  .page-resources-troubleshooting-login__paragraph,
  .page-resources-troubleshooting-login__list-item,
  .page-resources-troubleshooting-login__faq-answer {
    font-size: 0.95em;
  }

  .page-resources-troubleshooting-login__content-image {
    max-width: 100%;
    height: auto;
    min-width: 200px;
    min-height: 200px;
  }

  /* Ensure no horizontal scroll for content */
  .page-resources-troubleshooting-login {
    overflow-x: hidden;
  }
}