/* style/resources-fu88-common-problems-faq.css */

.page-resources-fu88-common-problems-faq {
  font-family: 'Arial', sans-serif;
  color: #E0E0E0; /* Light text for dark background */
  background-color: #1A202C; /* Main dark background */
  line-height: 1.7;
}

.page-resources-fu88-common-problems-faq-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-resources-fu88-common-problems-faq-hero-section {
  background: linear-gradient(135deg, #1A202C 0%, #3a414e 100%);
  padding: 60px 0;
  text-align: center;
  color: #FFD700;
  border-bottom: 2px solid #FFD700;
}

.page-resources-fu88-common-problems-faq-main-title {
  font-size: 2.8em;
  color: #FFD700;
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-resources-fu88-common-problems-faq-intro-text {
  font-size: 1.1em;
  margin-bottom: 30px;
  color: #E0E0E0;
}

.page-resources-fu88-common-problems-faq-content-section {
  padding: 40px 0;
}

.page-resources-fu88-common-problems-faq-accordion-item {
  background-color: #2D3748; /* Slightly lighter dark for accordion items */
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  border: 1px solid #3a414e;
}

.page-resources-fu88-common-problems-faq-accordion-header {
  font-size: 1.6em;
  color: #FFD700;
  padding: 20px;
  cursor: pointer;
  background-color: #1A202C;
  border-bottom: 1px solid #3a414e;
  position: relative;
  transition: background-color 0.3s ease;
}

.page-resources-fu88-common-problems-faq-accordion-header::after {
  content: '+';
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5em;
  transition: transform 0.3s ease;
}

.page-resources-fu88-common-problems-faq-accordion-header.active::after {
  content: '-';
  transform: translateY(-50%) rotate(0deg);
}

.page-resources-fu88-common-problems-faq-accordion-content {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-out, padding 0.5s ease-out;
}

.page-resources-fu88-common-problems-faq-accordion-content.active {
  max-height: 1000px; /* Adjust as needed */
  padding: 20px;
}

.page-resources-fu88-common-problems-faq-question {
  font-size: 1.3em;
  color: #FFD700;
  margin-top: 20px;
  margin-bottom: 15px;
  border-left: 4px solid #FFD700;
  padding-left: 10px;
}

.page-resources-fu88-common-problems-faq-accordion-content p,
.page-resources-fu88-common-problems-faq-accordion-content ul,
.page-resources-fu88-common-problems-faq-accordion-content ol {
  font-size: 1em;
  color: #E0E0E0;
  margin-bottom: 15px;
}

.page-resources-fu88-common-problems-faq-accordion-content ul,
.page-resources-fu88-common-problems-faq-accordion-content ol {
  margin-left: 20px;
}

.page-resources-fu88-common-problems-faq-accordion-content li {
  margin-bottom: 8px;
}

.page-resources-fu88-common-problems-faq-btn {
  display: inline-block;
  background-color: #FFD700;
  color: #1A202C;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.2s ease;
  margin-top: 15px;
  margin-right: 10px;
  border: none;
  cursor: pointer;
  font-size: 1em;
}

.page-resources-fu88-common-problems-faq-btn:hover {
  background-color: #e6c200; /* Slightly darker gold on hover */
  transform: translateY(-2px);
}

.page-resources-fu88-common-problems-faq-primary-btn {
  background-color: #FFD700;
  color: #1A202C;
}

.page-resources-fu88-common-problems-faq-primary-btn:hover {
  background-color: #e6c200;
}

.page-resources-fu88-common-problems-faq-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 20px auto;
  display: block;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
  border: 1px solid #FFD700;
}

.page-resources-fu88-common-problems-faq-img-medium {
  max-width: 70%;
}

.page-resources-fu88-common-problems-faq-img-large {
  max-width: 90%;
}

.page-resources-fu88-common-problems-faq-conclusion-section {
  text-align: center;
  padding: 40px 20px;
  background-color: #2D3748;
  border-top: 2px solid #FFD700;
  border-radius: 8px;
  margin-top: 30px;
}

.page-resources-fu88-common-problems-faq-conclusion-section p {
  font-size: 1.1em;
  color: #E0E0E0;
  margin-bottom: 25px;
}

.page-resources-fu88-common-problems-faq-cta-section {
  text-align: center;
  padding: 30px 0;
  background-color: #2D3748;
  border-top: 1px solid #FFD700;
  margin-top: 30px;
  border-radius: 8px;
}

.page-resources-fu88-common-problems-faq-cta-section p {
  font-size: 1.2em;
  color: #FFD700;
  margin-bottom: 20px;
}

.page-resources-fu88-common-problems-faq-cta-buttons .page-resources-fu88-common-problems-faq-btn {
  margin: 0 10px;
}

.page-resources-fu88-common-problems-faq-navigation {
  margin-top: 40px;
  text-align: center;
}

.page-resources-fu88-common-problems-faq-back-link {
  display: inline-block;
  color: #FFD700;
  text-decoration: none;
  font-size: 1.1em;
  margin: 0 15px;
  padding: 10px 15px;
  border: 1px solid #FFD700;
  border-radius: 5px;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.page-resources-fu88-common-problems-faq-back-link:hover {
  background-color: #FFD700;
  color: #1A202C;
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-resources-fu88-common-problems-faq-main-title {
    font-size: 2em;
  }

  .page-resources-fu88-common-problems-faq-intro-text {
    font-size: 1em;
  }

  .page-resources-fu88-common-problems-faq-accordion-header {
    font-size: 1.3em;
  }

  .page-resources-fu88-common-problems-faq-question {
    font-size: 1.1em;
  }

  .page-resources-fu88-common-problems-faq-btn {
    padding: 10px 20px;
    font-size: 0.9em;
  }

  .page-resources-fu88-common-problems-faq-cta-buttons .page-resources-fu88-common-problems-faq-btn {
    display: block;
    margin: 10px auto;
  }
}

@media (max-width: 480px) {
  .page-resources-fu88-common-problems-faq-hero-section {
    padding: 40px 0;
  }

  .page-resources-fu88-common-problems-faq-main-title {
    font-size: 1.8em;
  }

  .page-resources-fu88-common-problems-faq-accordion-header {
    font-size: 1.1em;
    padding: 15px;
  }

  .page-resources-fu88-common-problems-faq-question {
    font-size: 1em;
  }

  .page-resources-fu88-common-problems-faq-accordion-content.active {
    padding: 15px;
  }
  
  .page-resources-fu88-common-problems-faq-back-link {
    margin: 0 5px;
    padding: 8px 10px;
    font-size: 0.9em;
  }
}