:root {
    --font-main: Tahoma, Geneva, sans-serif;
    --color-brand: #0d6b6e;
    --color-cta: #f5a623;
    --color-brand-dark: #0a4f52;
    --text-muted: #777;
    --text-body: #333;
    --border: #ddd;
}

*, *::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;
}

p {
    margin-top: 0;
}

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

.container {
    max-width: 1260px;
    margin: 0 auto;
    padding: 0 28px;
}

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

.btn-cta:hover {
    background-color: #e09518;
    box-shadow: 0 4px 12px rgba(245, 166, 35, 0.35);
    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: 12px 16px;
    text-align: left;
    border-bottom: 1px solid var(--border);
    font-size: 15px;
    color: var(--text-body);
}

th {
    font-weight: 700;
    background-color: #f4f4f4;
    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;
    }
}