.page-new-user-guide {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Body background is dark #0a0a0a, so text must be light */
  background-color: #0a0a0a; /* Ensure consistency with shared.css body background */
}

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

/* Hero Section */
.page-new-user-guide__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 20px 40px;
  padding-top: var(--header-offset, 120px); /* Ensure space for fixed header */
  min-height: 500px;
  overflow: hidden;
  color: #ffffff;
  background-color: #26A9E0; /* Primary color as background for hero */
}

.page-new-user-guide__hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.page-new-user-guide__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #ffffff;
  line-height: 1.2;
}

.page-new-user-guide__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #f0f0f0;
}

.page-new-user-guide__hero-cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.page-new-user-guide__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0.2;
  overflow: hidden;
}

.page-new-user-guide__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.7); /* Only for dimming, not color change */
}

/* Video Section */
.page-new-user-guide__video-section {
  position: relative;
  padding: 60px 0;
  background-color: #0a0a0a;
  color: #ffffff;
  text-align: center;
}

.page-new-user-guide__video-wrapper {
  position: relative;
  width: 100%;
  max-width: 800px;
  margin: 30px auto 0;
  background-color: #000;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-new-user-guide__video {
  width: 100%;
  height: auto;
  display: block;
  cursor: pointer;
}

.page-new-user-guide__video-overlay-link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
  cursor: pointer;
}

/* Content Area */
.page-new-user-guide__content-area {
  padding: 60px 0;
  background-color: #0a0a0a;
  color: #ffffff;
}

.page-new-user-guide__section-title {
  font-size: 2.5em;
  color: #26A9E0;
  text-align: center;
  margin-bottom: 20px;
}

.page-new-user-guide__section-description {
  font-size: 1.1em;
  text-align: center;
  margin-bottom: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  color: #f0f0f0;
}

.page-new-user-guide__sub-section-title {
  font-size: 1.8em;
  color: #26A9E0;
  margin-top: 40px;
  margin-bottom: 20px;
  border-bottom: 1px solid rgba(38, 169, 224, 0.3);
  padding-bottom: 10px;
}

.page-new-user-guide__text-block {
  margin-bottom: 15px;
  color: #f0f0f0;
}

.page-new-user-guide__text-link {
  color: #26A9E0;
  text-decoration: none;
}

.page-new-user-guide__text-link:hover {
  text-decoration: underline;
}

.page-new-user-guide__list {
  list-style-type: disc;
  margin-left: 20px;
  margin-bottom: 20px;
  color: #f0f0f0;
}

.page-new-user-guide__list li {
  margin-bottom: 10px;
}

.page-new-user-guide__list-ordered {
  list-style-type: decimal;
  margin-left: 20px;
  margin-bottom: 20px;
  color: #f0f0f0;
}

.page-new-user-guide__list-ordered li {
  margin-bottom: 10px;
}