.page-beginner-guide-faq {
  font-family: 'Arial', sans-serif;
  background-color: #1a1a1a; /* Dark background for premium feel */
  color: #ffffff; /* White text for high contrast */
  line-height: 1.6;
  padding: 0;
  margin: 0;
}

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

.page-beginner-guide-faq__hero {
  background: linear-gradient(135deg, #B80000, #FFD700); /* Red to Gold gradient */
  padding: 80px 20px;
  text-align: center;
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

.page-beginner-guide-faq__hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at center, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 70%);
  opacity: 0.3;
  animation: page-beginner-guide-faq__hero-glow 15s infinite alternate;
}

@keyframes page-beginner-guide-faq__hero-glow {
  0% { transform: scale(1); opacity: 0.3; }
  100% { transform: scale(1.2); opacity: 0.5; }
}

.page-beginner-guide-faq__hero-content {
  position: relative;
  z-index: 1;
}

.page-beginner-guide-faq__title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FFD700; /* Gold for main title */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  font-weight: bold;
}

.page-beginner-guide-faq__subtitle {
  font-size: 1.3em;
  max-width: 800px;
  margin: 0 auto 40px auto;
  color: #f0f0f0;
}

.page-beginner-guide-faq__cta-group {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.page-beginner-guide-faq__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  text-align: center;
}

.page-beginner-guide-faq__btn--primary {
  background-color: #B80000; /* Deep Red button */
  color: #ffffff;
  border: 2px solid #B80000;
}

.page-beginner-guide-faq__btn--primary:hover {
  background-color: #d40000;
  border-color: #d40000;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-beginner-guide-faq__btn--secondary {
  background-color: transparent;
  color: #FFD700; /* Gold text */
  border: 2px solid #FFD700;
}

.page-beginner-guide-faq__btn--secondary:hover {
  background-color: #FFD700;
  color: #1a1a1a; /* Dark text on gold hover */
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-beginner-guide-faq__faq-section {
  padding: 60px 0;
  background-color: #1a1a1a;
}

.page-beginner-guide-faq__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.4);
}

.page-beginner-guide-faq__faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-beginner-guide-faq__faq-item {
  background-color: #2a2a2a; /* Slightly lighter dark background for items */
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 215, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-beginner-guide-faq__faq-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.6);
}

.page-beginner-guide-faq__question {
  font-size: 1.6em;
  color: #B80000; /* Deep Red for questions */
  margin-bottom: 20px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  padding-right: 30px;
}

.page-beginner-guide-faq__question::after {
  content: '+';
  position: absolute;
  right: 0;
  font-size: 1.2em;
  transition: transform 0.3s ease;
}

.page-beginner-guide-faq__question.active::after {
  content: '-';
  transform: rotate(0deg);
}

.page-beginner-guide-faq__answer {
  font-size: 1.1em;
  color: #cccccc;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-out, opacity 0.5s ease-out;
  opacity: 0;
  padding-top: 0;
}

.page-beginner-guide-faq__answer.active {
  max-height: 1000px; /* Adjust as needed for content length */
  opacity: 1;
  padding-top: 20px;
}

.page-beginner-guide-faq__answer p {
  margin-bottom: 15px;
}

.page-beginner-guide-faq__img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-top: 20px;
  border: 1px solid rgba(255, 215, 0, 0.3);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.page-beginner-guide-faq__cta-group--inline {
  display: flex;
  gap: 15px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.page-beginner-guide-faq__final-cta {
  text-align: center;
  margin-top: 60px;
  padding: 40px;
  background-color: #2a2a2a;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(184, 0, 0, 0.2);
}

.page-beginner-guide-faq__final-cta p {
  font-size: 1.4em;
  color: #FFD700;
  margin-bottom: 30px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-beginner-guide-faq__title {
    font-size: 2.5em;
  }
  .page-beginner-guide-faq__subtitle {
    font-size: 1.1em;
  }
  .page-beginner-guide-faq__section-title {
    font-size: 2em;
  }
  .page-beginner-guide-faq__question {
    font-size: 1.4em;
  }
  .page-beginner-guide-faq__answer {
    font-size: 1em;
  }
  .page-beginner-guide-faq__cta-group, .page-beginner-guide-faq__cta-group--inline {
    flex-direction: column;
    align-items: center;
  }
  .page-beginner-guide-faq__btn {
    width: 80%;
  }
}

@media (max-width: 480px) {
  .page-beginner-guide-faq__title {
    font-size: 2em;
  }
  .page-beginner-guide-faq__subtitle {
    font-size: 0.9em;
  }
  .page-beginner-guide-faq__section-title {
    font-size: 1.8em;
  }
  .page-beginner-guide-faq__question {
    font-size: 1.2em;
  }
  .page-beginner-guide-faq__btn {
    width: 95%;
    padding: 12px 20px;
    font-size: 1em;
  }
}