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

.page-faq-account-issues__hero {
  background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
  color: #fff;
  padding: 80px 20px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 300px;
}

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

.page-faq-account-issues__title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #ffc107;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-faq-account-issues__subtitle {
  font-size: 1.2em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #e0e0e0;
}

.page-faq-account-issues__btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 5px;
  font-size: 1em;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  text-align: center;
}

.page-faq-account-issues__btn--primary {
  background-color: #ffc107;
  color: #007bff;
  border: 2px solid #ffc107;
}

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

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

.page-faq-account-issues__btn--secondary:hover {
  background-color: #0056b3;
  border-color: #0056b3;
  transform: translateY(-2px);
}

.page-faq-account-issues__section {
  padding: 60px 0;
  background-color: #f9f9f9;
  border-bottom: 1px solid #eee;
}

.page-faq-account-issues__section:nth-of-type(even) {
  background-color: #fff;
}

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

.page-faq-account-issues__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -15px;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #ffc107;
  border-radius: 2px;
}

.page-faq-account-issues__accordion-item {
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.page-faq-account-issues__accordion-header {
  padding: 20px 25px;
  font-size: 1.3em;
  color: #007bff;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #eaf5ff;
  border-bottom: 1px solid #d0e8ff;
  margin: 0;
  transition: background-color 0.3s ease;
}

.page-faq-account-issues__accordion-header:hover {
  background-color: #d0e8ff;
}

.page-faq-account-issues__accordion-header.active {
  background-color: #007bff;
  color: #fff;
}

.page-faq-account-issues__accordion-header.active:hover {
  background-color: #0056b3;
}

.page-faq-account-issues__accordion-header::after {
  content: '+';
  font-size: 1.5em;
  transition: transform 0.3s ease;
}

.page-faq-account-issues__accordion-header.active::after {
  content: '-';
  transform: rotate(0deg);
}

.page-faq-account-issues__accordion-content {
  padding: 20px 25px;
  font-size: 1.1em;
  color: #555;
  background-color: #fff;
  display: none;
  border-top: 1px solid #eee;
}

.page-faq-account-issues__accordion-content p {
  margin-bottom: 15px;
}

.page-faq-account-issues__accordion-content ul,
.page-faq-account-issues__accordion-content ol {
  margin-left: 25px;
  margin-bottom: 15px;
}

.page-faq-account-issues__accordion-content li {
  margin-bottom: 8px;
}

.page-faq-account-issues__accordion-content .page-faq-account-issues__btn {
  margin-top: 20px;
}

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

.page-faq-account-issues__image--centered {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.page-faq-account-issues__cta {
  background: linear-gradient(45deg, #0056b3 0%, #007bff 100%);
  color: #fff;
  padding: 80px 20px;
  text-align: center;
}

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

.page-faq-account-issues__cta-description {
  font-size: 1.2em;
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  color: #e0e0e0;
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-faq-account-issues__title {
    font-size: 2.5em;
  }
  .page-faq-account-issues__subtitle,
  .page-faq-account-issues__cta-description {
    font-size: 1em;
  }
  .page-faq-account-issues__section-title {
    font-size: 2em;
  }
  .page-faq-account-issues__accordion-header {
    font-size: 1.1em;
    padding: 15px 20px;
  }
  .page-faq-account-issues__accordion-content {
    font-size: 0.95em;
    padding: 15px 20px;
  }
  .page-faq-account-issues__cta-title {
    font-size: 2.2em;
  }
}

@media (max-width: 480px) {
  .page-faq-account-issues__title {
    font-size: 2em;
  }
  .page-faq-account-issues__btn {
    padding: 10px 20px;
    font-size: 0.9em;
  }
  .page-faq-account-issues__section-title {
    font-size: 1.8em;
  }
  .page-faq-account-issues__accordion-header {
    font-size: 1em;
    padding: 12px 15px;
  }
  .page-faq-account-issues__accordion-content {
    padding: 12px 15px;
  }
  .page-faq-account-issues__cta-title {
    font-size: 1.8em;
  }
}