/* style/beginner-guide-faq.css */
.page-beginner-guide-faq {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #F0F0F0; /* Light text on dark background */
  background-color: #1A202C;
}

.page-beginner-guide-faq__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-beginner-guide-faq__hero {
  background: linear-gradient(135deg, #1A202C 0%, #333C4A 100%); /* Dark gradient for hero */
  padding: 80px 0;
  text-align: center;
  border-bottom: 2px solid #FFD700;
}

.page-beginner-guide-faq__hero-title {
  font-size: 3.2em;
  color: #FFD700; /* Gold for main title */
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.2;
}

.page-beginner-guide-faq__hero-subtitle {
  font-size: 1.4em;
  color: #E0E0E0;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-beginner-guide-faq__hero-cta,
.page-beginner-guide-faq__cta-button {
  display: inline-block;
  background-color: #FFD700; /* Gold button */
  color: #1A202C; /* Dark text on gold button */
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-beginner-guide-faq__hero-cta:hover,
.page-beginner-guide-faq__cta-button:hover {
  background-color: #E0B500; /* Darker gold on hover */
  transform: translateY(-2px);
}

.page-beginner-guide-faq__faq-section {
  padding: 60px 0;
}

.page-beginner-guide-faq__section-title {
  font-size: 2.5em;
  color: #FFD700;
  text-align: center;
  margin-bottom: 50px;
  position: relative;
}

.page-beginner-guide-faq__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -10px;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #FFD700;
  border-radius: 2px;
}

.page-beginner-guide-faq__faq-list {
  display: grid;
  gap: 30px;
}

.page-beginner-guide-faq__faq-item {
  background-color: #2A313C; /* Slightly lighter dark background for items */
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 215, 0, 0.2);
}

.page-beginner-guide-faq__faq-question {
  font-size: 1.6em;
  color: #FFD700; /* Gold for questions */
  padding: 25px 30px;
  margin: 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #333C4A; /* Darker background for question header */
  transition: background-color 0.3s ease;
}

.page-beginner-guide-faq__faq-question:hover {
  background-color: #404A5B;
}

.page-beginner-guide-faq__faq-question::after {
  content: '+';
  font-size: 1.2em;
  font-weight: bold;
  transition: transform 0.3s ease;
}

.page-beginner-guide-faq__faq-item.active .page-beginner-guide-faq__faq-question::after {
  content: '-';
  transform: rotate(180deg);
}

.page-beginner-guide-faq__faq-answer {
  padding: 0 30px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-out, padding 0.5s ease-out;
}

.page-beginner-guide-faq__faq-item.active .page-beginner-guide-faq__faq-answer {
  max-height: 1000px; /* Adjust as needed for content */
  padding: 20px 30px 30px;
}

.page-beginner-guide-faq__faq-answer p {
  margin-bottom: 15px;
  color: #E0E0E0;
  font-size: 1.1em;
}

.page-beginner-guide-faq__faq-answer ol,
.page-beginner-guide-faq__faq-answer ul {
  margin-left: 25px;
  margin-bottom: 15px;
  color: #E0E0E0;
  font-size: 1.1em;
}

.page-beginner-guide-faq__faq-answer li {
  margin-bottom: 8px;
}

.page-beginner-guide-faq__image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 20px 0;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-beginner-guide-faq__inline-link {
  color: #4CAF50; /* Green for subtle links */
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-beginner-guide-faq__inline-link:hover {
  color: #66BB6A;
  text-decoration: underline;
}

.page-beginner-guide-faq__cta-bottom {
  background-color: #FFD700; /* Gold background for bottom CTA */
  padding: 60px 0;
  text-align: center;
  color: #1A202C; /* Dark text on gold background */
}

.page-beginner-guide-faq__cta-title {
  font-size: 2.8em;
  margin-bottom: 20px;
  font-weight: bold;
  color: #1A202C;
}

.page-beginner-guide-faq__cta-text {
  font-size: 1.3em;
  margin-bottom: 40px;
  color: #333C4A;
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-beginner-guide-faq__hero-title {
    font-size: 2.5em;
  }

  .page-beginner-guide-faq__hero-subtitle {
    font-size: 1.2em;
  }

  .page-beginner-guide-faq__section-title {
    font-size: 2em;
  }

  .page-beginner-guide-faq__faq-question {
    font-size: 1.4em;
    padding: 20px 25px;
  }

  .page-beginner-guide-faq__faq-answer {
    padding: 0 25px;
  }

  .page-beginner-guide-faq__faq-item.active .page-beginner-guide-faq__faq-answer {
    padding: 15px 25px 25px;
  }

  .page-beginner-guide-faq__cta-title {
    font-size: 2.2em;
  }

  .page-beginner-guide-faq__cta-text {
    font-size: 1.1em;
  }

  .page-beginner-guide-faq__hero-cta,
  .page-beginner-guide-faq__cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }
}

@media (max-width: 480px) {
  .page-beginner-guide-faq__hero {
    padding: 60px 0;
  }

  .page-beginner-guide-faq__hero-title {
    font-size: 2em;
  }

  .page-beginner-guide-faq__hero-subtitle {
    font-size: 1em;
  }

  .page-beginner-guide-faq__section-title {
    font-size: 1.8em;
  }

  .page-beginner-guide-faq__faq-question {
    font-size: 1.2em;
    padding: 15px 20px;
  }

  .page-beginner-guide-faq__faq-answer p,
  .page-beginner-guide-faq__faq-answer ol,
  .page-beginner-guide-faq__faq-answer ul {
    font-size: 0.95em;
  }

  .page-beginner-guide-faq__faq-item.active .page-beginner-guide-faq__faq-answer {
    padding: 10px 20px 20px;
  }

  .page-beginner-guide-faq__cta-title {
    font-size: 1.8em;
  }

  .page-beginner-guide-faq__cta-text {
    font-size: 1em;
  }

  .page-beginner-guide-faq__hero-cta,
  .page-beginner-guide-faq__cta-button {
    padding: 10px 20px;
    font-size: 0.9em;
  }
}