/* ============================================================
   GLOBAL BASE STYLES
   File: base.css
   Purpose: Reset, typography, containers, global defaults
============================================================ */

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

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

/* ------------------------------
   IMAGES
------------------------------ */
img {
    max-width: 100%;
    display: block;
}

/* ------------------------------
   CONTAINER
------------------------------ */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}
