/* style/blog-one888-faq-troubleshooting.css */

/* Base styles for the page, inheriting from body's dark background */
.page-blog-one888-faq-troubleshooting {
  color: #ffffff; /* Light text for dark body background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
  background-color: #000000; /* Ensure main content area also has dark background */
}

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

.page-blog-one888-faq-troubleshooting__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding-bottom: 40px; /* Space below content */
  background-color: #000000; /* Ensure hero section has dark background */
}

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

.page-blog-one888-faq-troubleshooting__hero-content {
  padding: 20px;
  max-width: 800px;
  margin-top: 20px;
  z-index: 1;
  color: #ffffff;
}

.page-blog-one888-faq-troubleshooting__main-title {
  font-size: clamp(2em, 4vw, 3.5em); /* Responsive font size */
  font-weight: bold;
  line-height: 1.2;
  margin-bottom: 15px;
  color: #26A9E0; /* Brand color for main title */
}

.page-blog-one888-faq-troubleshooting__intro-text {
  font-size: clamp(1em, 1.5vw, 1.2em);
  margin-bottom: 30px;
  color: #f0f0f0;
}

.page-blog-one888-faq-troubleshooting__btn-primary,
.page-blog-one888-faq-troubleshooting__btn-secondary {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
  max-width: 100%;
}

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

.page-blog-one888-faq-troubleshooting__btn-primary:hover {
  background-color: #1a7bb7;
  border-color: #1a7bb7;
}

.page-blog-one888-faq-troubleshooting__btn-secondary {
  background-color: transparent;
  color: #26A9E0;
  border: 2px solid #26A9E0;
  margin-left: 15px;
}

.page-blog-one888-faq-troubleshooting__btn-secondary:hover {
  background-color: #26A9E0;
  color: #ffffff;
}

.page-blog-one888-faq-troubleshooting__section {
  padding: 60px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.page-blog-one888-faq-troubleshooting__light-bg {
  background-color: #ffffff;
  color: #333333;
}

.page-blog-one888-faq-troubleshooting__light-bg .page-blog-one888-faq-troubleshooting__section-title {
  color: #000000;
}

.page-blog-one888-faq-troubleshooting__dark-bg {
  background-color: #26A9E0; /* Brand color as background */
  color: #ffffff;
}

.page-blog-one888-faq-troubleshooting__dark-bg .page-blog-one888-faq-troubleshooting__section-title {
  color: #ffffff;
}

.page-blog-one888-faq-troubleshooting__section-title {
  font-size: clamp(1.8em, 3vw, 2.5em);
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
}

.page-blog-one888-faq-troubleshooting__text-block {
  font-size: 1.1em;
  margin-bottom: 20px;
  text-align: justify;
}

.page-blog-one888-faq-troubleshooting__highlight {
  color: #EA7C07; /* Login color for highlights */
  font-weight: bold;
}

.page-blog-one888-faq-troubleshooting__image-content {
  width: 100%;
  height: auto;
  display: block;
  margin: 30px auto;
  border-radius: 8px;
  object-fit: cover;
  max-width: 100%;
}

/* FAQ Section */
.page-blog-one888-faq-troubleshooting__faq-list {
  margin-top: 30px;
}

.page-blog-one888-faq-troubleshooting__faq-item {
  background-color: rgba(255, 255, 255, 0.1); /* Slightly transparent white for dark bg */
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  color: #ffffff;
}

.page-blog-one888-faq-troubleshooting__light-bg .page-blog-one888-faq-troubleshooting__faq-item {
  background-color: #f9f9f9; /* Light background for FAQ items in light sections */
  color: #333333;
  border: 1px solid #e0e0e0;
}

.page-blog-one888-faq-troubleshooting__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  cursor: pointer;
  font-weight: bold;
  font-size: 1.1em;
  list-style: none; /* Remove default summary marker */
  -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-one888-faq-troubleshooting__faq-question::-webkit-details-marker {
  display: none;
}

.page-blog-one888-faq-troubleshooting__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  color: #EA7C07; /* Highlight color for toggle */
}

.page-blog-one888-faq-troubleshooting__faq-answer {
  padding: 0 20px 15px;
  font-size: 1em;
  color: #f0f0f0;
}

.page-blog-one888-faq-troubleshooting__light-bg .page-blog-one888-faq-troubleshooting__faq-answer {
  color: #555555;
}

.page-blog-one888-faq-troubleshooting__faq-answer p {
  margin-bottom: 10px;
}

/* Troubleshooting Steps */
.page-blog-one888-faq-troubleshooting__troubleshooting-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.page-blog-one888-faq-troubleshooting__step-item {
  background-color: #f9f9f9;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  color: #333333;
}

