.page-beginner-guide-how-to-register {
  color: #333333; /* Dark text for light body background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
  padding-top: var(--header-offset, 120px); /* Fixed header offset */
  background-color: #FFFFFF; /* Explicitly set background to white as per color scheme */
}

.page-beginner-guide-how-to-register__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 60px 20px;
  background-color: #000000; /* Main color for hero background */
  color: #FFFFFF;
  position: relative;
  overflow: hidden;
}

.page-beginner-guide-how-to-register__hero-content {
  max-width: 900px;
  margin-bottom: 40px;
  z-index: 2;
}

.page-beginner-guide-how-to-register__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  font-weight: bold;
  color: #FCBC45; /* Login button color for emphasis */
  line-height: 1.2;
}

.page-beginner-guide-how-to-register__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.page-beginner-guide-how-to-register__hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.page-beginner-guide-how-to-register__button {
  display: inline-block;
  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-how-to-register__button--register {
  background-color: #FFFFFF; /* Register button color */
  color: #000000;
}

.page-beginner-guide-how-to-register__button--register:hover {
  background-color: #f0f0f0;
  transform: translateY(-2px);
}

.page-beginner-guide-how-to-register__button--login {
  background-color: #FCBC45; /* Login button color */
  color: #000000;
}

.page-beginner-guide-how-to-register__button--login:hover {
  background-color: #e0a53b;
  transform: translateY(-2px);
}

.page-beginner-guide-how-to-register__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}

.page-beginner-guide-how-to-register__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.2;
  filter: grayscale(50%); /* Allowed for visual effect, not color change */
}

.page-beginner-guide-how-to-register__section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
}

.page-beginner-guide-how-to-register__section-title {
  font-size: 2.5em;
  color: #000000;
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
}

.page-beginner-guide-how-to-register__section-intro {
  font-size: 1.1em;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px auto;
  color: #555555;
}

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

.page-beginner-guide-how-to-register__step-card {
  background-color: #f8f8f8;
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-beginner-guide-how-to-register__step-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.page-beginner-guide-how-to-register__step-icon {
  width: 100%;
  max-width: 400px;
  height: auto;
  margin-bottom: 25px;
  border-radius: 8px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.page-beginner-guide-how-to-register__step-title {
  font-size: 1.6em;
  color: #000000;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-beginner-guide-how-to-register__step-description {
  font-size: 1em;
  color: #666666;
}

.page-beginner-guide-how-to-register__cta-container {
  text-align: center;
  margin-top: 60px;
  padding: 40px;
  background-color: #000000;
  border-radius: 12px;
  color: #FFFFFF;
}

.page-beginner-guide-how-to-register__cta-text {
  font-size: 1.5em;
  margin-bottom: 25px;
  font-weight: bold;
}

.page-beginner-guide-how-to-register__button--register-bottom {
  background-color: #FCBC45;
  color: #000000;
}

.page-beginner-guide-how-to-register__button--register-bottom:hover {
  background-color: #e0a53b;
  transform: translateY(-2px);
}

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

.page-beginner-guide-how-to-register__benefit-card {
  background-color: #f8f8f8;
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.08);
}

.page-beginner-guide-how-to-register__benefit-icon {
  width: 100%;
  max-width: 300px;
  height: auto;
  margin-bottom: 25px;
  border-radius: 8px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.page-beginner-guide-how-to-register__benefit-title {
  font-size: 1.5em;
  color: #000000;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-beginner-guide-how-to-register__benefit-description {
  font-size: 0.95em;
  color: #666666;
}

.page-beginner-guide-how-to-register__faq-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.page-beginner-guide-how-to-register__faq-item {
  background-color: #f8f8f8;
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
}

.page-beginner-guide-how-to-register__faq-question {
  font-size: 1.3em;
  color: #000000;
  margin-bottom: 10px;
  font-weight: bold;
}

.page-beginner-guide-how-to-register__faq-answer {
  font-size: 1em;
  color: #555555;
}

.page-beginner-guide-how-to-register__section--cta-final {
  background-color: #000000;
  color: #FFFFFF;
  text-align: center;
  padding: 80px 20px;
  border-radius: 15px;
  margin-bottom: 60px;
}

.page-beginner-guide-how-to-register__cta-title {
  font-size: 2.8em;
  margin-bottom: 25px;
  font-weight: bold;
  color: #FCBC45;
}

.page-beginner-guide-how-to-register__cta-description {
  font-size: 1.2em;
  max-width: 900px;
  margin: 0 auto 40px auto;
  line-height: 1.8;
}

.page-beginner-guide-how-to-register__button--final-cta {
  background-color: #FCBC45;
  color: #000000;
  padding: 18px 40px;
  font-size: 1.3em;
}

.page-beginner-guide-how-to-register__button--final-cta:hover {
  background-color: #e0a53b;
  transform: translateY(-3px) scale(1.02);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-beginner-guide-how-to-register__hero-title {
    font-size: 2.8em;
  }

  .page-beginner-guide-how-to-register__section-title {
    font-size: 2.2em;
  }

  .page-beginner-guide-how-to-register__cta-title {
    font-size: 2.4em;
  }
}

@media (max-width: 768px) {
  .page-beginner-guide-how-to-register {
    padding-top: var(--header-offset, 80px); /* Adjust for mobile header offset */
  }

  .page-beginner-guide-how-to-register__hero-section {
    padding: 40px 15px;
  }

  .page-beginner-guide-how-to-register__hero-title {
    font-size: 2em;
  }

  .page-beginner-guide-how-to-register__hero-description {
    font-size: 1em;
  }

  .page-beginner-guide-how-to-register__hero-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-beginner-guide-how-to-register__button {
    width: 100%;
    max-width: 300px; /* Constrain button width on small screens */
    margin-left: auto;
    margin-right: auto;
  }

  .page-beginner-guide-how-to-register__section {
    padding: 40px 15px;
  }

  .page-beginner-guide-how-to-register__section-title {
    font-size: 1.8em;
  }

  .page-beginner-guide-how-to-register__section-intro {
    font-size: 0.95em;
  }

  .page-beginner-guide-how-to-register__step-title {
    font-size: 1.4em;
  }

  .page-beginner-guide-how-to-register__cta-text {
    font-size: 1.3em;
  }

  .page-beginner-guide-how-to-register__benefit-title {
    font-size: 1.3em;
  }

  .page-beginner-guide-how-to-register__faq-question {
    font-size: 1.1em;
  }

  .page-beginner-guide-how-to-register__section--cta-final {
    padding: 60px 15px;
  }

  .page-beginner-guide-how-to-register__cta-title {
    font-size: 2em;
  }

  .page-beginner-guide-how-to-register__cta-description {
    font-size: 1em;
  }

  .page-beginner-guide-how-to-register__button--final-cta {
    padding: 15px 30px;
    font-size: 1.1em;
  }

  /* Ensure images do not overflow on mobile */
  .page-beginner-guide-how-to-register img {
    max-width: 100%;
    height: auto;
  }

  .page-beginner-guide-how-to-register__hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .page-beginner-guide-how-to-register__step-icon,
  .page-beginner-guide-how-to-register__benefit-icon {
    max-width: 100%;
    height: auto;
  }
}