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

:root {
    --font-main: Bahnschrift, 'Arial Black', 'Helvetica Neue', sans-serif;
    --color-brand: #2d2d2d;
    --color-cta: #FF5E78;
    --color-bg-warm: #faf9f7;
    --text-body: #444;
    --text-muted: #888;
    --border-light: #e0e0e0;
}

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

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

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

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

p {
    margin: 0;
}

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

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;
}

button {
    font-family: var(--font-main);
    cursor: pointer;
    border: none;
    background: none;
}

input, textarea, select {
    font-family: var(--font-main);
    font-size: 16px;
}

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

.skip-link {
    position: absolute;
    top: -100px;
    left: 0;
    background: var(--color-cta);
    color: #fff;
    padding: 10px 16px;
    z-index: 10000;
    font-size: 14px;
    transition: top 0.2s;
}
.skip-link:focus {
    top: 0;
}

@media (max-width: 768px) {
    body {
        overflow-x: hidden;
    }
    h1 {
        font-size: 26px;
    }
    h2 {
        font-size: 22px;
    }
}