:root {
    --color-brand: #92400e;
    --color-cta: #16a34a;
    --font-main: Verdana, Geneva, Tahoma, sans-serif;
    --text-dark: #222;
    --text-muted: #666;
    --border: #ddd;
    --bg-light: #faf8f5;
    --bg-card: #fff;
}

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

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

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

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

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

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

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

p {
    margin: 0 0 16px 0;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
    color: var(--text-dark);
}

p:last-child {
    margin-bottom: 0;
}

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

a:hover {
    text-decoration: underline;
}

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

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

li {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
    color: var(--text-dark);
    margin-bottom: 6px;
}

strong {
    font-weight: 700;
}

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

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

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

.btn-cta:hover,
.btn-cta:focus {
    background-color: #15803d;
    box-shadow: 0 4px 12px rgba(22, 163, 74, 0.3);
    text-decoration: none;
    color: #fff;
}

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

.section-header {
    text-align: center;
    margin-bottom: 48px;
}

.section-header h2 {
    font-size: 28px;
    font-weight: 700;
    color: var(--color-brand);
    margin-bottom: 12px;
}

.section-sub {
    font-size: 16px;
    font-weight: 400;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

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

    .container {
        width: 100%;
        padding: 0 16px;
    }

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

    .section-header h2 {
        font-size: 22px;
    }

    .section-sub {
        font-size: 15px;
    }
}