/* Color Palette: White (#ffffff), Slate Gray (#2F3E46), Trust Blue (#0056b3) */
:root {
    --esh-white: #ffffff;
    --esh-slate: #2F3E46;
    --esh-blue: #0056b3;
}

body {
    background-color: var(--esh-white);
    color: var(--esh-slate);
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    color: var(--esh-slate);
    font-weight: 700;
    margin-bottom: 1rem;
}

a {
    color: var(--esh-blue);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #004494;
    text-decoration: underline;
}

.site-title a {
    color: var(--esh-slate);
    font-weight: bold;
}

.site-header {
    background-color: var(--esh-white);
    border-bottom: 1px solid #eaeaea;
    padding: 20px 0;
}
