:root {
    --zb-primary: #f07a00;
    --zb-secondary: #f6c21a;
    --zb-dark: #252525;
    --zb-text: #333333;
    --zb-muted: #f7f7f7;
    --zb-border: #e8e2dc;
    --zb-white: #ffffff;
    --zb-container: 1180px;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    color: var(--zb-text);
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.6;
    background: var(--zb-white);
}

img {
    max-width: 100%;
    height: auto;
}

a {
    color: inherit;
    text-decoration: none;
}

a:hover {
    color: var(--zb-primary);
}

h1,
h2,
h3 {
    margin: 0 0 16px;
    color: var(--zb-dark);
    line-height: 1.15;
}

p {
    margin: 0 0 16px;
}

.screen-reader-text {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.zb-container {
    width: min(100% - 32px, var(--zb-container));
    margin-inline: auto;
}

.zb-section {
    padding: 72px 0;
}

.zb-section--muted {
    background: var(--zb-muted);
}

.zb-section-head {
    max-width: 760px;
    margin-bottom: 32px;
}

.zb-eyebrow {
    margin-bottom: 10px;
    color: var(--zb-primary);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0;
    text-transform: uppercase;
}

.zb-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 12px 18px;
    border: 1px solid var(--zb-primary);
    border-radius: 6px;
    color: var(--zb-white);
    font-weight: 700;
    background: var(--zb-primary);
}

.zb-button:hover {
    color: var(--zb-white);
    background: #cc6500;
}

.zb-button--ghost {
    color: var(--zb-dark);
    background: transparent;
}

.zb-button--ghost:hover {
    color: var(--zb-white);
}

.zb-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.zb-content {
    max-width: 860px;
}

.zb-stack > * + * {
    margin-top: 24px;
}

