.page-blog-sodo77vn-login-troubleshooting {
  font-family: 'Arial', sans-serif;
  color: var(--text-main); /* #F2FFF6 */
  background-color: var(--bg-color, #08160F); /* Fallback to a dark green if --bg-color is not set */
  line-height: 1.6;
}

/* Hero Section */
.page-blog-sodo77vn-login-troubleshooting__hero-section {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 10px 20px 60px; /* Small top padding, more bottom padding */
  text-align: center;
  background-color: var(--background); /* #08160F */
}

.page-blog-sodo77vn-login-troubleshooting__hero-image-wrapper {
  width: 100%;
  max-height: 500px; /* Limit height for hero image */
  overflow: hidden;
  margin-bottom: 30px;
}

.page-blog-sodo77vn-login-troubleshooting__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.page-blog-sodo77vn-login-troubleshooting__hero-content {
  max-width: 900px;
  z-index: 1; /* Ensure content is above image if any layering occurs (though rules say no overlap) */
}

.page-blog-sodo77vn-login-troubleshooting__main-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--text-main); /* #F2FFF6 */
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-blog-sodo77vn-login-troubleshooting__hero-description {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--text-secondary); /* #A7D9B8 */
  margin-bottom: 30px;
}

.page-blog-sodo77vn-login-troubleshooting__cta-button {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  margin: 10px;
  max-width: 100%; /* Responsive button */
  box-sizing: border-box; /* Responsive button */
  white-space: normal; /* Allow text wrap */
  word-wrap: break-word; /* Allow text wrap */
}

.page-blog-sodo77vn-login-troubleshooting__btn-primary {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #ffffff;
  border: none;
}

.page-blog-sodo77vn-login-troubleshooting__btn-primary:hover {
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
  transform: translateY(-2px);
}

.page-blog-sodo77vn-login-troubleshooting__btn-secondary {
  background: transparent;
  color: var(--text-main); /* #F2FFF6 */
  border: 2px solid var(--border); /* #2E7A4E */
}

.page-blog-sodo77vn-login-troubleshooting__btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

/* Content Area */
.page-blog-sodo77vn-login-troubleshooting__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  color: var(--text-main); /* #F2FFF6 */
  background-color: var(--background); /* #08160F */
}

.page-blog-sodo77vn-login-troubleshooting__heading-2 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--gold); /* #F2C14E */
  margin-top: 40px;
  margin-bottom: 25px;
  text-align: center;
}

