/* style/blog-ke9-login-faq-troubleshooting.css */
.page-blog-ke9-login-faq-troubleshooting {
  font-family: 'Arial', sans-serif;
  color: #ffffff; /* Text color for dark body background */
  background-color: transparent; /* Body background handled by shared.css (#0a0a0a) */
  line-height: 1.6;
}

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

.page-blog-ke9-login-faq-troubleshooting__hero-section {
  position: relative;
  width: 100%;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: 10px; /* Small top padding, body handles header offset */
  background-color: #0a0a0a; /* Ensure hero background is dark */
}

.page-blog-ke9-login-faq-troubleshooting__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  position: relative;
  z-index: 1;
  max-height: 600px; /* Limit hero image height */
}

.page-blog-ke9-login-faq-troubleshooting__hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  color: #ffffff;
  max-width: 800px;
  padding: 20px;
  background-color: rgba(0, 0, 0, 0.6); /* Semi-transparent overlay for text readability */
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.page-blog-ke9-login-faq-troubleshooting__hero-title {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 700;
  color: #26A9E0;
  margin-bottom: 10px;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-blog-ke9-login-faq-troubleshooting__hero-description {
  font-size: clamp(1rem, 2vw, 1.25rem);
  margin-bottom: 20px;
}

.page-blog-ke9-login-faq-troubleshooting__btn-primary,
.page-blog-ke9-login-faq-troubleshooting__btn-secondary {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  box-sizing: border-box;
  text-align: center;
}

.page-blog-ke9-login-faq-troubleshooting__btn-primary {
  background-color: #EA7C07; /* Login button color */
  color: #ffffff;
  border: 2px solid #EA7C07;
}

.page-blog-ke9-login-faq-troubleshooting__btn-primary:hover {
  background-color: #d16b06;
  border-color: #d16b06;
}

.page-blog-ke9-login-faq-troubleshooting__btn-secondary {
  background-color: #26A9E0;
  color: #ffffff;
  border: 2px solid #26A9E0;
}

.page-blog-ke9-login-faq-troubleshooting__btn-secondary:hover {
  background-color: #1e87bb;
  border-color: #1e87bb;
}

.page-blog-ke9-login-faq-troubleshooting__section-title {
  font-size: 2.5rem;
  color: #26A9E0;
  text-align: center;
  margin-bottom: 40px;
  font-weight: 700;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.page-blog-ke9-login-faq-troubleshooting__text-block {
  font-size: 1.1rem;
  margin-bottom: 20px;
  color: #f0f0f0;
}

.page-blog-ke9-login-faq-troubleshooting__introduction-section,
.page-blog-ke9-login-faq-troubleshooting__common-issues-section,
.page-blog-ke9-login-faq-troubleshooting__troubleshooting-guide-section,
.page-blog-ke9-login-faq-troubleshooting__security-tips-section,
.page-blog-ke9-login-faq-troubleshooting__faq-section,
.page-blog-ke9-login-faq-troubleshooting__contact-section,
.page-blog-ke9-login-faq-troubleshooting__conclusion-section {
  padding: 60px 0;
  background-color: rgba(255, 255, 255, 0.05); /* Light translucent background for sections */
  margin-bottom: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-blog-ke9-login-faq-troubleshooting__common-issues-section .page-blog-ke9-login-faq-troubleshooting__container,
.page-blog-ke9-login-faq-troubleshooting__security-tips-section .page-blog-ke9-login-faq-troubleshooting__container {
  max-width: 900px;
}

.page-blog-ke9-login-faq-troubleshooting__issue-list,
.page-blog-ke9-login-faq-troubleshooting__security-list,
.page-blog-ke9-login-faq-troubleshooting__contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.page-blog-ke9-login-faq-troubleshooting__list-item {
  background-color: rgba(255, 255, 255, 0.1);
  border-left: 5px solid #26A9E0;
  padding: 20px;
  margin-bottom: 15px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-blog-ke9-login-faq-troubleshooting__list-title {
  color: #26A9E0;
  font-size: 1.5rem;
  margin-top: 0;
  margin-bottom: 10px;
}

.page-blog-ke9-login-faq-troubleshooting__guide-item {
  background-color: rgba(255, 255, 255, 0.15);
  padding: 25px;
  margin-bottom: 20px;
  border-radius: 8px;
  border: 1px solid rgba(38, 169, 224, 0.3);
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.25);
}

.page-blog-ke9-login-faq-troubleshooting__guide-title {
  color: #EA7C07;
  font-size: 1.6rem;
  margin-top: 0;
  margin-bottom: 15px;
}

.page-blog-ke9-login-faq-troubleshooting__image {
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto 30px auto;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
  max-width: 800px;
  min-width: 200px;
  min-height: 200px;
}

.page-blog-ke9-login-faq-troubleshooting__faq-list {
  margin-top: 30px;
}

.page-blog-ke9-login-faq-troubleshooting__faq-item {
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(38, 169, 224, 0.2);
  border-radius: 8px;
  margin-bottom: 15px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.page-blog-ke9-login-faq-troubleshooting__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  font-size: 1.2rem;
  font-weight: bold;
  color: #26A9E0;
  cursor: pointer;
  list-style: none;
  user-select: none;
}

.page-blog-ke9-login-faq-troubleshooting__faq-question::-webkit-details-marker {
  display: none;
}

.page-blog-ke9-login-faq-troubleshooting__faq-item[open] > .page-blog-ke9-login-faq-troubleshooting__faq-question {
  background-color: rgba(38, 169, 224, 0.1);
  border-bottom: 1px solid rgba(38, 169, 224, 0.3);
  border-radius: 8px 8px 0 0;
}

.page-blog-ke9-login-faq-troubleshooting__faq-toggle {
  font-size: 1.5rem;
  line-height: 1;
  color: #EA7C07;
}

.page-blog-ke9-login-faq-troubleshooting__faq-answer {
  padding: 15px 25px 20px;
  font-size: 1rem;
  color: #f0f0f0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.page-blog-ke9-login-faq-troubleshooting__contact-list strong {
  color: #EA7C07;
}

/* Responsive styles */
@media (max-width: 1024px) {
  .page-blog-ke9-login-faq-troubleshooting__hero-title {
    font-size: clamp(1.8rem, 5vw, 3rem);
  }
  .page-blog-ke9-login-faq-troubleshooting__section-title {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .page-blog-ke9-login-faq-troubleshooting__container,
  .page-blog-ke9-login-faq-troubleshooting__introduction-section,
  .page-blog-ke9-login-faq-troubleshooting__common-issues-section,
  .page-blog-ke9-login-faq-troubleshooting__troubleshooting-guide-section,
  .page-blog-ke9-login-faq-troubleshooting__security-tips-section,
  .page-blog-ke9-login-faq-troubleshooting__faq-section,
  .page-blog-ke9-login-faq-troubleshooting__contact-section,
  .page-blog-ke9-login-faq-troubleshooting__conclusion-section {
    padding: 40px 15px !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }

  .page-blog-ke9-login-faq-troubleshooting__hero-section {
    padding: 40px 15px !important;
    padding-top: 10px !important; /* body handles header offset */
  }

  .page-blog-ke9-login-faq-troubleshooting__hero-image {
    max-height: 400px;
  }

  .page-blog-ke9-login-faq-troubleshooting__hero-content {
    position: static;
    transform: none;
    background-color: rgba(0, 0, 0, 0.7);
    width: 100%;
    max-width: none;
    padding: 20px;
    margin-top: 20px;
  }

  .page-blog-ke9-login-faq-troubleshooting__hero-title {
    font-size: 1.8rem !important;
  }

  .page-blog-ke9-login-faq-troubleshooting__hero-description {
    font-size: 1rem !important;
  }

  .page-blog-ke9-login-faq-troubleshooting__btn-primary,
  .page-blog-ke9-login-faq-troubleshooting__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 15px !important;
    font-size: 1rem !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-blog-ke9-login-faq-troubleshooting__section-title {
    font-size: 1.8rem;
    margin-bottom: 30px;
  }

  .page-blog-ke9-login-faq-troubleshooting__text-block {
    font-size: 0.95rem;
  }

  .page-blog-ke9-login-faq-troubleshooting__image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    min-width: 200px !important;
    min-height: 200px !important;
  }

  .page-blog-ke9-login-faq-troubleshooting__list-title {
    font-size: 1.3rem;
  }

  .page-blog-ke9-login-faq-troubleshooting__guide-title {
    font-size: 1.4rem;
  }

  .page-blog-ke9-login-faq-troubleshooting__faq-question {
    font-size: 1rem;
    padding: 15px 20px;
  }

  .page-blog-ke9-login-faq-troubleshooting__faq-toggle {
    font-size: 1.2rem;
  }

  .page-blog-ke9-login-faq-troubleshooting__faq-answer {
    padding: 10px 20px 15px;
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .page-blog-ke9-login-faq-troubleshooting__hero-title {
    font-size: 1.5rem !important;
  }
  .page-blog-ke9-login-faq-troubleshooting__section-title {
    font-size: 1.5rem;
  }
}