.page-support-frequently-asked-questions-answers {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #F0F0F0; /* Light gray for general text on dark background */
  background-color: #000000; /* Main dark background */
}

.page-support-frequently-asked-questions-answers__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-support-frequently-asked-questions-answers__hero-section {
  background: linear-gradient(135deg, #000000 0%, #333333 50%, #FFD700 100%); /* Dark to gold gradient */
  padding: 80px 0;
  text-align: center;
  color: #FFFFFF;
  position: relative;
  overflow: hidden;
}

.page-support-frequently-asked-questions-answers__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FFD700; /* Gold for main title */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-support-frequently-asked-questions-answers__hero-description {
  font-size: 1.3em;
  max-width: 800px;
  margin: 0 auto 40px;
  color: #E0E0E0;
}

.page-support-frequently-asked-questions-answers__hero-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}

.page-support-frequently-asked-questions-answers__faq-section {
  padding: 60px 0;
  background-color: #1a1a1a; /* Slightly lighter dark background */
}

.page-support-frequently-asked-questions-answers__section-title {
  font-size: 2.8em;
  color: #FFD700; /* Gold for section titles */
  text-align: center;
  margin-bottom: 50px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.page-support-frequently-asked-questions-answers__accordion {
  margin-top: 30px;
}

.page-support-frequently-asked-questions-answers__accordion-item {
  background-color: #222222; /* Darker background for accordion items */
  border-radius: 8px;
  margin-bottom: 15px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  overflow: hidden;
}

.page-support-frequently-asked-questions-answers__accordion-header {
  font-size: 1.5em;
  color: #FFD700; /* Gold for FAQ questions */
  padding: 20px 25px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.3s ease, color 0.3s ease;
  border-bottom: 1px solid rgba(255, 215, 0, 0.2);
}

.page-support-frequently-asked-questions-answers__accordion-header:hover {
  background-color: #333333;
  color: #FFF;
}

.page-support-frequently-asked-questions-answers__accordion-header::after {
  content: '+';
  font-size: 1.5em;
  color: #FFD700;
  transition: transform 0.3s ease;
}

.page-support-frequently-asked-questions-answers__accordion-header.active::after {
  content: '-';
  transform: rotate(180deg);
}

.page-support-frequently-asked-questions-answers__accordion-content {
  padding: 0 25px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-out, padding 0.5s ease-out;
  background-color: #2a2a2a; /* Slightly lighter for content */
  color: #CCCCCC;
}

.page-support-frequently-asked-questions-answers__accordion-content p {
  margin-bottom: 15px;
  font-size: 1.1em;
}

.page-support-frequently-asked-questions-answers__accordion-content ul,
.page-support-frequently-asked-questions-answers__accordion-content ol {
  margin-left: 20px;
  margin-bottom: 15px;
}

.page-support-frequently-asked-questions-answers__accordion-content li {
  margin-bottom: 8px;
}

.page-support-frequently-asked-questions-answers__sub-heading {
  font-size: 1.3em;
  color: #DC143C; /* Deep red for sub-headings */
  margin-top: 20px;
  margin-bottom: 10px;
  border-left: 4px solid #FFD700;
  padding-left: 10px;
}

.page-support-frequently-asked-questions-answers__image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 20px 0;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.4);
}

.page-support-frequently-asked-answers__cta-section {
  background-color: #000000;
  padding: 60px 0;
  text-align: center;
  color: #FFFFFF;
  border-top: 1px solid rgba(255, 215, 0, 0.3);
}

.page-support-frequently-asked-questions-answers__cta-title {
  font-size: 2.5em;
  color: #FFD700;
  margin-bottom: 20px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.page-support-frequently-asked-answers__cta-description {
  font-size: 1.2em;
  max-width: 700px;
  margin: 0 auto 30px;
  color: #E0E0E0;
}

.page-support-frequently-asked-questions-answers__button {
  display: inline-block;
  background-color: #DC143C; /* Deep red for CTA button */
  color: #FFFFFF;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-size: 1.2em;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.2s ease;
  border: none;
  cursor: pointer;
}

.page-support-frequently-asked-questions-answers__button:hover {
  background-color: #FFD700; /* Gold on hover */
  color: #000000;
  transform: translateY(-3px);
}

.page-support-frequently-asked-questions-answers__inline-link {
  color: #FFD700; /* Gold for inline links */
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-support-frequently-asked-questions-answers__inline-link:hover {
  color: #DC143C; /* Deep red on hover */
  text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-support-frequently-asked-questions-answers__hero-title {
    font-size: 2.5em;
  }
  .page-support-frequently-asked-questions-answers__hero-description,
  .page-support-frequently-asked-questions-answers__cta-description {
    font-size: 1em;
  }
  .page-support-frequently-asked-questions-answers__section-title {
    font-size: 2em;
  }
  .page-support-frequently-asked-questions-answers__accordion-header {
    font-size: 1.2em;
    padding: 15px 20px;
  }
  .page-support-frequently-asked-questions-answers__accordion-content {
    padding: 0 20px;
  }
  .page-support-frequently-asked-questions-answers__sub-heading {
    font-size: 1.1em;
  }
  .page-support-frequently-asked-questions-answers__cta-title {
    font-size: 2em;
  }
  .page-support-frequently-asked-questions-answers__button {
    padding: 12px 25px;
    font-size: 1em;
  }
}

@media (max-width: 480px) {
  .page-support-frequently-asked-questions-answers__hero-section {
    padding: 60px 0;
  }
  .page-support-frequently-asked-questions-answers__hero-title {
    font-size: 2em;
  }
  .page-support-frequently-asked-questions-answers__hero-description {
    font-size: 0.9em;
  }
  .page-support-frequently-asked-questions-answers__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }
  .page-support-frequently-asked-questions-answers__accordion-header {
    font-size: 1.1em;
    padding: 12px 15px;
  }
  .page-support-frequently-asked-questions-answers__accordion-content {
    padding: 0 15px;
  }
  .page-support-frequently-asked-questions-answers__cta-title {
    font-size: 1.8em;
  }
  .page-support-frequently-asked-questions-answers__button {
    font-size: 0.9em;
    padding: 10px 20px;
  }
}