/* style/support.css */

/* Variables from shared.css (assuming they are defined there) */
/* :root {
  --primary-color: #017439;
  --secondary-color: #FFFFFF;
  --text-dark: #333333;
  --text-light: #ffffff;
  --btn-register-bg: #C30808;
  --btn-register-text: #FFFF00;
  --header-offset: 122px; // Example, actual value from shared.css
} */

.page-support {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: var(--text-dark, #333333); /* Default text color for light body background */
  background-color: var(--secondary-color, #ffffff); /* Ensure consistency with body background */
}