.page-faq-account-issues {
  font-family: 'Arial', sans-serif;
  color: #333;
  line-height: 1.6;
}

.page-faq-account-issues__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-faq-account-issues__hero-section {
  background: linear-gradient(135deg, #007bff, #28a745);
  color: #fff;
  padding: 100px 0;
  text-align: center;
}

.page-faq-account-issues__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  font-weight: bold;
  color: #fff;
}

.page-faq-account-issues__hero-subtitle {
  font-size: 1.3em;
  margin-bottom: 40px;
  opacity: 0.9;
}

.page-faq-account-issues__hero-cta {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.page-faq-account-issues__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.2s ease;
  font-size: 1.1em;
  text-align: center;
  white-space: nowrap;
}

.page-faq-account-issues__btn--primary {
  background-color: #0056b3; /* Darker shade for contrast */
  color: #fff;
  border: 2px solid #0056b3;
}

.page-faq-account-issues__btn--primary:hover {
  background-color: #004085;
  transform: translateY(-2px);
}

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

.page-faq-account-issues__btn--secondary:hover {
  background-color: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

.page-faq-account-issues__btn--accent {
  background-color: #1c7530; /* Darker shade for contrast */
  color: #fff;
  border: 2px solid #1c7530;
}

.page-faq-account-issues__btn--accent:hover {
  background-color: #135221;
  transform: translateY(-2px);
}

.page-faq-account-issues__content-section {
  padding: 60px 0;
}

.page-faq-account-issues__bg--light {
  background-color: #f9f9f9;
}

.page-faq-account-issues__bg--dark {
  background-color: #007bff;
  color: #fff;
}

.page-faq-account-issues__section-title {
  font-size: 2.5em;
  color: #007bff;
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
}

.page-faq-account-issues__bg--dark .page-faq-account-issues__section-title {
  color: #fff;
}

.page-faq-account-issues__sub-section-title {
  font-size: 1.8em;
  color: #0056b3; /* Darker blue for good contrast */
  margin-top: 35px;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-faq-account-issues__text {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #444;
}

.page-faq-account-issues__bg--dark .page-faq-account-issues__text {
  color: #e0e0e0;
}

.page-faq-account-issues__text strong {
  color: #007bff;
}

.page-faq-account-issues__text a {
  color: #007bff;
  text-decoration: underline;
}

.page-faq-account-issues__text a:hover {
  color: #0056b3;
}

.page-faq-account-issues__image {
  width: 100%;
  height: auto;
  border-radius: 10px;
  margin: 30px 0;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-faq-account-issues__call-to-action {
  padding: 80px 0;
  text-align: center;
}

.page-faq-account-issues__cta-title {
  font-size: 2.8em;
  color: #fff;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-faq-account-issues__cta-text {
  font-size: 1.2em;
  color: #e0e0e0;
  margin-bottom: 40px;
}

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

/* Responsive Design */
@media (max-width: 992px) {
  .page-faq-account-issues__hero-title {
    font-size: 2.8em;
  }
  .page-faq-account-issues__section-title {
    font-size: 2.2em;
  }
  .page-faq-account-issues__sub-section-title {
    font-size: 1.6em;
  }
  .page-faq-account-issues__cta-title {
    font-size: 2.4em;
  }
}

@media (max-width: 768px) {
  .page-faq-account-issues__hero-section {
    padding: 80px 0;
  }
  .page-faq-account-issues__hero-title {
    font-size: 2.4em;
  }
  .page-faq-account-issues__hero-subtitle {
    font-size: 1.1em;
  }
  .page-faq-account-issues__content-section {
    padding: 40px 0;
  }
  .page-faq-account-issues__section-title {
    font-size: 2em;
  }
  .page-faq-account-issues__sub-section-title {
    font-size: 1.4em;
  }
  .page-faq-account-issues__text {
    font-size: 1em;
  }
  .page-faq-account-issues__cta-title {
    font-size: 2em;
  }
  .page-faq-account-issues__cta-text {
    font-size: 1.1em;
  }
  .page-faq-account-issues__hero-cta, .page-faq-account-issues__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-faq-account-issues__btn {
    width: 80%;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .page-faq-account-issues__hero-section {
    padding: 60px 0;
  }
  .page-faq-account-issues__hero-title {
    font-size: 2em;
  }
  .page-faq-account-issues__section-title {
    font-size: 1.8em;
  }
  .page-faq-account-issues__sub-section-title {
    font-size: 1.2em;
  }
  .page-faq-account-issues__cta-title {
    font-size: 1.8em;
  }
  .page-faq-account-issues__btn {
    width: 90%;
  }
}