.page-index {
  font-family: 'Arial', sans-serif;
  color: #E0E0E0; /* Light text for dark background */
  background-color: #0A1931;
  line-height: 1.6;
}

.page-index .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-index h1, .page-index h2, .page-index h3 {
  color: #FFD700; /* Gold for headings */
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-index h1 {
  font-size: 3.2em;
  text-align: center;
}

.page-index h2 {
  font-size: 2.5em;
  text-align: center;
  padding-top: 40px;
  margin-top: 0;
}

.page-index h3 {
  font-size: 1.8em;
  color: #FFD700;
}

.page-index p {
  margin-bottom: 15px;
  color: #E0E0E0;
}

.page-index a {
  color: #FFD700;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-index a:hover {
  color: #FFFFFF;
}

.page-index .cta-button, .page-index .cta-button-small {
  display: inline-block;
  padding: 15px 40px;
  background: #FFD700;
  color: #0A1931;
  text-decoration: none;
  border-radius: 8px;
  font-size: 1.1em;
  font-weight: bold;
  margin-top: 20px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  text-align: center;
}

.page-index .cta-button-small {
  padding: 10px 25px;
  font-size: 0.95em;
  margin-top: 15px;
}