/* style/index-how-to-start-with-r88.css */
.page-index-how-to-start-with-r88 {
  color: #ffffff; /* Default text color for dark body background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
  background-color: transparent; /* Main content area will inherit body background */
}

.page-index-how-to-start-with-r88__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-index-how-to-start-with-r88__section-title {
  font-size: 2.5em;
  color: #017439; /* Brand primary color for titles */
  text-align: center;
  margin-bottom: 30px;
  font-weight: bold;
}

.page-index-how-to-start-with-r88__section-title--white {
  color: #ffffff;
}

.page-index-how-to-start-with-r88__text-block {
  font-size: 1.1em;
  text-align: center;
  margin-bottom: 20px;
  color: #f0f0f0; /* Slightly off-white for body text on dark background */
}

.page-index-how-to-start-with-r88__text-block--white {
  color: #ffffff;
}

/* Hero Section */
.page-index-how-to-start-with-r88__hero-section {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 600px;
  background-color: #121212; /* Match body background */
  color: #ffffff;
  text-align: center;
  overflow: hidden;
  padding-top: var(--header-offset, 120px);
}

.page-index-how-to-start-with-r88__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.page-index-how-to-start-with-r88__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
}

.page-index-how-to-start-with-r88__hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 20px;
}

.page-index-how-to-start-with-r88__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #ffffff;
}

.page-index-how-to-start-with-r88__hero-description {
  font-size: 1.4em;
  margin-bottom: 40px;
  color: #f0f0f0;
}

.page-index-how-to-start-with-r88__hero-cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}