/* SURMAR Main Stylesheet */

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

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

header {
    background: #1a365d;
    color: white;
    padding: 1rem 2rem;
}

header nav a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.25rem;
}

main {
    padding: 2rem;
    min-height: calc(100vh - 140px);
}

footer {
    background: #f8f9fa;
    padding: 1rem 2rem;
    text-align: center;
    color: #666;
}
