.page-resources-faq-newbie-guide {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Body background is dark, so text should be light */
  background-color: transparent; /* Inherit from shared.css body */
}

.page-resources-faq-newbie-guide__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-resources-faq-newbie-guide__hero-section {
  position: relative;
  padding: 100px 0;
  text-align: center;
  background-color: #0A2342; /* Main brand color for hero */
  color: #ffffff;
  padding-top: var(--header-offset, 120px); /* Ensure content is below header */
}

.page-resources-faq-newbie-guide__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #FFD700; /* Accent color for title */
  line-height: 1.2;
}

.page-resources-faq-newbie-guide__hero-description {
  font-size: 1.2em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-resources-faq-newbie-guide__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.page-resources-faq-newbie-guide__btn-primary,
.page-resources-faq-newbie-guide__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  white-space: normal;
  word-wrap: break-word;
  box-sizing: border-box;
}

.page-resources-faq-newbie-guide__btn-primary {
  background-color: #FFD700; /* Accent color */
  color: #0A2342; /* Dark text for contrast */
  border: 2px solid #FFD700;
}

.page-resources-faq-newbie-guide__btn-primary:hover {
  background-color: #e6c200;
  border-color: #e6c200;
}

.page-resources-faq-newbie-guide__btn-secondary {
  background-color: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
}

.page-resources-faq-newbie-guide__btn-secondary:hover {
  background-color: #FFD700;
  color: #0A2342;
}

.page-resources-faq-newbie-guide__content-section {
  padding: 60px 0;
  background-color: #0d0d0d; /* Slightly lighter dark background for content */
  color: #ffffff;
}

.page-resources-faq-newbie-guide__section-title {
  font-size: 2.5em;
  color: #FFD700; /* Accent color for main section titles */
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

.page-resources-faq-newbie-guide__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #0A2342;
  border-radius: 2px;
}

.page-resources-faq-newbie-guide__sub-title {
  font-size: 1.8em;
  color: #ffffff;
  margin-top: 40px;
  margin-bottom: 20px;
  border-left: 5px solid #FFD700;
  padding-left: 15px;
}

.page-resources-faq-newbie-guide__text-block {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #f0f0f0;
}

.page-resources-faq-newbie-guide__image {
  width: 100%;
  height: auto;
  border-radius: 10px;
  margin: 30px 0;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  display: block;
  object-fit: cover;
}

.page-resources-faq-newbie-guide__list {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.page-resources-faq-newbie-guide__list-item {
  background-color: rgba(255, 255, 255, 0.05);
  margin-bottom: 10px;
  padding: 15px 20px;
  border-radius: 8px;
  border-left: 4px solid #FFD700;
  color: #f0f0f0;
  font-size: 1.1em;
}

.page-resources-faq-newbie-guide__list-item strong {
  color: #FFD700;
}

.page-resources-faq-newbie-guide__faq-list {
  margin-top: 30px;
}

.page-resources-faq-newbie-guide__faq-item {
  background-color: rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-resources-faq-newbie-guide__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  background-color: #0A2342; /* Main brand color */
  color: #ffffff;
  font-weight: bold;
  font-size: 1.2em;
  transition: background-color 0.3s ease;
}

.page-resources-faq-newbie-guide__faq-question:hover {
  background-color: #1A3656;
}

.page-resources-faq-newbie-guide__faq-title {
  margin: 0;
  color: #FFD700; /* Accent color for FAQ question title */
  font-size: 1em; /* Adjust to fit parent font size */
}

.page-resources-faq-newbie-guide__faq-toggle {
  font-size: 1.5em;
  font-weight: normal;
  transition: transform 0.3s ease;
  color: #FFD700;
}

.page-resources-faq-newbie-guide__faq-item.active .page-resources-faq-newbie-guide__faq-toggle {
  transform: rotate(45deg);
}

.page-resources-faq-newbie-guide__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 25px;
  background-color: rgba(255, 255, 255, 0.03);
  color: #f0f0f0;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.page-resources-faq-newbie-guide__faq-item.active .page-resources-faq-newbie-guide__faq-answer {
  max-height: 1000px !important; /* Use !important to ensure it overrides */
  padding: 15px 25px;
}

.page-resources-faq-newbie-guide__faq-answer p {
  margin-top: 0;
  margin-bottom: 15px;
  font-size: 1.05em;
}

.page-resources-faq-newbie-guide__cta-section {
  background-color: #0A2342;
  padding: 50px 30px;
  border-radius: 15px;
  text-align: center;
  margin-top: 60px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.page-resources-faq-newbie-guide__cta-title {
  font-size: 2.2em;
  color: #FFD700;
  margin-bottom: 20px;
}

.page-resources-faq-newbie-guide__cta-description {
  font-size: 1.1em;
  color: #f0f0f0;
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-resources-faq-newbie-guide__hero-title {
    font-size: 2.8em;
  }
  .page-resources-faq-newbie-guide__section-title {
    font-size: 2em;
  }
  .page-resources-faq-newbie-guide__sub-title {
    font-size: 1.6em;
  }
  .page-resources-faq-newbie-guide__faq-question {
    font-size: 1.1em;
  }
}

@media (max-width: 768px) {
  .page-resources-faq-newbie-guide__hero-section {
    padding: 80px 0;
    padding-top: var(--header-offset, 120px) !important; /* Ensure content is below header for mobile */
  }
  .page-resources-faq-newbie-guide__hero-title {
    font-size: 2.2em;
  }
  .page-resources-faq-newbie-guide__hero-description {
    font-size: 1em;
  }
  .page-resources-faq-newbie-guide__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-resources-faq-newbie-guide__btn-primary,
  .page-resources-faq-newbie-guide__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 20px;
  }
  .page-resources-faq-newbie-guide__content-section {
    padding: 40px 0;
  }
  .page-resources-faq-newbie-guide__container {
    padding: 0 15px;
  }
  .page-resources-faq-newbie-guide__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }
  .page-resources-faq-newbie-guide__sub-title {
    font-size: 1.4em;
    margin-top: 30px;
    margin-bottom: 15px;
  }
  .page-resources-faq-newbie-guide__text-block,
  .page-resources-faq-newbie-guide__list-item,
  .page-resources-faq-newbie-guide__faq-answer p,
  .page-resources-faq-newbie-guide__cta-description {
    font-size: 1em;
  }
  .page-resources-faq-newbie-guide__image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-resources-faq-newbie-guide__faq-question {
    padding: 15px 20px;
    font-size: 1em;
  }
  .page-resources-faq-newbie-guide__faq-title {
    font-size: 1em;
  }
  .page-resources-faq-newbie-guide__faq-answer {
    padding: 0 20px;
  }
  .page-resources-faq-newbie-guide__faq-item.active .page-resources-faq-newbie-guide__faq-answer {
    padding: 15px 20px;
  }
  .page-resources-faq-newbie-guide__cta-section {
    padding: 40px 20px;
    margin-top: 40px;
  }
  .page-resources-faq-newbie-guide__cta-title {
    font-size: 1.8em;
  }
  /* Ensure no horizontal scroll */
  .page-resources-faq-newbie-guide__container,
  .page-resources-faq-newbie-guide__hero-section,
  .page-resources-faq-newbie-guide__content-section,
  .page-resources-faq-newbie-guide__cta-section {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow-x: hidden !important;
  }
}