/*
 * CormackCoreWeb 2.0 - Main Stylesheet
 * Author: Charlie - Cormack Advertising
 */

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
}

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

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

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
header {
    padding: 20px 0;
    background: #fff;
    border-bottom: 1px solid #eee;
}

/* Footer Styles */
footer {
    padding: 40px 0;
    background: #f8f8f8;
    margin-top: 60px;
}

/* Hero Styles */
.hero {
    padding: 80px 0;
    background: #f5f5f5;
}

/* Main Content */
main {
    padding: 40px 0;
}
