:root {
    --font-main: 'Trebuchet MS', 'Lucida Grande', Helvetica, Arial, sans-serif;
    --color-brand: #103d5d;
    --color-cta: #ff6a3a;
    --color-brand-dark: #0b2c44;
    --color-brand-soft: #eef3f7;
    --text-muted: #6e6e6e;
    --text-body: #2c2c2c;
    --border: #dcdcdc;
}

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

* {
    font-family: var(--font-main);
}

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

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

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

img {
    display: block;
}

a {
    color: var(--color-brand);
    transition: color 0.2s;
}

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

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.6;
    margin-top: 0;
    color: var(--color-brand);
}

p {
    margin-top: 0;
    overflow-wrap: break-word;
    word-wrap: break-word;
}

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

.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 26px;
}

.btn-cta {
    display: inline-block;
    background-color: var(--color-cta);
    color: #fff;
    font-weight: 700;
    padding: 14px 30px;
    border-radius: 7px;
    text-decoration: none;
    font-size: 16px;
    transition: background-color 0.2s, box-shadow 0.2s;
    border: none;
    cursor: pointer;
}

.btn-cta:hover {
    background-color: #ec5524;
    box-shadow: 0 4px 14px rgba(255, 106, 58, 0.32);
    color: #fff;
}

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

.table-responsive,
.table-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

table {
    width: 100%;
    border-collapse: collapse;
    max-width: 100%;
}

th, td {
    padding: 13px 16px;
    text-align: left;
    border-bottom: 1px solid var(--border);
    font-size: 15px;
    color: var(--text-body);
}

th {
    font-weight: 700;
    background-color: #f3f5f8;
    color: var(--text-body);
}

.skip-to-content {
    position: absolute;
    left: -9999px;
    top: 4px;
    background: var(--color-brand);
    color: #fff;
    padding: 8px 16px;
    z-index: 9999;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 700;
}

.skip-to-content:focus {
    left: 4px;
}

@media (max-width: 768px) {
    body {
        overflow-x: hidden;
    }
    .grid, [class*='grid'] {
        grid-template-columns: 1fr !important;
    }
    th, td {
        font-size: 13px;
        padding: 10px 12px;
    }
}
