.page-index {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Body background is dark #1a1a2e, so use light text */
  background-color: transparent; /* Main content area will inherit body background */
}

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

.page-index__heading {
  font-size: 36px;
  color: #ffffff;
  text-align: center;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-index__description {
  font-size: 18px;
  color: #f0f0f0;
  text-align: center;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-index__btn-primary,
.page-index__btn-secondary,
.page-index__btn-small {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  text-align: center;
  cursor: pointer;
  white-space: nowrap; /* Prevent text wrapping for desktop */
  box-sizing: border-box;
}

.page-index__btn-primary {
  background-color: #017439;
  color: #ffffff;
  border: 2px solid #017439;
}

.page-index__btn-primary:hover {
  background-color: #005a2d;
  border-color: #005a2d;
}

.page-index__btn-secondary {
  background-color: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
}

.page-index__btn-secondary:hover {
  background-color: #ffffff;
  color: #017439;
}

.page-index__btn-register {
  background-color: #C30808;
  color: #FFFF00;
  border-color: #C30808;
}

.page-index__btn-register:hover {
  background-color: #a00606;
  border-color: #a00606;
  color: #FFFF00;
}

.page-index__btn-login {
  background-color: #C30808;
  color: #FFFF00;
  border-color: #C30808;
}

.page-index__btn-login:hover {
  background-color: #a00606;
  border-color: #a00606;
  color: #FFFF00;
}

.page-index__btn-small {
  padding: 8px 15px;
  font-size: 14px;
  border-radius: 5px;
  background-color: #017439;
  color: #ffffff;
  border: 1px solid #017439;
}

.page-index__btn-small:hover {
  background-color: #005a2d;
  border-color: #005a2d;
}

.page-index__text-link {
  color: #FFFF00; /* Use a bright color for links on dark background */
  text-decoration: underline;
}

.page-index__text-link:hover {
  color: #ffffff;
}

/* HERO Section */
.page-index__hero-section {
  position: relative;
  padding: 0;
  margin: 0;
  width: 100%;
  overflow: hidden;
}

.page-index__hero-container {
  position: relative;
  margin: 0 auto;
  width: 100%;
}

.page-index__hero-image {
  width: 100%;
  margin: 0;
}

.page-index__hero-image img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  object-fit: cover;
}