.page-blog-sodo77vn-login-troubleshooting__heading-3 {
  font-size: clamp(1.4rem, 3vw, 1.8rem);
  font-weight: 600;
  color: var(--glow); /* #57E38D */
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-blog-sodo77vn-login-troubleshooting__heading-4 {
  font-size: clamp(1.2rem, 2.5vw, 1.5rem);
  font-weight: 600;
  color: var(--text-main); /* #F2FFF6 */
  margin-top: 25px;
  margin-bottom: 10px;
}

.page-blog-sodo77vn-login-troubleshooting p {
  margin-bottom: 1em;
  font-size: 1.05rem;
  color: var(--text-secondary); /* #A7D9B8 */
}

.page-blog-sodo77vn-login-troubleshooting p a {
  color: var(--glow); /* #57E38D */
  text-decoration: underline;
}

.page-blog-sodo77vn-login-troubleshooting p a:hover {
  color: var(--gold); /* #F2C14E */
}

.page-blog-sodo77vn-login-troubleshooting__image-text-block {
  display: flex;
  align-items: center;
  gap: 30px;
  margin: 40px 0;
  flex-wrap: wrap; /* Allow wrapping on smaller screens */
}

.page-blog-sodo77vn-login-troubleshooting__image-text-block--reverse {
  flex-direction: row-reverse;
}

.page-blog-sodo77vn-login-troubleshooting__image-text-block .page-blog-sodo77vn-login-troubleshooting__blog-image {
  flex: 1;
  min-width: 300px;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-blog-sodo77vn-login-troubleshooting__image-text-block .page-blog-sodo77vn-login-troubleshooting__text-content {
  flex: 1.5;
  min-width: 300px;
}

.page-blog-sodo77vn-login-troubleshooting__blog-image {
  width: 100%;
  height: auto;
  display: block;
  margin: 30px auto;
  border-radius: 12px;
  object-fit: cover;
  min-width: 200px; /* Minimum size requirement */
  min-height: 200px; /* Minimum size requirement */
}

.page-blog-sodo77vn-login-troubleshooting__list {
  list-style: none;
  padding: 0;
  margin: 30px 0;
}

.page-blog-sodo77vn-login-troubleshooting__list-item {
  background-color: var(--card-bg); /* #11271B */
  padding: 20px;
  margin-bottom: 15px;
  border-radius: 10px;
  border: 1px solid var(--border); /* #2E7A4E */
}

.page-blog-sodo77vn-login-troubleshooting__list-item p {
  color: var(--text-secondary); /* #A7D9B8 */
  margin-bottom: 0;
}

/* FAQ Section */
.page-blog-sodo77vn-login-troubleshooting__faq-section {
  margin-top: 50px;
  border-top: 1px solid var(--divider); /* #1E3A2A */
  padding-top: 20px;
}

.page-blog-sodo77vn-login-troubleshooting__faq-item {
  background-color: var(--card-bg); /* #11271B */
  margin-bottom: 15px;
  border-radius: 10px;
  border: 1px solid var(--border); /* #2E7A4E */
  overflow: hidden;
}

.page-blog-sodo77vn-login-troubleshooting__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--text-main); /* #F2FFF6 */
  cursor: pointer;
  background-color: var(--card-bg); /* #11271B */
  user-select: none;
  list-style: none; /* For details/summary */
}

.page-blog-sodo77vn-login-troubleshooting__faq-question::-webkit-details-marker {
  display: none; /* Hide default marker for details/summary */
}

.page-blog-sodo77vn-login-troubleshooting__faq-qtext {
  flex-grow: 1;
}

.page-blog-sodo77vn-login-troubleshooting__faq-toggle {
  font-size: 1.5rem;
  line-height: 1;
  margin-left: 15px;
  color: var(--glow); /* #57E38D */
  transition: transform 0.3s ease;
}

.page-blog-sodo77vn-login-troubleshooting__faq-item[open] .page-blog-sodo77vn-login-troubleshooting__faq-toggle {
  transform: rotate(45deg); /* Change '+' to 'x' or similar */
}

.page-blog-sodo77vn-login-troubleshooting__faq-answer {
  padding: 0 25px 18px;
  font-size: 1rem;
  color: var(--text-secondary); /* #A7D9B8 */
  max-height: 0; /* For JS-controlled div, will be overridden */
  overflow: hidden;
  transition: max-height 0.3s ease-out, padding-top 0.3s ease-out;
}

.page-blog-sodo77vn-login-troubleshooting__faq-item[open] .page-blog-sodo77vn-login-troubleshooting__faq-answer {
  max-height: 500px; /* Arbitrary large value for details/summary */
  padding-top: 10px;
}

