:root {
    --site-green: #348049;
    --text-black: #000000;
    --bg-white: #ffffff;
    --max-width: 72rem;
}

* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
    background-color: var(--bg-white);
    color: var(--text-black);
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.6;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    width: min(100% - 2rem, var(--max-width));
    margin-inline: auto;
}

.skip-link {
    position: absolute;
    left: -9999px;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.skip-link:focus {
    position: static;
    width: auto;
    height: auto;
    margin: 0.75rem;
    padding: 0.5rem 0.75rem;
    background: #000;
    color: #fff;
    z-index: 1000;
}

.site-header,
.site-footer {
    background: var(--bg-white);
}

.header-content {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 0;
}

.logo-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0px solid var(--site-green);
    border-radius: 0.5rem;
    padding: 0.25rem;
}

.site-logo {
    width: 200px;
    height: 200px;
    object-fit: contain;
    background: #fff;
}

.brand-text h1 {
    margin: 0;
    font-size: clamp(1.5rem, 2.5vw, 2rem);
}

.tagline {
    margin: 0.25rem 0 0;
    color: var(--text-black);
}

.divider {
    border-top: 4px solid var(--site-green);
}

.content-section {
    padding: 1.5rem 0;
}

h2 {
    margin-top: 0;
    border-left: 0.35rem solid var(--site-green);
    padding-left: 0.6rem;
}

p {
    max-width: 70ch;
}

.site-footer {
    padding: 1rem 0 1.5rem;
}

:focus-visible {
    outline: 3px solid var(--site-green);
    outline-offset: 2px;
}

@media (max-width: 40rem) {
    .header-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .site-logo {
        width: 64px;
        height: 64px;
    }
}

@media (prefers-reduced-motion: reduce) {
    * {
        scroll-behavior: auto;
    }
}
