:root {
    --color-brand: #0d47a1;
    --color-cta: #ff6d00;
    --text-muted: #666;
    --border: #ddd;
    --font-main: 'Trebuchet MS', Helvetica, sans-serif;
}

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

html {
    overflow-x: hidden;
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;
    font-family: var(--font-main);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
    color: #222;
    background-color: #fff;
    overflow-x: hidden;
}

img, video, iframe, embed, object, svg, canvas {
    max-width: 100%;
    height: auto;
}

img {
    display: block;
}

a {
    color: var(--color-brand);
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

a:focus-visible {
    outline: 2px solid var(--color-brand);
    outline-offset: 3px;
    border-radius: 2px;
}

p {
    margin: 0 0 16px;
    font-weight: 400;
    line-height: 1.6;
}

ul, ol {
    margin: 0 0 16px;
    padding-left: 20px;
}

li {
    line-height: 1.6;
    font-weight: 400;
}

h1, h2, h3, h4 {
    font-family: var(--font-main);
    font-weight: 700;
    line-height: 1.6;
    margin: 0 0 16px;
    color: #111;
}

h1 { font-size: 2.2rem; }
h2 { font-size: 1.7rem; }
h3 { font-size: 1.3rem; }
h4 { font-size: 1.1rem; }

table {
    width: 100%;
    border-collapse: collapse;
    max-width: 100%;
    font-size: 15px;
    line-height: 1.6;
}

th, td {
    text-align: left;
    padding: 10px 14px;
    border-bottom: 1px solid var(--border);
    font-weight: 400;
    color: #333;
}

th {
    font-weight: 700;
    background-color: #f0f4ff;
    color: var(--color-brand);
}

tr:last-child td {
    border-bottom: none;
}

tr:hover td {
    background-color: #f8faff;
}

.table-responsive,
.table-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: 8px;
    border: 1px solid var(--border);
}

.btn-cta {
    display: inline-block;
    background-color: var(--color-cta);
    color: #fff;
    font-family: var(--font-main);
    font-weight: 700;
    font-size: 15px;
    line-height: 1.6;
    padding: 12px 28px;
    border-radius: 6px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: background-color 0.2s;
    text-align: center;
}

.btn-cta:hover {
    background-color: #e65c00;
    text-decoration: none;
    color: #fff;
}

.btn-cta:focus-visible {
    outline: 2px solid #fff;
    outline-offset: 3px;
}

.btn-cta--full {
    display: block;
    width: 100%;
}

input, textarea, select {
    font-family: var(--font-main);
    font-size: 16px;
    line-height: 1.6;
    max-width: 100%;
    box-sizing: border-box;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0,0,0,0);
    white-space: nowrap;
    border: 0;
}

.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--color-brand);
    color: #fff;
    padding: 8px 16px;
    z-index: 9999;
    font-family: var(--font-main);
    font-weight: 700;
    transition: top 0.2s;
}

.skip-link:focus {
    top: 0;
}

@media (max-width: 768px) {
    body {
        overflow-x: hidden;
    }

    h1 { font-size: 1.6rem; }
    h2 { font-size: 1.3rem; }
    h3 { font-size: 1.15rem; }

    .grid, [class*='grid'] {
        grid-template-columns: 1fr;
    }

    th, td {
        padding: 8px 10px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    h1 { font-size: 1.4rem; }
    h2 { font-size: 1.2rem; }
}