.page-newbie-guide {
  color: #333333;
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  padding-top: var(--header-offset, 120px); /* Ensures content is below fixed header */
}

.page-newbie-guide__hero-section {
  position: relative;
  width: 100%;
  overflow: hidden;
  background-color: #0A2463; /* Fallback background */
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 450px; /* Minimum height for hero section */
}

.page-newbie-guide__hero-image {
  width: 100%;
  height: auto; /* Maintain aspect ratio */
  display: block;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.7; /* Slightly dim image to make text stand out */
}

.page-newbie-guide__hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: #ffffff;
  max-width: 900px;
  padding: 40px 20px;
}

.page-newbie-guide__main-title {
  font-size: 2.8em;
  font-weight: bold;
  margin-bottom: 20px;
  color: #E0B000;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-newbie-guide__intro-text {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #f0f0f0;
}

.page-newbie-guide__hero-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.page-newbie-guide__button {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.2s ease;
  border: none;
  cursor: pointer;
  font-size: 1em;
}

.page-newbie-guide__button--primary {
  background-color: #E0B000;
  color: #0A2463;
}

.page-newbie-guide__button--primary:hover {
  background-color: #f5db9c;
  transform: translateY(-2px);
}

.page-newbie-guide__button--secondary {
  background-color: transparent;
  color: #E0B000;
  border: 2px solid #E0B000;
}

.page-newbie-guide__button--secondary:hover {
  background-color: #E0B000;
  color: #0A2463;
  transform: translateY(-2px);
}

.page-newbie-guide__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
  background-color: #f4f4f4;
}

.page-newbie-guide__section-title {
  font-size: 2.2em;
  color: #0A2463;
  text-align: center;
  margin-bottom: 20px;
  position: relative;
}

.page-newbie-guide__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: #E0B000;
  margin: 10px auto 0;
  border-radius: 2px;
}

.page-newbie-guide__section-description {
  font-size: 1.1em;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px;
  color: #555555;
}

.page-newbie-guide__steps-section {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.page-newbie-guide__step-card {
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-newbie-guide__step-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.12);
}

.page-newbie-guide__step-header {
  background-color: #0A2463;
  color: #ffffff;
  padding: 25px 30px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.page-newbie-guide__step-number {
  background-color: #E0B000;
  color: #0A2463;
  border-radius: 50%;
  width: 45px;
  height: 45px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.8em;
  font-weight: bold;
  flex-shrink: 0;
}

.page-newbie-guide__step-title {
  font-size: 1.6em;
  margin: 0;
  color: #E0B000;
}

.page-newbie-guide__step-image {
  width: 100%;
  height: 450px; /* Fixed height for consistency */
  object-fit: cover;
  display: block;
}

.page-newbie-guide__step-body {
  padding: 30px;
  font-size: 1.05em;
  color: #444444;
}

.page-newbie-guide__step-body p {
  margin-bottom: 15px;
}

.page-newbie-guide__step-body strong {
  color: #0A2463;
}

.page-newbie-guide__list {
  list-style-type: disc;
  margin-left: 25px;
  margin-bottom: 20px;
  color: #444444;
}

.page-newbie-guide__list li {
  margin-bottom: 8px;
}

.page-newbie-guide__list ul {
  list-style-type: circle;
  margin-left: 20px;
  margin-top: 5px;
  margin-bottom: 5px;
}

.page-newbie-guide__button--small {
  padding: 10px 20px;
  font-size: 0.95em;
  margin-top: 15px;
}

.page-newbie-guide__final-cta {
  background-color: #0A2463;
  color: #ffffff;
  text-align: center;
  padding: 60px 20px;
  border-radius: 12px;
  margin-top: 40px;
}

.page-newbie-guide__final-cta-title {
  font-size: 2.5em;
  color: #E0B000;
  margin-bottom: 20px;
}

.page-newbie-guide__final-cta-description {
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto 30px;
}

.page-newbie-guide__button--large {
  padding: 15px 35px;
  font-size: 1.15em;
  background-color: #E0B000;
  color: #0A2463;
}

.page-newbie-guide__button--large:hover {
  background-color: #f5db9c;
  transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-newbie-guide__main-title {
    font-size: 2.2em;
  }
  .page-newbie-guide__intro-text {
    font-size: 1em;
  }
  .page-newbie-guide__section-title {
    font-size: 2em;
  }
  .page-newbie-guide__step-title {
    font-size: 1.4em;
  }
  .page-newbie-guide__step-image {
    height: 350px;
  }
  .page-newbie-guide__final-cta-title {
    font-size: 2em;
  }
}

@media (max-width: 768px) {
  .page-newbie-guide__hero-section {
    min-height: 350px;
  }
  .page-newbie-guide__hero-content {
    padding: 30px 15px;
  }
  .page-newbie-guide__main-title {
    font-size: 1.8em;
    margin-bottom: 15px;
  }
  .page-newbie-guide__intro-text {
    font-size: 0.95em;
    margin-bottom: 25px;
  }
  .page-newbie-guide__hero-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-newbie-guide__button {
    width: 100%;
    max-width: 250px;
  }
  .page-newbie-guide__content-area {
    padding: 40px 15px;
  }
  .page-newbie-guide__section-title {
    font-size: 1.8em;
  }
  .page-newbie-guide__section-description {
    font-size: 1em;
    margin-bottom: 40px;
  }
  .page-newbie-guide__step-header {
    padding: 20px;
    gap: 15px;
  }
  .page-newbie-guide__step-number {
    width: 40px;
    height: 40px;
    font-size: 1.5em;
  }
  .page-newbie-guide__step-title {
    font-size: 1.2em;
  }
  .page-newbie-guide__step-image {
    height: 250px;
  }
  .page-newbie-guide__step-body {
    padding: 20px;
    font-size: 1em;
  }
  .page-newbie-guide__final-cta {
    padding: 40px 15px;
  }
  .page-newbie-guide__final-cta-title {
    font-size: 1.8em;
  }
  .page-newbie-guide__final-cta-description {
    font-size: 1em;
  }
}

@media (max-width: 480px) {
  .page-newbie-guide__main-title {
    font-size: 1.5em;
  }
  .page-newbie-guide__section-title {
    font-size: 1.6em;
  }
  .page-newbie-guide__step-title {
    font-size: 1.1em;
  }
  .page-newbie-guide__step-image {
    height: 200px;
  }
  .page-newbie-guide__button--small,
  .page-newbie-guide__button--large {
    font-size: 0.9em;
    padding: 10px 20px;
  }
  .page-newbie-guide__final-cta-title {
    font-size: 1.6em;
  }
}