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

/* body background color is handled by shared.css var(--background-color) */
.page-blog-qq88-troubleshooting {
  color: var(--text-main); /* Default text color for the page */
  background-color: var(--background-page); /* Specific background for main content sections */
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

.page-blog-qq88-troubleshooting__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-blog-qq88-troubleshooting__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 10px 0 60px 0; /* body padding-top handles header offset */
  overflow: hidden;
  background-color: var(--deep-green);
}

.page-blog-qq88-troubleshooting__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  max-height: 600px; /* Adjust as needed for visual impact */
}

.page-blog-qq88-troubleshooting__hero-content {
  text-align: center;
  padding: 40px 20px;
  max-width: 900px;
  z-index: 1;
  color: var(--text-main);
}

.page-blog-qq88-troubleshooting__main-title {
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--gold-color);
  margin-bottom: 20px;
}

.page-blog-qq88-troubleshooting__hero-description {
  font-size: 1.1em;
  margin-bottom: 30px;
  color: var(--text-secondary);
}

.page-blog-qq88-troubleshooting__cta-button {
  display: inline-block;
  padding: 15px 30px;
  background: var(--button-gradient);
  color: var(--text-main);
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  border: none;
}

.page-blog-qq88-troubleshooting__cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-blog-qq88-troubleshooting__cta-button--inline {
  margin-top: 30px;
}

.page-blog-qq88-troubleshooting__cta-button--large {
  padding: 18px 35px;
  font-size: 1.1em;
}

.page-blog-qq88-troubleshooting__section {
  padding: 60px 0;
  border-bottom: 1px solid var(--divider-color);
}

.page-blog-qq88-troubleshooting__section:last-of-type {
  border-bottom: none;
}

.page-blog-qq88-troubleshooting__section-title {
  font-size: 2.2em;
  color: var(--gold-color);
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
}

.page-blog-qq88-troubleshooting__paragraph {
  font-size: 1em;
  color: var(--text-secondary);
  margin-bottom: 15px;
  text-align: justify;
}

.page-blog-qq88-troubleshooting__image-content {
  width: 100%;
  height: auto;
  display: block;
  margin: 30px auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  min-width: 200px;
  min-height: 200px;
}

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

.page-blog-qq88-troubleshooting__step-item {
  background-color: var(--card-bg);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  border: 1px solid var(--border-color);
}

.page-blog-qq88-troubleshooting__step-title {
  font-size: 1.5em;
  color: var(--primary-color);
  margin-bottom: 15px;
  font-weight: bold;
}

.page-blog-qq88-troubleshooting__list {
  list-style-type: disc;
  margin-left: 20px;
  color: var(--text-secondary);
  margin-bottom: 15px;
}

.page-blog-qq88-troubleshooting__list li {
  margin-bottom: 8px;
  color: var(--text-secondary);
}

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

.page-blog-qq88-troubleshooting__issue-card {
  background-color: var(--card-bg);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  border: 1px solid var(--border-color);
}

.page-blog-qq88-troubleshooting__issue-title {
  font-size: 1.5em;
  color: var(--gold-color);
  margin-bottom: 15px;
  font-weight: bold;
}

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

.page-blog-qq88-troubleshooting__solution-item {
  background-color: var(--card-bg);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  border: 1px solid var(--border-color);
}

.page-blog-qq88-troubleshooting__solution-title {
  font-size: 1.5em;
  color: var(--primary-color);
  margin-bottom: 15px;
  font-weight: bold;
}

.page-blog-qq88-troubleshooting__benefits-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
  list-style: none;
  padding: 0;
}

.page-blog-qq88-troubleshooting__benefit-item {
  background-color: var(--card-bg);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  border: 1px solid var(--border-color);
}

.page-blog-qq88-troubleshooting__benefit-title {
  font-size: 1.5em;
  color: var(--gold-color);
  margin-bottom: 15px;
  font-weight: bold;
}

.page-blog-qq88-troubleshooting__faq-list {
  margin-top: 40px;
}

