/* style/faq-account-issues.css */
.page-faq-account-issues {
  font-family: 'Arial', sans-serif;
  color: #ffffff; /* Default text color for dark body background */
  background-color: #121212; /* Matches body background from shared.css */
}

.page-faq-account-issues__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 10px 20px 60px; /* Small top padding, more bottom padding */
  box-sizing: border-box;
  overflow: hidden;
}

.page-faq-account-issues__hero-image-wrapper {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.page-faq-account-issues__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 8px;
}

.page-faq-account-issues__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  margin-top: 40px;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-faq-account-issues__main-title {
  font-size: clamp(2em, 4vw, 3.2em);
  font-weight: 700;
  line-height: 1.2;
  color: #26A9E0;
  margin-bottom: 20px;
  letter-spacing: -0.03em;
}

.page-faq-account-issues__subtitle {
  font-size: clamp(1em, 1.5vw, 1.2em);
  color: #f0f0f0;
  line-height: 1.6;
  margin-bottom: 30px;
}

.page-faq-account-issues__cta-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

.page-faq-account-issues__btn-primary,
.page-faq-account-issues__btn-secondary {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  white-space: normal;
  word-wrap: break-word;
  text-align: center;
  box-sizing: border-box;
}

.page-faq-account-issues__btn-primary {
  background-color: #26A9E0;
  color: #ffffff;
  border: 2px solid #26A9E0;
}

.page-faq-account-issues__btn-primary:hover {
  background-color: #1a7fb3;
  border-color: #1a7fb3;
}

.page-faq-account-issues__btn-secondary {
  background-color: transparent;
  color: #26A9E0;
  border: 2px solid #26A9E0;
}

.page-faq-account-issues__btn-secondary:hover {
  background-color: #26A9E0;
  color: #ffffff;
}

.page-faq-account-issues__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
  box-sizing: border-box;
}

.page-faq-account-issues__section-title {
  font-size: clamp(1.8em, 3vw, 2.5em);
  color: #26A9E0;
  text-align: center;
  margin-bottom: 40px;
  font-weight: 700;
}

.page-faq-account-issues__text-block {
  font-size: 1.1em;
  line-height: 1.7;
  color: #f0f0f0;
  margin-bottom: 25px;
  text-align: justify;
}

.page-faq-account-issues__faq-list {
  margin-top: 50px;
}

.page-faq-account-issues__faq-category-title {
  font-size: clamp(1.4em, 2.5vw, 2em);
  color: #FFFFFF;
  margin-top: 40px;
  margin-bottom: 25px;
  padding-bottom: 10px;
  border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

.page-faq-account-issues__faq-item {
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.page-faq-account-issues__faq-item[open] {
  background-color: rgba(255, 255, 255, 0.1);
}

.page-faq-account-issues__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  font-weight: 600;
  font-size: 1.1em;
  color: #ffffff;
  list-style: none;
}

.page-faq-account-issues__faq-question::-webkit-details-marker {
  display: none;
}

.page-faq-account-issues__faq-qtext {
  flex-grow: 1;
}

.page-faq-account-issues__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  margin-left: 20px;
  transition: transform 0.3s ease;
}

.page-faq-account-issues__faq-item[open] .page-faq-account-issues__faq-toggle {
  transform: rotate(0deg);
}

.page-faq-account-issues__faq-answer {
  padding: 0 25px 20px;
  font-size: 1em;
  line-height: 1.6;
  color: #f0f0f0;
}

.page-faq-account-issues__faq-answer p {
  margin-bottom: 10px;
}

.page-faq-account-issues__cta-section {
  background-color: #26A9E0;
  padding: 80px 20px;
  text-align: center;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  box-sizing: border-box;
}

.page-faq-account-issues__cta-content {
  max-width: 800px;
}

.page-faq-account-issues__cta-title {
  font-size: clamp(1.8em, 3.5vw, 2.8em);
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-faq-account-issues__cta-description {
  font-size: 1.1em;
  line-height: 1.6;
  margin-bottom: 30px;
}

.page-faq-account-issues__cta-image-wrapper {
  width: 100%;
  max-width: 600px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.page-faq-account-issues__cta-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* Responsive styles */
@media (max-width: 1024px) {
  .page-faq-account-issues__hero-content {
    margin-top: 30px;
  }
  .page-faq-account-issues__content-area {
    padding: 40px 20px;
  }
  .page-faq-account-issues__cta-section {
    padding: 60px 20px;
  }
}

@media (max-width: 768px) {
  .page-faq-account-issues__hero-section {
    padding: 10px 15px 40px;
  }

  .page-faq-account-issues__hero-image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  .page-faq-account-issues__hero-image-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }

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

  .page-faq-account-issues__subtitle {
    font-size: clamp(0.9em, 3.5vw, 1.1em);
  }

  .page-faq-account-issues__cta-buttons {
    flex-direction: column;
    gap: 10px;
  }

  .page-faq-account-issues__btn-primary,
  .page-faq-account-issues__btn-secondary {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding: 12px 15px;
    font-size: 1em;
  }

  .page-faq-account-issues__content-area {
    padding: 30px 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .page-faq-account-issues__section-title {
    font-size: clamp(1.6em, 6vw, 2em);
    margin-bottom: 30px;
  }

  .page-faq-account-issues__text-block {
    font-size: 0.95em;
  }

  .page-faq-account-issues__faq-category-title {
    font-size: clamp(1.2em, 5vw, 1.8em);
    margin-top: 30px;
    margin-bottom: 20px;
  }

  .page-faq-account-issues__faq-question {
    padding: 15px 20px;
    font-size: 1em;
  }

  .page-faq-account-issues__faq-answer {
    padding: 0 20px 15px;
  }

  .page-faq-account-issues__cta-section {
    padding: 40px 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .page-faq-account-issues__cta-title {
    font-size: clamp(1.6em, 6.5vw, 2.2em);
  }

  .page-faq-account-issues__cta-description {
    font-size: 1em;
  }

  .page-faq-account-issues__cta-image-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .page-faq-account-issues__cta-image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  .page-faq-account-issues img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  .page-faq-account-issues__section,
  .page-faq-account-issues__card,
  .page-faq-account-issues__container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  
  .page-faq-account-issues__video-section {
    padding-top: 10px !important; /* body đã承担 --header-offset，此处禁止 var(--header-offset) */
  }
}