:root {
  --primary-color: #0A2463; /* Deep Blue */
  --secondary-color: #E34234; /* Vibrant Red */
  --text-light: #ffffff;
  --text-dark: #333333;
  --bg-light: #f4f7fa;
  --bg-dark: #071a3d; /* Slightly darker than primary for contrast */
  --border-color: #e0e0e0;
}

.page-index {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
}

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

.page-index h1,
.page-index h2,
.page-index h3,
.page-index h4,
.page-index h5,
.page-index h6 {
  color: var(--primary-color);
  margin-bottom: 15px;
  line-height: 1.2;
}

.page-index h1 {
  font-size: 3.2em;
  text-align: center;
  color: var(--text-light); /* For hero section */
}

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

.page-index h3 {
  font-size: 1.8em;
  margin-bottom: 10px;
}

/* --- Hero Section --- */
.page-index .hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  background: var(--bg-dark); /* Dark background for hero */
}

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

.page-index .hero-image {
  width: 100%;
  margin-bottom: 30px;
}

.page-index .hero-image img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.page-index .hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
  color: var(--text-light); /* Light text on dark hero background */
}

.page-index .hero-content h1 {
  color: var(--text-light); /* Ensure H1 is white */
  font-size: 3.5em;
  margin-bottom: 20px;
}
}