:root {
    --color-brand: #92400e;
    --color-cta: #16a34a;
    --color-brand-dark: #7c3410;
    --color-brand-light: #fef3e8;
    --text-dark: #222;
    --text-muted: #666;
    --text-light: #888;
    --border: #ddd;
    --bg-light: #faf8f5;
    --bg-card: #fff;
    --font-main: 'Trebuchet MS', Helvetica, sans-serif;
}

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

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

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

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

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

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

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

a:hover {
    color: var(--color-brand-dark);
}

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

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

p {
    margin-top: 0;
    margin-bottom: 16px;
    font-size: 16px;
    line-height: 1.6;
}

ul, ol {
    padding-left: 20px;
    margin-top: 0;
    margin-bottom: 16px;
}

li {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 6px;
}

strong {
    font-weight: 700;
}

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

.btn-cta {
    display: inline-block;
    background-color: var(--color-cta);
    color: #fff;
    font-family: var(--font-main);
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    padding: 12px 28px;
    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;
    color: #fff;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(22, 163, 74, 0.3);
}

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

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

.section-heading {
    font-size: 28px;
    font-weight: 700;
    color: var(--color-brand);
    margin-bottom: 12px;
    line-height: 1.6;
}

.section-lead {
    color: var(--text-muted);
    font-size: 16px;
    margin-bottom: 32px;
    line-height: 1.6;
}

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

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

    .section-heading {
        font-size: 22px;
    }

    .btn-cta {
        width: 100%;
        text-align: center;
    }
}