.page-blog-qq88-troubleshooting__faq-item {
  background-color: var(--card-bg);
  margin-bottom: 15px;
  border-radius: 8px;
  border: 1px solid var(--border-color);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.page-blog-qq88-troubleshooting__faq-item summary {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  font-weight: bold;
  color: var(--primary-color);
  font-size: 1.1em;
}

.page-blog-qq88-troubleshooting__faq-item summary::-webkit-details-marker {
  display: none;
}

.page-blog-qq88-troubleshooting__faq-qtext {
  flex-grow: 1;
  color: var(--text-main);
}

.page-blog-qq88-troubleshooting__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  margin-left: 15px;
  color: var(--gold-color);
}

.page-blog-qq88-troubleshooting__faq-item[open] .page-blog-qq88-troubleshooting__faq-toggle {
  content: '−';
}

.page-blog-qq88-troubleshooting__faq-answer {
  padding: 0 25px 20px 25px;
  color: var(--text-secondary);
  font-size: 0.95em;
}

/* Responsive styles */
@media (max-width: 1024px) {
  .page-blog-qq88-troubleshooting__main-title {
    font-size: 2.5em;
  }
  .page-blog-qq88-troubleshooting__section-title {
    font-size: 2em;
  }
}

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

  .page-blog-qq88-troubleshooting__container {
    padding: 0 15px !important;
  }

  .page-blog-qq88-troubleshooting__hero-section {
    padding-top: 10px !important; /* body padding-top handles header offset */
    padding-bottom: 40px;
  }

  .page-blog-qq88-troubleshooting__hero-image {
    max-height: 400px;
  }

  .page-blog-qq88-troubleshooting__hero-content {
    padding: 30px 15px;
  }

  .page-blog-qq88-troubleshooting__main-title {
    font-size: 2em;
  }

  .page-blog-qq88-troubleshooting__section-title {
    font-size: 1.8em;
  }

  .page-blog-qq88-troubleshooting__cta-button,
  .page-blog-qq88-troubleshooting__cta-button--inline,
  .page-blog-qq88-troubleshooting__cta-button--large {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding: 15px 20px !important;
    font-size: 1em !important;
  }

  .page-blog-qq88-troubleshooting__image-content,
  .page-blog-qq88-troubleshooting img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
    min-width: 200px !important;
    min-height: 200px !important;
  }

  .page-blog-qq88-troubleshooting__section,
  .page-blog-qq88-troubleshooting__card,
  .page-blog-qq88-troubleshooting__container,
  .page-blog-qq88-troubleshooting__step-item,
  .page-blog-qq88-troubleshooting__issue-card,
  .page-blog-qq88-troubleshooting__solution-item,
  .page-blog-qq88-troubleshooting__benefit-item,
  .page-blog-qq88-troubleshooting__faq-item {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px !important;
    padding-right: 15px !important;
    overflow: hidden !important;
  }

  .page-blog-qq88-troubleshooting__step-by-step,
  .page-blog-qq88-troubleshooting__issue-list,
  .page-blog-qq88-troubleshooting__solution-list,
  .page-blog-qq88-troubleshooting__benefits-list {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-blog-qq88-troubleshooting__faq-item summary {
    padding: 15px 20px;
    font-size: 1em;
  }

  .page-blog-qq88-troubleshooting__faq-answer {
    padding: 0 20px 15px 20px;
  }
}

@media (max-width: 480px) {
  .page-blog-qq88-troubleshooting__main-title {
    font-size: 1.8em;
  }
  .page-blog-qq88-troubleshooting__section-title {
    font-size: 1.6em;
  }
  .page-blog-qq88-troubleshooting__hero-description {
    font-size: 1em;
  }
  .page-blog-qq88-troubleshooting__step-title,
  .page-blog-qq88-troubleshooting__issue-title,
  .page-blog-qq88-troubleshooting__solution-title,
  .page-blog-qq88-troubleshooting__benefit-title {
    font-size: 1.3em;
  }
}