/* =====================================================
   Reset & Base
===================================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--text-color, #333);
  background-color: #fff;
}

a {
  text-decoration: none;
  color: inherit;
}

/* =====================================================
   CSS Variables / Theme
===================================================== */
:root {
  --header-bg: #222;
  --header-text: #fff;

  --footer-bg: #333;
  --footer-text: #fff;

  --primary-color: #007bff;
  --button-bg: #007bff;
  --button-text: #fff;

  --card-bg: #f5f5f5;
  --card-text: #333;
}

/* =====================================================
   Utility / Global Components
===================================================== */
.container {
  max-width: 1200px;
  margin: auto;
  padding: 20px;
}

.card {
  background: var(--card-bg);
  color: var(--card-text);
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  margin-bottom: 20px;
}
