/* style/blog-88i-login-troubleshooting.css */
:root {
  --primary-color: #11A84E;
  --secondary-color: #22C768;
  --card-bg-color: #11271B;
  --background-color-page: #08160F;
  --text-main-color: #F2FFF6;
  --text-secondary-color: #A7D9B8;
  --border-color: #2E7A4E;
  --glow-color: #57E38D;
  --gold-color: #F2C14E;
  --divider-color: #1E3A2A;
  --deep-green-color: #0A4B2C;
  --button-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
}

.page-blog-88i-login-troubleshooting {
  background-color: var(--background-color-page);
  color: var(--text-main-color);
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

.page-blog-88i-login-troubleshooting__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 60px 20px;
  padding-top: 10px; /* Small top padding as body handles header offset */
  background-color: var(--deep-green-color);
  text-align: center;
  overflow: hidden;
  box-sizing: border-box;
}

.page-blog-88i-login-troubleshooting__hero-image-wrapper {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  margin-bottom: 20px;
}

.page-blog-88i-login-troubleshooting__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 10px;
}

.page-blog-88i-login-troubleshooting__hero-content {
  max-width: 900px;
  margin: 0 auto;
  z-index: 1;
}

.page-blog-88i-login-troubleshooting__main-title {
  font-size: clamp(2em, 3.5vw, 3.5em);
  color: var(--gold-color);
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.2;
  text-shadow: 0 0 10px rgba(242, 193, 78, 0.5);
}

.page-blog-88i-login-troubleshooting__description {
  font-size: 1.1em;
  color: var(--text-secondary-color);
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-blog-88i-login-troubleshooting__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

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

.page-blog-88i-login-troubleshooting__btn-primary {
  background: var(--button-gradient);
  color: var(--text-main-color);
  border: 2px solid var(--glow-color);
}

.page-blog-88i-login-troubleshooting__btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  opacity: 0.9;
}

.page-blog-88i-login-troubleshooting__btn-secondary {
  background-color: transparent;
  color: var(--glow-color);
  border: 2px solid var(--glow-color);
}

.page-blog-88i-login-troubleshooting__btn-secondary:hover {
  background-color: var(--glow-color);
  color: var(--background-color-page);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-blog-88i-login-troubleshooting__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  background-color: var(--background-color-page);
  color: var(--text-main-color);
}

.page-blog-88i-login-troubleshooting__section-title {
  font-size: 2.2em;
  color: var(--primary-color);
  margin-top: 40px;
  margin-bottom: 20px;
  text-align: center;
  border-bottom: 2px solid var(--divider-color);
  padding-bottom: 10px;
}

