:root {
  --primary-color: #11A84E;
  --secondary-color: #22C768;
  --button-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  --background-card-bg: #11271B;
  --background: #08160F;
  --text-main: #F2FFF6;
  --text-secondary: #A7D9B8;
  --border-color: #2E7A4E;
  --glow-color: #57E38D;
  --gold-color: #F2C14E;
  --divider-color: #1E3A2A;
  --deep-green-color: #0A4B2C;
}

/* Base styles for the page content, ensuring contrast with body background */
.page-blog-qhh88-login-troubleshooting-guide {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--text-main);
  background-color: var(--background);
}

/* Hero Section */
.page-blog-qhh88-login-troubleshooting-guide__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column; /* Image on top, content below */
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 10px 20px 60px; /* Small top padding, more bottom padding */
  background-color: var(--background-card-bg); /* Dark background for hero */
  color: var(--text-main);
  overflow: hidden; /* Ensure no image overflow */
}

.page-blog-qhh88-login-troubleshooting-guide__hero-image-wrapper {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  margin-bottom: 20px; /* Space between image and text */
}

.page-blog-qhh88-login-troubleshooting-guide__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 8px;
}

.page-blog-qhh88-login-troubleshooting-guide__hero-content {
  max-width: 900px;
  width: 100%; /* Ensure content takes full width up to max-width */
  z-index: 1; /* Ensure content is above any potential background elements */
}

.page-blog-qhh88-login-troubleshooting-guide__main-title {
  font-size: clamp(2em, 4vw, 3.2em); /* Responsive font size */
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 15px;
  color: var(--text-main);
  letter-spacing: -0.02em;
}

.page-blog-qhh88-login-troubleshooting-guide__hero-description {
  font-size: clamp(1em, 1.5vw, 1.2em);
  margin-bottom: 30px;
  color: var(--text-secondary);
}

.page-blog-qhh88-login-troubleshooting-guide__cta-buttons {
  display: flex;
  flex-wrap: wrap; /* Allow buttons to wrap on smaller screens */
  gap: 20px;
  justify-content: center;
  margin-top: 30px;
}

.page-blog-qhh88-login-troubleshooting-guide__btn-primary,
.page-blog-qhh88-login-troubleshooting-guide__btn-secondary {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  min-width: 180px;
  text-align: center;
  box-sizing: border-box; /* Crucial for responsive buttons */
}

.page-blog-qhh88-login-troubleshooting-guide__btn-primary {
  background: var(--button-gradient);
  color: var(--text-main);
  border: 2px solid transparent;
}

.page-blog-qhh88-login-troubleshooting-guide__btn-primary:hover {
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-blog-qhh88-login-troubleshooting-guide__btn-secondary {
  background: transparent;
  color: var(--text-main);
  border: 2px solid var(--border-color);
}

.page-blog-qhh88-login-troubleshooting-guide__btn-secondary:hover {
  background: var(--border-color);
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* Content Area */
.page-blog-qhh88-login-troubleshooting-guide__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
  background-color: var(--background); /* Ensure content background is the same as body */
  color: var(--text-main);
}

.page-blog-qhh88-login-troubleshooting-guide__container {
  max-width: 800px; /* Content narrower for readability */
  margin: 0 auto;
}

.page-blog-qhh88-login-troubleshooting-guide__heading-2 {
  font-size: 2.2em;
  font-weight: 700;
  color: var(--text-main);
  margin-top: 40px;
  margin-bottom: 20px;
  border-bottom: 2px solid var(--divider-color);
  padding-bottom: 10px;
}

.page-blog-qhh88-login-troubleshooting-guide__heading-3 {
  font-size: 1.8em;
  font-weight: 600;
  color: var(--text-main);
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-blog-qhh88-login-troubleshooting-guide__paragraph {
  font-size: 1.1em;
  margin-bottom: 15px;
  color: var(--text-secondary);
}

.page-blog-qhh88-login-troubleshooting-guide__highlight {
  color: var(--gold-color); /* Using gold for highlights */
  font-weight: 600;
}

.page-blog-qhh88-login-troubleshooting-guide__content-image {
  width: 100%;
  height: auto;
  display: block;
  margin: 30px auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  /* No filter property to change image color */
}

.page-blog-qhh88-login-troubleshooting-guide__list {
  list-style: disc;
  margin-left: 20px;
  margin-bottom: 20px;
  color: var(--text-secondary);
}

.page-blog-qhh88-login-troubleshooting-guide__list-item {
  margin-bottom: 8px;
  font-size: 1.1em;
}

.page-blog-qhh88-login-troubleshooting-guide__link {
  color: var(--glow-color);
  text-decoration: none;
  font-weight: 600;
}

.page-blog-qhh88-login-troubleshooting-guide__link:hover {
  text-decoration: underline;
}

/* FAQ Section */
.page-blog-qhh88-login-troubleshooting-guide__faq-section {
  margin-top: 40px;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  overflow: hidden;
  background-color: var(--background-card-bg); /* Darker background for FAQ cards */
}

.page-blog-qhh88-login-troubleshooting-guide__faq-item {
  border-bottom: 1px solid var(--divider-color);
}

.page-blog-qhh88-login-troubleshooting-guide__faq-item:last-child {
  border-bottom: none;
}

.page-blog-qhh88-login-troubleshooting-guide__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  font-size: 1.2em;
  font-weight: 600;
  color: var(--text-main);
  cursor: pointer;
  background-color: transparent;
  -webkit-touch-callout: none; /* iOS Safari */
  -webkit-user-select: none;   /* Safari */
  -khtml-user-select: none;    /* Konqueror HTML */
  -moz-user-select: none;      /* Old versions of Firefox */
  -ms-user-select: none;       /* Internet Explorer/Edge */
  user-select: none;           /* Non-prefixed version, currently supported by Chrome, Edge, Opera and Firefox */
}

.page-blog-qhh88-login-troubleshooting-guide__faq-question::-webkit-details-marker {
  display: none;
}

.page-blog-qhh88-login-troubleshooting-guide__faq-question::marker {
  display: none;
}

.page-blog-qhh88-login-troubleshooting-guide__faq-qtext {
  flex-grow: 1;
}

.page-blog-qhh88-login-troubleshooting-guide__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  margin-left: 15px;
  color: var(--glow-color);
}

