/* style/news.css */

/* Custom CSS Variables */
:root {
  --primary-color: #017439;
  --secondary-color: #FFFFFF;
  --accent-color-register: #C30808;
  --accent-color-login: #C30808;
  --text-color-register-login: #FFFF00;
  --background-color: #FFFFFF;
  --text-color-dark: #333333;
  --text-color-light: #ffffff;
  --border-color-light: #e0e0e0;
}

/* Base styles for the page content, ensuring contrast with white body background */
.page-news {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: var(--text-color-dark); /* Ensure dark text on light body background */
  background-color: var(--background-color);
}