:root {
  --primary-color: #FFD700; /* Gold */
  --secondary-color: #1A202C; /* Dark Blue/Black */
  --text-light: #ffffff;
  --text-dark: #333333;
  --bg-dark: #000000; /* From shared.css body background */
  --bg-card-dark: rgba(255, 255, 255, 0.08); /* Slightly transparent white on dark background */
  --bg-light: #ffffff;
  --border-light: #e0e0e0;
}

/* Base styles for the page content, considering body background is dark */
.page-index {
  color: var(--text-light); /* Light text on dark body background */
  background-color: var(--bg-dark); /* Ensure consistency if shared.css body background isn't applied directly */
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
}

/* HERO Section */
.page-index__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); /* Fixed header offset */
  background: linear-gradient(135deg, var(--secondary-color), rgba(26, 32, 44, 0.8)); /* Dark background with subtle gradient */
  color: var(--text-light);
  overflow: hidden; /* Prevent content overflow */
}