.page-blog-88i-login-troubleshooting__sub-title {
  font-size: 1.6em;
  color: var(--glow-color);
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-blog-88i-login-troubleshooting__text-block {
  font-size: 1.05em;
  line-height: 1.7;
  margin-bottom: 20px;
  color: var(--text-main-color);
}

.page-blog-88i-login-troubleshooting__content-image {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 30px auto;
  border-radius: 8px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.page-blog-88i-login-troubleshooting__faq-list {
  margin-top: 40px;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  overflow: hidden;
  background-color: var(--card-bg-color);
}

.page-blog-88i-login-troubleshooting__faq-item {
  border-bottom: 1px solid var(--divider-color);
}

.page-blog-88i-login-troubleshooting__faq-item:last-child {
  border-bottom: none;
}

.page-blog-88i-login-troubleshooting__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  font-size: 1.2em;
  font-weight: bold;
  color: var(--text-main-color);
  cursor: pointer;
  background-color: var(--card-bg-color);
  transition: background-color 0.3s ease;
}

.page-blog-88i-login-troubleshooting__faq-question:hover {
  background-color: rgba(17, 40, 27, 0.8);
}

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

.page-blog-88i-login-troubleshooting__faq-toggle {
  font-size: 1.5em;
  color: var(--glow-color);
  margin-left: 15px;
  line-height: 1;
}

.page-blog-88i-login-troubleshooting__faq-item[open] > .page-blog-88i-login-troubleshooting__faq-question .page-blog-88i-login-troubleshooting__faq-toggle {
  content: '−';
}

.page-blog-88i-login-troubleshooting__faq-answer {
  padding: 0 20px 20px 20px;
  font-size: 1.05em;
  color: var(--text-secondary-color);
  line-height: 1.6;
}

.page-blog-88i-login-troubleshooting__faq-answer p {
  margin-bottom: 0;
}

.page-blog-88i-login-troubleshooting__cta-section {
  background-color: var(--card-bg-color);
  padding: 40px;
  border-radius: 10px;
  text-align: center;
  margin-top: 50px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
  border: 1px solid var(--border-color);
}

.page-blog-88i-login-troubleshooting__cta-title {
  font-size: 2em;
  color: var(--gold-color);
  margin-bottom: 15px;
}

.page-blog-88i-login-troubleshooting__cta-description {
  font-size: 1.1em;
  color: var(--text-secondary-color);
  margin-bottom: 30px;
}

/* Responsive styles */
@media (max-width: 768px) {
  .page-blog-88i-login-troubleshooting__hero-section {
    padding: 30px 15px;
    padding-top: 10px !important;
  }

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

  .page-blog-88i-login-troubleshooting__description {
    font-size: 1em;
  }

  .page-blog-88i-login-troubleshooting__cta-buttons {
    flex-direction: column;
    gap: 15px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    padding: 0 15px;
  }

  .page-blog-88i-login-troubleshooting__btn-primary,
  .page-blog-88i-login-troubleshooting__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 20px;
    font-size: 1em;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-blog-88i-login-troubleshooting__content-area,
  .page-blog-88i-login-troubleshooting__section,
  .page-blog-88i-login-troubleshooting__faq-list,
  .page-blog-88i-login-troubleshooting__cta-section {
    padding: 20px 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .page-blog-88i-login-troubleshooting__section-title {
    font-size: 1.8em;
  }

  .page-blog-88i-login-troubleshooting__sub-title {
    font-size: 1.4em;
  }

  .page-blog-88i-login-troubleshooting__text-block,
  .page-blog-88i-login-troubleshooting__faq-answer p {
    font-size: 15px;
  }

  .page-blog-88i-login-troubleshooting__faq-question {
    font-size: 1.1em;
    padding: 15px;
  }

  .page-blog-88i-login-troubleshooting__cta-title {
    font-size: 1.8em;
  }

  .page-blog-88i-login-troubleshooting__cta-description {
    font-size: 1em;
  }

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

/* Ensure contrast for all text elements */
.page-blog-88i-login-troubleshooting p,
.page-blog-88i-login-troubleshooting li,
.page-blog-88i-login-troubleshooting a,
.page-blog-88i-login-troubleshooting h1,
.page-blog-88i-login-troubleshooting h2,
.page-blog-88i-login-troubleshooting h3,
.page-blog-88i-login-troubleshooting h4,
.page-blog-88i-login-troubleshooting h5,
.page-blog-88i-login-troubleshooting h6 {
  color: var(--text-main-color);
}

.page-blog-88i-login-troubleshooting__description,
.page-blog-88i-login-troubleshooting__text-block,
.page-blog-88i-login-troubleshooting__faq-answer p,
.page-blog-88i-login-troubleshooting__cta-description {
  color: var(--text-secondary-color);
}

.page-blog-88i-login-troubleshooting__main-title,
.page-blog-88i-login-troubleshooting__cta-title {
  color: var(--gold-color);
}

.page-blog-88i-login-troubleshooting__section-title {
  color: var(--primary-color);
}

.page-blog-88i-login-troubleshooting__sub-title,
.page-blog-88i-login-troubleshooting__faq-toggle,
.page-blog-88i-login-troubleshooting__btn-secondary {
  color: var(--glow-color);
}

.page-blog-88i-login-troubleshooting__btn-primary {
  color: var(--text-main-color);
}