.page-blog-qhh88-login-troubleshooting-guide__faq-item[open] .page-blog-qhh88-login-troubleshooting-guide__faq-toggle {
  content: '−';
}

.page-blog-qhh88-login-troubleshooting-guide__faq-answer {
  padding: 0 20px 20px;
  font-size: 1.05em;
  color: var(--text-secondary);
}

.page-blog-qhh88-login-troubleshooting-guide__faq-answer p {
  margin-bottom: 0; /* Remove default paragraph margin */
}

/* Final CTA Section */
.page-blog-qhh88-login-troubleshooting-guide__final-cta-section {
  text-align: center;
  margin-top: 60px;
  padding: 40px 20px;
  background-color: var(--deep-green-color); /* Use a deeper green for CTA */
  border-radius: 8px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.page-blog-qhh88-login-troubleshooting-guide__final-cta-section .page-blog-qhh88-login-troubleshooting-guide__paragraph {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: var(--text-main);
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-blog-qhh88-login-troubleshooting-guide__main-title {
    font-size: clamp(2em, 5vw, 2.8em);
  }
  .page-blog-qhh88-login-troubleshooting-guide__heading-2 {
    font-size: 2em;
  }
  .page-blog-qhh88-login-troubleshooting-guide__heading-3 {
    font-size: 1.6em;
  }
}

@media (max-width: 768px) {
  .page-blog-qhh88-login-troubleshooting-guide {
    font-size: 16px;
    line-height: 1.6;
  }

  /* Images responsive */
  .page-blog-qhh88-login-troubleshooting-guide img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  
  /* All containers for images, videos, buttons */
  .page-blog-qhh88-login-troubleshooting-guide__hero-section,
  .page-blog-qhh88-login-troubleshooting-guide__content-area,
  .page-blog-qhh88-login-troubleshooting-guide__container,
  .page-blog-qhh88-login-troubleshooting-guide__faq-section,
  .page-blog-qhh88-login-troubleshooting-guide__final-cta-section {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px !important;
    padding-right: 15px !important;
    overflow: hidden !important; /* Ensure no overflow */
  }

  .page-blog-qhh88-login-troubleshooting-guide__hero-section {
    padding-top: 10px !important; /* Small top padding */
    padding-bottom: 40px !important;
  }

  .page-blog-qhh88-login-troubleshooting-guide__cta-buttons {
    flex-direction: column; /* Stack buttons vertically */
    gap: 15px;
  }

  .page-blog-qhh88-login-troubleshooting-guide__btn-primary,
  .page-blog-qhh88-login-troubleshooting-guide__btn-secondary {
    max-width: 100% !important;
    width: 100% !important;
    padding: 12px 20px !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    min-width: unset; /* Remove min-width for mobile */
  }

  .page-blog-qhh88-login-troubleshooting-guide__main-title {
    font-size: clamp(1.8em, 7vw, 2.5em);
  }

  .page-blog-qhh88-login-troubleshooting-guide__heading-2 {
    font-size: 1.8em;
  }

  .page-blog-qhh88-login-troubleshooting-guide__heading-3 {
    font-size: 1.4em;
  }

  .page-blog-qhh88-login-troubleshooting-guide__faq-question {
    font-size: 1.1em;
    padding: 15px;
  }

  .page-blog-qhh88-login-troubleshooting-guide__faq-answer {
    padding: 0 15px 15px;
  }
}