*, *::before, *::after { box-sizing: border-box; }
:root {
    --font-main: Tahoma, Geneva, sans-serif;
    --color-brand: #1565c0;
    --color-cta: #ff6b35;
    --text-dark: #1a1a1a;
    --text-muted: #666;
    --border: #ddd;
    --bg-light: #f7f7f7;
}
* { font-family: var(--font-main); }
html { overflow-x: hidden; scroll-behavior: smooth; }
body { margin: 0; padding: 0; font-size: 16px; line-height: 1.6; color: var(--text-dark); background: #fff; font-weight: 400; }
img, video, iframe, embed, object { max-width: 100%; height: auto; }
table { max-width: 100%; border-collapse: collapse; }
.table-responsive, .table-wrapper { overflow-x: auto; -webkit-overflow-scrolling: touch; }
h1, h2, h3, h4, h5, h6 { font-weight: 700; line-height: 1.6; color: var(--color-brand); margin: 0 0 16px; }
h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }
p { font-weight: 400; font-size: 16px; line-height: 1.6; margin: 0 0 16px; }
a { color: var(--color-brand); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--color-cta); }
ul, ol { margin: 0 0 16px; padding-left: 24px; }
li { font-size: 16px; line-height: 1.6; }
strong, b { font-weight: 700; }
small { font-size: 14px; }
button { font-family: inherit; }
input, textarea, select { font-family: inherit; font-size: 16px; }
.container { width: 92%; max-width: 1280px; margin-left: auto; margin-right: auto; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }
.skip-link { position: absolute; top: -100px; left: 16px; background: var(--color-brand); color: #fff; padding: 10px 18px; font-size: 14px; font-weight: 700; border-radius: 4px; z-index: 9999; transition: top 0.2s; }
.skip-link:focus { top: 16px; color: #fff; }
@media (max-width: 768px) {
    body { overflow-x: hidden; }
    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }
    h3 { font-size: 1.25rem; }
    .container { width: 92%; }
}
@media (max-width: 480px) {
    h1 { font-size: 1.75rem; }
    h2 { font-size: 1.5rem; }
}