.page-index-beginner-guide {
  color: #333333; /* Default text color for light body background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
  background-color: #f8f8f8;
}

.page-index-beginner-guide__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  padding-top: var(--header-offset, 120px);
  background: linear-gradient(135deg, #017439, #ffffff);
  color: #ffffff;
  overflow: hidden;
}

.page-index-beginner-guide__hero-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.page-index-beginner-guide__hero-image {
  width: 100%;
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
}

.page-index-beginner-guide__hero-image img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  border-radius: 8px;
  object-fit: cover;
}

.page-index-beginner-guide__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
  padding: 20px;
  background-color: rgba(0, 0, 0, 0.4); /* Dark overlay for text readability */
  border-radius: 8px;
  margin-top: -80px; /* Overlap with image slightly */
}

.page-index-beginner-guide__main-title {
  font-size: 48px;
  font-weight: bold;
  margin-bottom: 20px;
  color: #FFFF00; /* Register/Login font color */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-index-beginner-guide__hero-description {
  font-size: 20px;
  margin-bottom: 30px;
  color: #f0f0f0;
}

.page-index-beginner-guide__cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: #C30808; /* Register/Login color */
  color: #FFFF00; /* Register/Login font color */
  text-decoration: none;
  border-radius: 5px;
  font-size: 18px;
  font-weight: bold;
  margin-top: 30px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-index-beginner-guide__cta-button:hover {
  background: #a30606;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.page-index-beginner-guide__section {
  padding: 60px 0;
  margin-bottom: 30px;
}

.page-index-beginner-guide__section:nth-of-type(even) {
  background-color: #f0f0f0;
}

.page-index-beginner-guide__dark-bg {
  background-color: #017439;
  color: #ffffff;
}

.page-index-beginner-guide__light-bg {
  background-color: #ffffff;
  color: #333333;
}

.page-index-beginner-guide__container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-index-beginner-guide__section-title {
  font-size: 36px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 40px;
  color: inherit;
}

.page-index-beginner-guide__dark-bg .page-index-beginner-guide__section-title {
  color: #FFFF00;
}

.page-index-beginner-guide__sub-title {
  font-size: 24px;
  font-weight: 600;
  margin-top: 30px;
  margin-bottom: 15px;
  color: inherit;
}

.page-index-beginner-guide__paragraph {
  font-size: 17px;
  margin-bottom: 20px;
  color: inherit;
  text-align: justify;
}

.page-index-beginner-guide__list {
  list-style: disc;
  padding-left: 25px;
  margin-bottom: 20px;
}

.page-index-beginner-guide__ordered-list {
  list-style: decimal;
  padding-left: 25px;
  margin-bottom: 20px;
}