:root {
    --color-brand: #556b2f;
    --color-cta: #ff6a00;
    --font-main: Verdana, Geneva, Tahoma, sans-serif;
    --text-muted: #777;
    --border: #ddd;
    --text-dark: #222;
    --bg-light: #f8f7f4;
}

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

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

html {
    overflow-x: hidden;
}

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

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

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.6;
    margin-top: 0;
}

p {
    line-height: 1.6;
    margin-top: 0;
}

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

a:hover {
    text-decoration: underline;
}

ul, ol {
    line-height: 1.6;
}

button, input, select, textarea {
    font-size: 16px;
    line-height: 1.6;
}

.btn-cta {
    display: inline-block;
    background-color: var(--color-cta);
    color: #fff;
    text-decoration: none;
    padding: 13px 28px;
    font-size: 15px;
    font-weight: 700;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    transition: background-color 0.2s;
    line-height: 1.6;
}

.btn-cta:hover {
    background-color: #e05d00;
    text-decoration: none;
    color: #fff;
}

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

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

@media (max-width: 768px) {
    body {
        overflow-x: hidden;
    }
    .grid, [class*='grid'] {
        grid-template-columns: 1fr !important;
    }
}

@media (max-width: 480px) {
    .section-container {
        padding: 0 16px;
    }
}