/* 
   Style for a minimal legal/informational website.
   White background, dark gray text, centered content.
*/

:root {
    --bg-color: #ffffff;
    --text-color: #333333;
    --link-color: #0066cc;
    --font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
    --max-width: 800px;
    --line-height: 1.6;
}

* {
    box-sizing: border-box;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-family);
    line-height: var(--line-height);
    margin: 0;
    padding: 40px 20px;
    display: flex;
    justify-content: center;
}

.container {
    width: 100%;
    max-width: var(--max-width);
}

header {
    margin-bottom: 40px;
    border-bottom: 1px solid #eeeeee;
    padding-bottom: 20px;
}

h1, h2, h3 {
    margin-top: 1.5em;
    margin-bottom: 0.5em;
}

p {
    margin-bottom: 1em;
}

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

a:hover {
    text-decoration: underline;
}

nav {
    margin-top: 20px;
}

nav a {
    margin-right: 20px;
}

footer {
    margin-top: 60px;
    padding-top: 20px;
    border-top: 1px solid #eeeeee;
    font-size: 0.9em;
    color: #777777;
}

.effective-date {
    font-style: italic;
    color: #777777;
    margin-bottom: 20px;
}
