:root {
  --primary-color: #017439;
  --secondary-color: #C30808;
  --text-color-light: #FFFFFF;
  --text-color-dark: #333333;
  --background-color: #FFFFFF;
  --register-button-bg: #C30808;
  --login-button-bg: #C30808;
  --register-login-font: #FFFF00;
}

/* Helper to darken color for hover states */
/* This is a placeholder, actual darken function needs to be handled by preprocessor or JS if not supported natively */
/* For now, using a fixed darker color or a slightly different shade */

.page-resources-latest-access-guide {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: var(--text-color-dark);
  background-color: var(--background-color);
}

/* Hero Section */
.page-resources-latest-access-guide__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);
  background-color: var(--primary-color); /* Fallback/overlay base */
  color: var(--text-color-light);
  overflow: hidden;
}