/*
===============================================================================
File: /styles/base.css
Created: 2025-07-10
Last Modified: 2025-07-10
Purpose: Shared baseline styles for all pages
Upgrades:
  - Resets and typography
  - Shared utilities
===============================================================================
*/

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f8f9fa;
}

a {
  color: #145214;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}
