:root {
  --primary-color: #11A84E;
  --secondary-color: #22C768;
  --Button-Gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  --Card-B-G: #11271B;
  --Background: #08160F;
  --Text-Main: #F2FFF6;
  --Text-Secondary: #A7D9B8;
  --Border: #2E7A4E;
  --Glow: #57E38D;
  --Gold: #F2C14E;
  --Divider: #1E3A2A;
  --Deep-Green: #0A4B2C;
}

.page-blog-troubleshooting-v188v-login {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: var(--Text-Secondary); /* Default text color for the page */
  background-color: var(--Background); /* Specific background for this page */
}

.page-blog-troubleshooting-v188v-login h1,
.page-blog-troubleshooting-v188v-login h2,
.page-blog-troubleshooting-v188v-login h3,
.page-blog-troubleshooting-v188v-login h4,
.page-blog-troubleshooting-v188v-login h5,
.page-blog-troubleshooting-v188v-login h6 {
  color: var(--Text-Main);
}

.page-blog-troubleshooting-v188v-login__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 10px; /* Small top padding, body handles header offset */
  padding-bottom: 60px;
  padding-left: 20px;
  padding-right: 20px;
  box-sizing: border-box;
  background-color: var(--Background);
}

.page-blog-troubleshooting-v188v-login__hero-image {
  width: 100%;
  max-width: 1920px;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 30px;
}

.page-blog-troubleshooting-v188v-login__hero-content {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  color: var(--Text-Main);
}

.page-blog-troubleshooting-v188v-login__main-title {
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--Text-Main);
  margin-bottom: 20px;
  max-width: 100%;
}

.page-blog-troubleshooting-v188v-login__description {
  font-size: 1.1em;
  margin-bottom: 30px;
  color: var(--Text-Secondary);
}

.page-blog-troubleshooting-v188v-login__cta-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
  width: 100%; /* Ensure container takes full width for mobile flex-wrap */
  max-width: 500px; /* Limit width on larger screens */
  margin: 0 auto;
}

.page-blog-troubleshooting-v188v-login__btn-primary,
.page-blog-troubleshooting-v188v-login__btn-secondary {
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.2s ease;
  display: inline-block;
  box-sizing: border-box;
  max-width: 100%;
  white-space: normal;
  word-wrap: break-word;
  text-align: center;
}

.page-blog-troubleshooting-v188v-login__btn-primary {
  background: var(--Button-Gradient);
  color: #ffffff;
  border: none;
}

.page-blog-troubleshooting-v188v-login__btn-primary:hover {
  transform: translateY(-2px);
  opacity: 0.9;
}

.page-blog-troubleshooting-v188v-login__btn-secondary {
  background-color: transparent;
  color: var(--Text-Main);
  border: 2px solid var(--Border);
}

.page-blog-troubleshooting-v188v-login__btn-secondary:hover {
  transform: translateY(-2px);
  background-color: rgba(255, 255, 255, 0.1);
}

.page-blog-troubleshooting-v188v-login__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  box-sizing: border-box;
  background-color: var(--Background);
  color: var(--Text-Secondary);
}

.page-blog-troubleshooting-v188v-login__section-title {
  font-size: 2.2em;
  color: var(--Text-Main);
  margin-top: 40px;
  margin-bottom: 25px;
  text-align: center;
}

.page-blog-troubleshooting-v188v-login__grid-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}

.page-blog-troubleshooting-v188v-login__card {
  background-color: var(--Card-B-G);
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  text-align: center;
  color: var(--Text-Secondary);
  border: 1px solid var(--Border);
}

.page-blog-troubleshooting-v188v-login__card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
  display: block;
}

.page-blog-troubleshooting-v188v-login__card-title {
  font-size: 1.4em;
  color: var(--Text-Main);
  margin-bottom: 10px;
}

.page-blog-troubleshooting-v188v-login__solution-block {
  background-color: var(--Card-B-G);
  border-radius: 12px;
  padding: 30px;
  margin-bottom: 30px;
  border: 1px solid var(--Border);
  color: var(--Text-Secondary);
}

.page-blog-troubleshooting-v188v-login__solution-subtitle {
  font-size: 1.8em;
  color: var(--Text-Main);
  margin-bottom: 20px;
}

.page-blog-troubleshooting-v188v-login__solution-list {
  list-style: none;
  padding: 0;
  margin-left: 20px;
}

.page-blog-troubleshooting-v188v-login__solution-list li {
  margin-bottom: 10px;
  position: relative;
  padding-left: 25px;
  color: var(--Text-Secondary);
}

.page-blog-troubleshooting-v188v-login__solution-list li::before {
  content: '✔️'; /* Checkmark for list items */
  position: absolute;
  left: 0;
  color: var(--Glow);
}

.page-blog-troubleshooting-v188v-login__image-inline {
  width: 100%;
  height: auto;
  max-width: 800px;
  display: block;
  margin: 25px auto;
  border-radius: 10px;
}

.page-blog-troubleshooting-v188v-login__tips-list {
  list-style: none;
  padding: 0;
  margin: 0 auto 50px auto;
  max-width: 800px;
}

