/* style/blog-qq484-login-troubleshooting.css */

.page-blog-qq484-login-troubleshooting {
  color: #F2FFF6; /* Text Main */
  background-color: #08160F; /* Background */
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
}

.page-blog-qq484-login-troubleshooting__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0;
  padding-top: 10px; /* Small top padding, body handles --header-offset */
  overflow: hidden;
}

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

.page-blog-qq484-login-troubleshooting__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 40px 20px;
  max-width: 900px;
  margin-top: -100px; /* Adjust to overlap image slightly for design, without covering text */
  background: linear-gradient(180deg, rgba(8, 22, 15, 0.8) 0%, #08160F 100%);
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-blog-qq484-login-troubleshooting__main-title {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  color: #F2C14E; /* Gold */
  font-weight: 700;
  margin-bottom: 15px;
  line-height: 1.2;
  letter-spacing: 1px;
}

.page-blog-qq484-login-troubleshooting__hero-description {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.page-blog-qq484-login-troubleshooting__cta-button {
  display: inline-block;
  padding: 15px 30px;
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button */
  color: #F2FFF6; /* Text Main */
  text-decoration: none;
  border-radius: 8px;
  font-weight: 700;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  max-width: 100%; /* For responsiveness */
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-blog-qq484-login-troubleshooting__cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
  opacity: 0.9;
}

.page-blog-qq484-login-troubleshooting__content-area {
  max-width: 1200px;
  margin: 40px auto;
  padding: 20px;
  background-color: #08160F; /* Background */
  border-radius: 10px;
}

.page-blog-qq484-login-troubleshooting__text-block {
  margin-bottom: 40px;
  padding: 20px;
  background-color: #11271B; /* Card BG */
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  border: 1px solid #2E7A4E; /* Border */
}

.page-blog-qq484-login-troubleshooting__section-title {
  font-size: 2.2rem;
  color: #F2C14E; /* Gold */
  font-weight: 700;
  margin-bottom: 25px;
  border-bottom: 2px solid #13994A; /* Primary color variant */
  padding-bottom: 10px;
}

.page-blog-qq484-login-troubleshooting__sub-title {
  font-size: 1.8rem;
  color: #22C768; /* Auxiliary */
  font-weight: 600;
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-blog-qq484-login-troubleshooting p {
  font-size: 1.05rem;
  color: #F2FFF6; /* Text Main */
  margin-bottom: 15px;
}

.page-blog-qq484-login-troubleshooting__list {
  list-style: disc;
  margin-left: 25px;
  margin-bottom: 20px;
  color: #F2FFF6; /* Text Main */
}

.page-blog-qq484-login-troubleshooting__list li {
  margin-bottom: 10px;
  font-size: 1.05rem;
}

.page-blog-qq484-login-troubleshooting__list ul {
  list-style: circle;
  margin-left: 20px;
  margin-top: 10px;
}

.page-blog-qq484-login-troubleshooting__image {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 25px auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  border: 1px solid #2E7A4E; /* Border */
}

.page-blog-qq484-login-troubleshooting__cta-button--contact,
.page-blog-qq484-login-troubleshooting__cta-button--security,
.page-blog-qq484-login-troubleshooting__cta-button--final {
  margin-top: 20px;
  display: block;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

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

.page-blog-qq484-login-troubleshooting__faq-item {
  background-color: #0A4B2C; /* Deep Green */
  border: 1px solid #2E7A4E; /* Border */
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-blog-qq484-login-troubleshooting__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  font-size: 1.15rem;
  font-weight: 600;
  color: #F2FFF6; /* Text Main */
  cursor: pointer;
  background-color: #11A84E; /* Primary */
  transition: background-color 0.3s ease;
}

.page-blog-qq484-login-troubleshooting__faq-question:hover {
  background-color: #22C768; /* Auxiliary */
}

.page-blog-qq484-login-troubleshooting__faq-toggle {
  font-size: 1.5rem;
  line-height: 1;
  transition: transform 0.3s ease;
}

.page-blog-qq484-login-troubleshooting__faq-item[open] .page-blog-qq484-login-troubleshooting__faq-toggle {
  transform: rotate(45deg);
}

.page-blog-qq484-login-troubleshooting__faq-item summary {
  list-style: none;
}

.page-blog-qq484-login-troubleshooting__faq-item summary::-webkit-details-marker {
  display: none;
}

.page-blog-qq484-login-troubleshooting__faq-answer {
  padding: 15px 20px;
  font-size: 1rem;
  color: #A7D9B8; /* Text Secondary */
  border-top: 1px solid #1E3A2A; /* Divider */
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-blog-qq484-login-troubleshooting__hero-content {
    margin-top: -80px;
    padding: 30px 15px;
  }
  .page-blog-qq484-login-troubleshooting__main-title {
    font-size: clamp(2rem, 5vw, 3rem);
  }
  .page-blog-qq484-login-troubleshooting__section-title {
    font-size: 2rem;
  }
  .page-blog-qq484-login-troubleshooting__sub-title {
    font-size: 1.6rem;
  }
}

@media (max-width: 768px) {
  .page-blog-qq484-login-troubleshooting__hero-content {
    margin-top: -60px;
    padding: 25px 15px;
  }
  .page-blog-qq484-login-troubleshooting__main-title {
    font-size: clamp(1.8rem, 6vw, 2.5rem);
  }
  .page-blog-qq484-login-troubleshooting__hero-description {
    font-size: 1rem;
  }
  .page-blog-qq484-login-troubleshooting__section-title {
    font-size: 1.8rem;
  }
  .page-blog-qq484-login-troubleshooting__sub-title {
    font-size: 1.4rem;
  }
  .page-blog-qq484-login-troubleshooting p,
  .page-blog-qq484-login-troubleshooting__list li,
  .page-blog-qq484-login-troubleshooting__faq-answer {
    font-size: 0.95rem;
  }
  .page-blog-qq484-login-troubleshooting__cta-button {
    padding: 12px 25px;
    font-size: 1rem;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }
  .page-blog-qq484-login-troubleshooting__cta-button--contact,
  .page-blog-qq484-login-troubleshooting__cta-button--security,
  .page-blog-qq484-login-troubleshooting__cta-button--final {
    margin-left: auto;
    margin-right: auto;
    width: 100%;
  }

  /* Image responsiveness */
  .page-blog-qq484-login-troubleshooting img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-blog-qq484-login-troubleshooting__text-block,
  .page-blog-qq484-login-troubleshooting__content-area {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    margin-left: 0;
    margin-right: 0;
  }

  .page-blog-qq484-login-troubleshooting__hero-section {
    padding-top: 10px !important;
  }

  .page-blog-qq484-login-troubleshooting__faq-question {
    font-size: 1rem;
    padding: 12px 15px;
  }
  .page-blog-qq484-login-troubleshooting__faq-answer {
    padding: 12px 15px;
  }
}

@media (max-width: 480px) {
  .page-blog-qq484-login-troubleshooting__hero-content {
    margin-top: -40px;
    padding: 20px 10px;
  }
  .page-blog-qq484-login-troubleshooting__main-title {
    font-size: clamp(1.5rem, 7vw, 2rem);
  }
  .page-blog-qq484-login-troubleshooting__section-title {
    font-size: 1.6rem;
  }
  .page-blog-qq484-login-troubleshooting__sub-title {
    font-size: 1.2rem;
  }
  .page-blog-qq484-login-troubleshooting p,
  .page-blog-qq484-login-troubleshooting__list li,
  .page-blog-qq484-login-troubleshooting__faq-answer {
    font-size: 0.9rem;
  }
  .page-blog-qq484-login-troubleshooting__list {
    margin-left: 15px;
  }
  .page-blog-qq484-login-troubleshooting__faq-question {
    font-size: 0.95rem;
  }
}