:root {
  --primary-color: #26A9E0;
  --secondary-color: #FFFFFF;
  --text-dark: #333333;
  --text-light: #FFFFFF;
  --button-login: #EA7C07;
  --background-light: #FFFFFF;
  --background-dark: var(--black-color, #000000); /* Fallback to black if --black-color is not defined */
}

/* Base styles for the page content, assuming a dark body background from shared.css */
.page-resources {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: var(--text-light); /* Default text color for dark background */
  background-color: var(--background-dark); /* Ensure main content background matches body */
}

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

.page-resources__hero-section {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 600px;
  padding-top: var(--header-offset, 120px); /* Fixed header offset */
  background-color: var(--background-dark);
  color: var(--text-light);
  overflow: hidden;
}

.page-resources__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  padding: 40px 20px;
}