.page-blog-troubleshooting-v188v-login__tips-list li {
  background-color: var(--Card-B-G);
  padding: 15px 20px;
  margin-bottom: 10px;
  border-radius: 8px;
  border-left: 5px solid var(--Glow);
  color: var(--Text-Main);
}

.page-blog-troubleshooting-v188v-login__faq-list {
  max-width: 900px;
  margin: 0 auto 50px auto;
}

.page-blog-troubleshooting-v188v-login__faq-item {
  background-color: var(--Card-B-G);
  border: 1px solid var(--Border);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  color: var(--Text-Secondary);
}

.page-blog-troubleshooting-v188v-login__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  cursor: pointer;
  font-weight: bold;
  font-size: 1.1em;
  color: var(--Text-Main);
  background-color: var(--Deep-Green);
  border-bottom: 1px solid var(--Divider);
}

.page-blog-troubleshooting-v188v-login__faq-question::-webkit-details-marker {
  display: none;
}

.page-blog-troubleshooting-v188v-login__faq-question::marker {
  display: none;
}

.page-blog-troubleshooting-v188v-login__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  margin-left: 15px;
  color: var(--Gold);
}

.page-blog-troubleshooting-v188v-login__faq-answer {
  padding: 20px 25px;
  font-size: 1em;
  color: var(--Text-Secondary);
}

.page-blog-troubleshooting-v188v-login__faq-item[open] .page-blog-troubleshooting-v188v-login__faq-question {
  border-bottom: 1px solid var(--Divider);
}

.page-blog-troubleshooting-v188v-login__cta-banner {
  background-color: var(--Deep-Green);
  border-radius: 12px;
  padding: 50px 30px;
  text-align: center;
  margin-top: 60px;
  border: 1px solid var(--Border);
  color: var(--Text-Secondary);
}

.page-blog-troubleshooting-v188v-login__cta-title {
  font-size: 2.5em;
  color: var(--Text-Main);
  margin-bottom: 20px;
}

.page-blog-troubleshooting-v188v-login__cta-text {
  font-size: 1.2em;
  color: var(--Text-Secondary);
  margin-bottom: 30px;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-blog-troubleshooting-v188v-login__main-title {
    font-size: 2.5em;
  }
  .page-blog-troubleshooting-v188v-login__section-title {
    font-size: 2em;
  }
  .page-blog-troubleshooting-v188v-login__cta-title {
    font-size: 2em;
  }
}

@media (max-width: 768px) {
  .page-blog-troubleshooting-v188v-login__hero-content {
    padding: 0 15px;
  }
  .page-blog-troubleshooting-v188v-login__main-title {
    font-size: 2em;
  }
  .page-blog-troubleshooting-v188v-login__description {
    font-size: 1em;
  }
  .page-blog-troubleshooting-v188v-login__cta-buttons {
    flex-direction: column;
    gap: 10px;
    width: 100%;
    max-width: 300px; /* Constrain buttons slightly */
    margin: 0 auto;
  }
  .page-blog-troubleshooting-v188v-login__btn-primary,
  .page-blog-troubleshooting-v188v-login__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-blog-troubleshooting-v188v-login__content-area,
  .page-blog-troubleshooting-v188v-login__solution-block,
  .page-blog-troubleshooting-v188v-login__card,
  .page-blog-troubleshooting-v188v-login__faq-list,
  .page-blog-troubleshooting-v188v-login__cta-banner {
    padding-left: 15px !important;
    padding-right: 15px !important;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }

  .page-blog-troubleshooting-v188v-login img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-blog-troubleshooting-v188v-login__hero-section {
    padding-top: 10px !important; /* body already handles header offset */
    padding-bottom: 40px;
  }
  .page-blog-troubleshooting-v188v-login__section-title {
    font-size: 1.8em;
  }
  .page-blog-troubleshooting-v188v-login__card-title {
    font-size: 1.2em;
  }
  .page-blog-troubleshooting-v188v-login__solution-subtitle {
    font-size: 1.5em;
  }
  .page-blog-troubleshooting-v188v-login__cta-title {
    font-size: 1.8em;
  }
  .page-blog-troubleshooting-v188v-login__cta-text {
    font-size: 1em;
  }
  .page-blog-troubleshooting-v188v-login__faq-question {
    font-size: 1em;
  }
  .page-blog-troubleshooting-v188v-login__faq-answer {
    font-size: 0.95em;
  }
}

@media (max-width: 480px) {
  .page-blog-troubleshooting-v188v-login__main-title {
    font-size: 1.8em;
  }
  .page-blog-troubleshooting-v188v-login__section-title {
    font-size: 1.6em;
  }
  .page-blog-troubleshooting-v188v-login__cta-title {
    font-size: 1.6em;
  }
  .page-blog-troubleshooting-v188v-login__hero-section {
    padding-bottom: 30px;
  }
  .page-blog-troubleshooting-v188v-login__content-area {
    padding-top: 20px;
    padding-bottom: 20px;
  }
}