:root {
    --font-main: Bahnschrift, 'Arial Black', 'Helvetica Neue', sans-serif;
    --color-brand: #7c2d12;
    --color-cta: #00E5FF;
    --text-muted: #666;
    --border: #ddd;
}

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

html {
    overflow-x: hidden;
}

body {
    margin: 0;
    padding: 0;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
    color: #222;
    background-color: #fff;
}

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

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

table {
    max-width: 100%;
}

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

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

a:hover {
    text-decoration: underline;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.6;
    margin: 0 0 0.5em;
    color: #111;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 1.8rem;
}

h3 {
    font-size: 1.35rem;
}

h4 {
    font-size: 1.15rem;
}

p {
    margin: 0 0 1em;
}

ul, ol {
    margin: 0 0 1em;
    padding-left: 1.5em;
}

li {
    margin-bottom: 0.3em;
}

strong {
    font-weight: 700;
}

.container {
    width: 90%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.btn-cta {
    display: inline-block;
    padding: 14px 32px;
    background-color: var(--color-cta);
    color: #111;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 4px;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    border: none;
    cursor: pointer;
    transition: background-color 0.2s;
}

.btn-cta:hover {
    background-color: #00c8e0;
    text-decoration: none;
}

.btn-cta:focus-visible {
    outline: 2px solid var(--color-brand);
    outline-offset: 2px;
}

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

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

@media (max-width: 768px) {
    body {
        overflow-x: hidden;
    }
    h1 {
        font-size: 1.8rem;
    }
    h2 {
        font-size: 1.4rem;
    }
    h3 {
        font-size: 1.15rem;
    }
    .container {
        padding: 0 16px;
    }
}