/* style/index.css */
:root {
  --primary-color: #26A9E0;
  --secondary-color: #FFFFFF;
  --text-dark: #333333;
  --text-light: #ffffff;
  --bg-light: #f8f9fa; /* Light background for contrast sections */
  --bg-dark-section: #1a1a1a; /* Dark background for sections */
  --bg-dark-card: rgba(255, 255, 255, 0.1); /* Semi-transparent white for cards on dark bg */
  --border-light: #e0e0e0;
}

/* Base styles for the page content, assuming body has a dark background from shared.css */
.page-index {
  color: var(--text-light); /* Default light text color for dark body background */
  background-color: transparent; /* Main content background will be set per section */
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

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