.page-blog-one888-faq-troubleshooting__step-item .page-blog-one888-faq-troubleshooting__highlight {
  color: #26A9E0;
}

.page-blog-one888-faq-troubleshooting__step-title {
  font-size: 1.4em;
  font-weight: bold;
  margin-bottom: 15px;
  color: #000000;
}

.page-blog-one888-faq-troubleshooting__list {
  list-style: disc;
  padding-left: 25px;
  margin-bottom: 15px;
}

.page-blog-one888-faq-troubleshooting__list li {
  margin-bottom: 8px;
}

.page-blog-one888-faq-troubleshooting__tips-list {
  list-style: none;
  padding-left: 0;
}

.page-blog-one888-faq-troubleshooting__tips-list li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 15px;
}

.page-blog-one888-faq-troubleshooting__tips-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #EA7C07;
  font-weight: bold;
  font-size: 1.2em;
}

.page-blog-one888-faq-troubleshooting__cta-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  margin-top: 40px;
}

.page-blog-one888-faq-troubleshooting__center-content {
  text-align: center;
}

.page-blog-one888-faq-troubleshooting__btn-large {
  padding: 15px 35px;
  font-size: 1.2em;
}

.page-blog-one888-faq-troubleshooting__last-cta {
  padding-bottom: 80px;
}


/* Responsive styles */
@media (max-width: 1024px) {
  .page-blog-one888-faq-troubleshooting__hero-content {
    max-width: 90%;
  }
}

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

  .page-blog-one888-faq-troubleshooting__container {
    padding: 0 15px;
  }

  .page-blog-one888-faq-troubleshooting__hero-section {
    padding-bottom: 30px;
  }

  .page-blog-one888-faq-troubleshooting__hero-content {
    margin-top: 10px;
    padding: 15px;
  }

  .page-blog-one888-faq-troubleshooting__main-title {
    font-size: clamp(1.8em, 7vw, 2.5em);
  }

  .page-blog-one888-faq-troubleshooting__intro-text {
    font-size: clamp(0.9em, 3vw, 1.1em);
  }

  .page-blog-one888-faq-troubleshooting__btn-primary,
  .page-blog-one888-faq-troubleshooting__btn-secondary {
    max-width: 100% !important;
    width: 100% !important;
    padding: 10px 15px;
    margin: 0 0 10px 0 !important; /* Stack buttons vertically */
    display: block !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-blog-one888-faq-troubleshooting__cta-buttons {
    flex-direction: column;
    gap: 10px;
  }

  .page-blog-one888-faq-troubleshooting__section {
    padding: 40px 0;
  }

  .page-blog-one888-faq-troubleshooting__section-title {
    font-size: clamp(1.5em, 6vw, 2em);
    margin-bottom: 30px;
  }

  .page-blog-one888-faq-troubleshooting__text-block {
    font-size: 1em;
  }

  .page-blog-one888-faq-troubleshooting__image-content,
  .page-blog-one888-faq-troubleshooting__hero-image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-blog-one888-faq-troubleshooting__faq-question {
    font-size: 1em;
    padding: 12px 15px;
  }

  .page-blog-one888-faq-troubleshooting__faq-answer {
    padding: 0 15px 12px;
  }

  .page-blog-one888-faq-troubleshooting__troubleshooting-steps {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-blog-one888-faq-troubleshooting__step-item {
    padding: 20px;
  }

  .page-blog-one888-faq-troubleshooting__step-title {
    font-size: 1.2em;
  }

  .page-blog-one888-faq-troubleshooting__list {
    padding-left: 20px;
  }

  /* Video section specific mobile top padding */
  .page-blog-one888-faq-troubleshooting__video-section {
    padding-top: 10px !important; /* body already handles --header-offset */
  }

  /* Ensure containers with images/buttons/videos are responsive */
  .page-blog-one888-faq-troubleshooting__section,
  .page-blog-one888-faq-troubleshooting__card, /* Though no specific cards, good to include */
  .page-blog-one888-faq-troubleshooting__container,
  .page-blog-one888-faq-troubleshooting__hero-section,
  .page-blog-one888-faq-troubleshooting__troubleshooting-steps,
  .page-blog-one888-faq-troubleshooting__cta-buttons {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }
}

@media (max-width: 480px) {
  .page-blog-one888-faq-troubleshooting__main-title {
    font-size: clamp(1.5em, 8vw, 2em);
  }
  .page-blog-one888-faq-troubleshooting__section-title {
    font-size: clamp(1.3em, 7vw, 1.8em);
  }
}