/* Base reset — shared across all stylesheets */

*, *::before, *::after {
    box-sizing: border-box;
}

html {
    font-size: 16px;
    overflow-x: hidden;
}

body {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: 1rem;
    line-height: 1.5;
    color: #212529;
    background-color: #fff;
}

h1, h2, h3, h4, h5, h6 {
    margin-top: 0;
    margin-bottom: 0.5rem;
    font-weight: 500;
    line-height: 1.2;
}

p { margin-top: 0; margin-bottom: 1rem; }

a { color: #007bff; text-decoration: none; }
a:hover { text-decoration: underline; }

label { display: inline-block; margin-bottom: 0.5rem; }
input, button, select, textarea { font-family: inherit; font-size: inherit; }
