:root {
  --primary-color: #003366;
  --secondary-color: #FFCC00;
  --text-light: #ffffff;
  --text-dark: #333333;
  --bg-dark-1: var(--dark-bg-1, #0d0d0d); /* Assuming shared.css defines --dark-bg-1 */
  --bg-light-1: #f8f9fa;
  --border-color: #e0e0e0;
}

.page-resources-u888-login-troubleshooting {
  color: var(--text-light); /* Default to light text for dark body background */
  background-color: var(--bg-dark-1);
  line-height: 1.6;
  font-family: 'Arial', sans-serif;
}

/* Ensure main wrapper provides padding for fixed header */
.page-resources-u888-login-troubleshooting__main-wrapper {
  padding-top: 120px; /* Adjust based on actual header height */
}

.page-resources-u888-login-troubleshooting__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-resources-u888-login-troubleshooting__hero-section {
  text-align: center;
  padding: 80px 0;
  background: linear-gradient(135deg, var(--primary-color) 0%, #001a33 100%);
  color: var(--text-light);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-resources-u888-login-troubleshooting__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--secondary-color);
}

.page-resources-u888-login-troubleshooting__hero-subtitle {
  font-size: 1.2em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-resources-u888-login-troubleshooting__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

.page-resources-u888-login-troubleshooting__btn-primary,
.page-resources-u888-login-troubleshooting__btn-secondary {
  display: inline-block;
  padding: 15px 35px;
  border-radius: 8px;
  font-size: 1.1em;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  border: 2px solid transparent;
  text-align: center;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-resources-u888-login-troubleshooting__btn-primary {
  background-color: var(--secondary-color);
  color: var(--primary-color);
}

.page-resources-u888-login-troubleshooting__btn-primary:hover {
  background-color: #e6b800;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.page-resources-u888-login-troubleshooting__btn-secondary {
  background-color: transparent;
  color: var(--text-light);
  border-color: var(--secondary-color);
}

.page-resources-u888-login-troubleshooting__btn-secondary:hover {
  background-color: var(--secondary-color);
  color: var(--primary-color);
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.page-resources-u888-login-troubleshooting__content-section {
  padding: 60px 0;
  color: var(--text-dark);
  background-color: var(--bg-light-1);
}

.page-resources-u888-login-troubleshooting__section-title {
  font-size: 2.2em;
  font-weight: 700;
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

.page-resources-u888-login-troubleshooting__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: var(--secondary-color);
  margin: 15px auto 0;
  border-radius: 2px;
}

.page-resources-u888-login-troubleshooting__content-section p {
  font-size: 1.1em;
  margin-bottom: 20px;
  text-align: justify;
}

.page-resources-u888-login-troubleshooting__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-resources-u888-login-troubleshooting__card {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: var(--text-dark);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-resources-u888-login-troubleshooting__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-resources-u888-login-troubleshooting__card-image {
  max-width: 250px;
  height: auto;
  margin: 0 auto 20px;
  display: block;
  border-radius: 8px;
}

.page-resources-u888-login-troubleshooting__card-title {
  font-size: 1.4em;
  color: var(--primary-color);
  margin-bottom: 15px;
  font-weight: 600;
}

.page-resources-u888-login-troubleshooting__card p {
  font-size: 0.95em;
  margin-bottom: 20px;
  flex-grow: 1;
  text-align: left;
}

.page-resources-u888-login-troubleshooting__btn-link {
  display: inline-block;
  padding: 10px 20px;
  background-color: var(--primary-color);
  color: var(--text-light);
  text-decoration: none;
  border-radius: 5px;
  font-size: 0.9em;
  font-weight: bold;
  transition: background-color 0.3s ease;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-resources-u888-login-troubleshooting__btn-link:hover {
  background-color: #004d99;
}

.page-resources-u888-login-troubleshooting__list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
}

.page-resources-u888-login-troubleshooting__list li {
  background-color: #ffffff;
  padding: 18px 25px;
  margin-bottom: 12px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  font-size: 1.05em;
  color: var(--text-dark);
  border-left: 5px solid var(--secondary-color);
  transition: all 0.2s ease;
}

.page-resources-u888-login-troubleshooting__list li:hover {
  transform: translateX(5px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.page-resources-u888-login-troubleshooting__list li strong {
  color: var(--primary-color);
}

.page-resources-u888-login-troubleshooting__contact-list {
  list-style: disc;
  padding-left: 25px;
  margin-top: 20px;
}

.page-resources-u888-login-troubleshooting__contact-list li {
  background: none;
  box-shadow: none;
  border-left: none;
  padding: 5px 0;
  margin-bottom: 8px;
  color: var(--text-dark);
  font-size: 1.05em;
}

.page-resources-u888-login-troubleshooting__contact-list li strong {
  color: var(--primary-color);
}

.page-resources-u888-login-troubleshooting__contact-cta {
  margin-top: 30px;
  display: block;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  background-color: var(--primary-color);
  color: var(--text-light);
}

.page-resources-u888-login-troubleshooting__contact-cta:hover {
  background-color: #004d99;
  color: var(--secondary-color);
}

.page-resources-u888-login-troubleshooting__faq-list {
  margin-top: 40px;
}

/* FAQ container style */
.page-resources-u888-login-troubleshooting__faq-item {
  margin-bottom: 15px;
  border-radius: 5px;
  overflow: hidden;
}

/* FAQ default state - answer hidden */
.page-resources-u888-login-troubleshooting__faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease;
  padding: 0 15px;
  opacity: 0;
}

/* FAQ expanded state - 🚨 Use!important and sufficiently large max-height to ensure it expands */
.page-resources-u888-login-troubleshooting__faq-item.active .page-resources-u888-login-troubleshooting__faq-answer {
  max-height: 2000px !important; /* 🚨 Use!important to ensure priority, value large enough to contain any content */
  padding: 20px 15px !important;
  opacity: 1;
  background: #f9f9f9;
  border-radius: 0 0 5px 5px;
}

/* Question style */
.page-resources-u888-login-troubleshooting__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  background: #fff;
  border: 1px solid var(--border-color);
  border-radius: 5px;
  cursor: pointer;
  user-select: none;
  transition: background-color 0.3s ease, border-color 0.3s ease;
  position: relative;
  color: var(--text-dark);
}

.page-resources-u888-login-troubleshooting__faq-question:hover {
  background: #f5f5f5;
  border-color: #d0d0d0;
}

.page-resources-u888-login-troubleshooting__faq-question:active {
  background: #eeeeee;
}

/* Question title style */
.page-resources-u888-login-troubleshooting__faq-question h3 {
  margin: 0;
  padding: 0;
  flex: 1;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
  pointer-events: none; /* Prevent h3 tag from blocking click events */
  color: var(--primary-color);
}

/* Toggle icon */
.page-resources-u888-login-troubleshooting__faq-toggle {
  font-size: 24px;
  font-weight: bold;
  line-height: 1;
  color: #666;
  transition: transform 0.3s ease, color 0.3s ease;
  flex-shrink: 0;
  margin-left: 15px;
  pointer-events: none; /* Prevent icon from blocking click events */
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
}

.page-resources-u888-login-troubleshooting__faq-item.active .page-resources-u888-login-troubleshooting__faq-toggle {
  color: var(--primary-color);
  transform: rotate(45deg); /* Change to X or rotate for visual effect */
}

.page-resources-u888-login-troubleshooting__faq-answer p {
  color: var(--text-dark);
  text-align: left;
}

.page-resources-u888-login-troubleshooting__faq-link {
  display: inline-block;
  margin-top: 10px;
  padding: 8px 15px;
  background-color: var(--secondary-color);
  color: var(--primary-color);
  text-decoration: none;
  border-radius: 5px;
  font-size: 0.9em;
  font-weight: bold;
  transition: background-color 0.3s ease;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-resources-u888-login-troubleshooting__faq-link:hover {
  background-color: #e6b800;
}

.page-resources-u888-login-troubleshooting__cta-buttons--bottom {
  margin-top: 50px;
  flex-direction: column;
  gap: 15px;
}

.page-resources-u888-login-troubleshooting__cta-buttons--bottom .page-resources-u888-login-troubleshooting__btn-primary,
.page-resources-u888-login-troubleshooting__cta-buttons--bottom .page-resources-u888-login-troubleshooting__btn-secondary {
  width: 100%;
  max-width: 400px; /* Limit width for larger screens */
  margin: 0 auto;
}

/* General image responsive style */
.page-resources-u888-login-troubleshooting img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-resources-u888-login-troubleshooting__hero-title {
    font-size: 2.5em;
  }
  .page-resources-u888-login-troubleshooting__hero-subtitle {
    font-size: 1.1em;
  }
  .page-resources-u888-login-troubleshooting__section-title {
    font-size: 1.8em;
  }
  .page-resources-u888-login-troubleshooting__grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-resources-u888-login-troubleshooting__main-wrapper {
    padding-top: 100px !important; /* Mobile specific padding-top */
  }
  .page-resources-u888-login-troubleshooting__hero-section {
    padding: 60px 0;
  }
  .page-resources-u888-login-troubleshooting__hero-title {
    font-size: 2em;
  }
  .page-resources-u888-login-troubleshooting__hero-subtitle {
    font-size: 1em;
  }
  .page-resources-u888-login-troubleshooting__cta-buttons {
    flex-direction: column;
    gap: 15px;
    padding: 0 15px;
  }
  .page-resources-u888-login-troubleshooting__btn-primary,
  .page-resources-u888-login-troubleshooting__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-resources-u888-login-troubleshooting__content-section {
    padding: 40px 0;
  }
  .page-resources-u888-login-troubleshooting__section-title {
    font-size: 1.6em;
    margin-bottom: 30px;
  }
  .page-resources-u888-login-troubleshooting__container {
    padding: 0 15px;
  }
  .page-resources-u888-login-troubleshooting__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-resources-u888-login-troubleshooting__card {
    padding: 25px;
  }
  .page-resources-u888-login-troubleshooting__card-image {
    max-width: 200px;
  }
  .page-resources-u888-login-troubleshooting__card-title {
    font-size: 1.2em;
  }
  .page-resources-u888-login-troubleshooting__list li {
    padding: 15px 20px;
    font-size: 1em;
  }
  .page-resources-u888-login-troubleshooting__contact-list li {
    font-size: 1em;
  }
  .page-resources-u888-login-troubleshooting__contact-cta {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 25px;
  }
  .page-resources-u888-login-troubleshooting__faq-question {
    padding: 15px;
    flex-wrap: wrap;
  }
  .page-resources-u888-login-troubleshooting__faq-question h3 {
    font-size: 15px;
    margin-bottom: 0;
    width: calc(100% - 40px);
  }
  .page-resources-u888-login-troubleshooting__faq-toggle {
    margin-left: 10px;
    width: 24px;
    height: 24px;
    font-size: 20px;
  }
  .page-resources-u888-login-troubleshooting__faq-answer {
    padding: 0 15px;
  }
  .page-resources-u888-login-troubleshooting__faq-item.active .page-resources-u888-login-troubleshooting__faq-answer {
    padding: 15px !important;
  }
  .page-resources-u888-login-troubleshooting__faq-link {
    width: 100% !important;
    max-width: 100% !important;
    padding: 10px 15px;
    font-size: 0.85em;
  }
  .page-resources-u888-login-troubleshooting img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  .page-resources-u888-login-troubleshooting__card-image {
    max-width: 150px !important;
  }
  .page-resources-u888-login-troubleshooting__cta-buttons--bottom .page-resources-u888-login-troubleshooting__btn-primary,
  .page-resources-u888-login-troubleshooting__cta-buttons--bottom .page-resources-u888-login-troubleshooting__btn-secondary {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
}