.page-blog-sodo77vn-login-troubleshooting__cta-section {
  text-align: center;
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid var(--divider); /* #1E3A2A */
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-blog-sodo77vn-login-troubleshooting__hero-section {
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-blog-sodo77vn-login-troubleshooting__content-area {
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-blog-sodo77vn-login-troubleshooting__image-text-block {
    flex-direction: column;
  }
  .page-blog-sodo77vn-login-troubleshooting__image-text-block--reverse {
    flex-direction: column; /* Ensure consistent stacking */
  }
  .page-blog-sodo77vn-login-troubleshooting__image-text-block .page-blog-sodo77vn-login-troubleshooting__blog-image {
    min-width: unset;
    width: 100%;
  }
  .page-blog-sodo77vn-login-troubleshooting__image-text-block .page-blog-sodo77vn-login-troubleshooting__text-content {
    min-width: unset;
    width: 100%;
  }
}

@media (max-width: 768px) {
  /* Images responsive */
  .page-blog-sodo77vn-login-troubleshooting img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-blog-sodo77vn-login-troubleshooting__hero-image-wrapper,
  .page-blog-sodo77vn-login-troubleshooting__image-text-block,
  .page-blog-sodo77vn-login-troubleshooting__content-area,
  .page-blog-sodo77vn-login-troubleshooting__faq-section,
  .page-blog-sodo77vn-login-troubleshooting__cta-section {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important; /* Prevent horizontal scroll */
  }

  /* Video section (if any) */
  .page-blog-sodo77vn-login-troubleshooting__video-section {
    padding-top: 10px !important; /* small top padding */
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-blog-sodo77vn-login-troubleshooting__video-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }

  /* Buttons responsive */
  .page-blog-sodo77vn-login-troubleshooting__cta-button,
  .page-blog-sodo77vn-login-troubleshooting__btn-primary,
  .page-blog-sodo77vn-login-troubleshooting__btn-secondary,
  .page-blog-sodo77vn-login-troubleshooting a[class*="button"],
  .page-blog-sodo77vn-login-troubleshooting a[class*="btn"] {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    margin: 10px 0 !important; /* Stack buttons vertically */
  }

  .page-blog-sodo77vn-login-troubleshooting__hero-content .page-blog-sodo77vn-login-troubleshooting__cta-button {
    margin: 10px auto !important; /* Center stacked buttons */
  }
  
  .page-blog-sodo77vn-login-troubleshooting__cta-section {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .page-blog-sodo77vn-login-troubleshooting__main-title {
    font-size: 2rem;
  }

  .page-blog-sodo77vn-login-troubleshooting p {
    font-size: 1rem;
  }

  .page-blog-sodo77vn-login-troubleshooting__faq-question {
    font-size: 1rem;
    padding: 15px 20px;
  }
  .page-blog-sodo77vn-login-troubleshooting__faq-answer {
    padding: 0 20px 15px;
  }
}

/* Color contrast enforcement based on body background */
/* Assuming --bg-color is dark, as specified #08160F */
.page-blog-sodo77vn-login-troubleshooting {
  color: var(--text-main); /* #F2FFF6 for dark background */
}

.page-blog-sodo77vn-login-troubleshooting__card,
.page-blog-sodo77vn-login-troubleshooting__list-item,
.page-blog-sodo77vn-login-troubleshooting__faq-item {
  background-color: var(--card-bg); /* #11271B */
  color: var(--text-main); /* #F2FFF6 */
}

/* Specific text elements for secondary color */
.page-blog-sodo77vn-login-troubleshooting__hero-description,
.page-blog-sodo77vn-login-troubleshooting p,
.page-blog-sodo77vn-login-troubleshooting__list-item p,
.page-blog-sodo77vn-login-troubleshooting__faq-answer {
  color: var(--text-secondary); /* #A7D9B8 */
}

/* Headings colors */
.page-blog-sodo77vn-login-troubleshooting__heading-2 {
  color: var(--gold); /* #F2C14E */
}
.page-blog-sodo77vn-login-troubleshooting__heading-3 {
  color: var(--glow); /* #57E38D */
}
.page-blog-sodo77vn-login-troubleshooting__heading-4 {
  color: var(--text-main); /* #F2FFF6 */
}

/* Links within content */
.page-blog-sodo77vn-login-troubleshooting p a {
  color: var(--glow); /* #57E38D */
}
.page-blog-sodo77vn-login-troubleshooting p a:hover {
  color: var(--gold); /* #F2C14E */
}

/* Borders and dividers */
.page-blog-sodo77vn-login-troubleshooting__list-item,
.page-blog-sodo77vn-login-troubleshooting__faq-item {
  border: 1px solid var(--border); /* #2E7A4E */
}
.page-blog-sodo77vn-login-troubleshooting__faq-section,
.page-blog-sodo77vn-login-troubleshooting__cta-section {
  border-top: 1px solid var(--divider); /* #1E3A2A */
}

/* No CSS filters for images */
.page-blog-sodo77vn-login-troubleshooting img {
  filter: none;
}