/* style/faq-account-related-questions.css */
.page-faq-account-related-questions {
  font-family: 'Arial', sans-serif;
  color: #E0E0E0; /* Light grey for general text on dark background */
  line-height: 1.6;
  background-color: #0F1D2C; /* Slightly lighter dark background than main color for contrast */
}

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

.page-faq-account-related-questions__hero {
  background: linear-gradient(135deg, #1A2E44, #0F1D2C);
  padding: 80px 0;
  text-align: center;
  color: #FFFFFF;
}

.page-faq-account-related-questions__hero-title {
  font-size: 2.8em;
  margin-bottom: 20px;
  color: #E7C200; /* Gold for main title */
  font-weight: bold;
}

.page-faq-account-related-questions__hero-description {
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto 30px auto;
}

.page-faq-account-related-questions__section {
  padding: 60px 0;
}

.page-faq-account-related-questions__section-title {
  font-size: 2.2em;
  color: #E7C200; /* Gold for section titles */
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
}

.page-faq-account-related-questions__content-wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
}

.page-faq-account-related-questions__text-content {
  flex: 1;
  min-width: 300px;
}

.page-faq-account-related-questions__text-content p {
  margin-bottom: 15px;
  color: #E0E0E0;
}

.page-faq-account-related-questions__image-wrapper {
  flex: 1;
  min-width: 300px;
  text-align: center;
}

.page-faq-account-related-questions__image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-faq-account-related-questions__image--small {
  max-width: 70%; /* Smaller for inline content */
  margin-top: 20px;
}

.page-faq-account-related-questions__accordion {
  margin-top: 30px;
}

.page-faq-account-related-questions__accordion-item {
  background-color: #1A2E44; /* Main color for accordion items */
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-faq-account-related-questions__accordion-header {
  font-size: 1.3em;
  padding: 20px 25px;
  cursor: pointer;
  background-color: #1A2E44; /* Main color for header */
  color: #E7C200; /* Gold for header text */
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.3s ease;
  border-bottom: 1px solid rgba(231, 194, 0, 0.2); /* Subtle gold border */
}

.page-faq-account-related-questions__accordion-header:hover {
  background-color: #2F405A; /* Slightly lighter dark on hover */
}

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

.page-faq-account-related-questions__accordion-header.active::after {
  content: '-';
  transform: rotate(180deg);
}

.page-faq-account-related-questions__accordion-content {
  padding: 0 25px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-out, padding 0.5s ease-out;
  background-color: #253A52; /* Slightly lighter dark for content */
  color: #E0E0E0;
}

.page-faq-account-related-questions__accordion-content.active {
  max-height: 500px; /* Adjust as needed for content height */
  padding: 20px 25px;
}

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

.page-faq-account-related-questions__btn {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  margin-top: 20px;
  cursor: pointer;
  text-align: center;
}

.page-faq-account-related-questions__btn--primary {
  background-color: #E7C200; /* Gold */
  color: #1A2E44; /* Dark blue/grey */
  border: 2px solid #E7C200;
}

.page-faq-account-related-questions__btn--primary:hover {
  background-color: #F0D75A;
  border-color: #F0D75A;
  transform: translateY(-2px);
}

.page-faq-account-related-questions__btn--secondary {
  background-color: transparent;
  color: #E7C200; /* Gold */
  border: 2px solid #E7C200;
  margin-left: 15px;
}

.page-faq-account-related-questions__btn--secondary:hover {
  background-color: #E7C200;
  color: #1A2E44;
  transform: translateY(-2px);
}

.page-faq-account-related-questions__btn--tertiary {
  background-color: #1A2E44;
  color: #E7C200;
  border: 2px solid #1A2E44;
  margin-left: 15px;
}

.page-faq-account-related-questions__btn--tertiary:hover {
  background-color: #2F405A;
  border-color: #2F405A;
  transform: translateY(-2px);
}

.page-faq-account-related-questions__cta-bottom {
  background-color: #1A2E44;
  text-align: center;
  padding: 80px 0;
  color: #FFFFFF;
}

.page-faq-account-related-questions__cta-text {
  font-size: 1.2em;
  margin-bottom: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

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

.page-faq-account-related-questions .highlight {
  color: #E7C200;
  font-weight: bold;
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-faq-account-related-questions__hero-title {
    font-size: 2em;
  }

  .page-faq-account-related-questions__section-title {
    font-size: 1.8em;
  }

  .page-faq-account-related-questions__content-wrapper {
    flex-direction: column;
  }

  .page-faq-account-related-questions__btn {
    width: 100%;
    margin-left: 0;
    margin-bottom: 15px;
  }
  .page-faq-account-related-questions__cta-buttons .page-faq-account-related-questions__btn {
    margin-left: 0;
  }
}

@media (max-width: 480px) {
  .page-faq-account-related-questions__hero-title {
    font-size: 1.6em;
  }

  .page-faq-account-related-questions__section-title {
    font-size: 1.5em;
  }

  .page-faq-account-related-questions__accordion-header {
    font-size: 1.1em;
    padding: 15px 20px;
  }

  .page-faq-account-related-questions__accordion-content {
    padding: 15px 20px;
  }
}