/* Import a modern, clean font */
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;700&display=swap');

body {
    background-color: #0d0d0d;
    color: #cccccc;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    line-height: 1.7;
    margin: 0;
    padding: 20px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: 800px;
    margin: 40px auto;
    padding: 20px 40px;
}

header {
    text-align: center;
    border-bottom: 1px solid #333;
    padding-bottom: 20px;
    margin-bottom: 40px;
}

.pre-header {
    color: #E84A5F; /* Accent Red */
    font-weight: 700;
    letter-spacing: 1.5px;
    font-size: 0.9em;
    text-transform: uppercase;
    margin: 0;
}

h1 {
    color: #ffffff;
    font-size: 3em;
    font-weight: 700;
    margin: 10px 0;
}

.last-updated {
    color: #888888;
    font-size: 0.9em;
}

h2 {
    color: #ffffff;
    border-bottom: 1px solid #E84A5F;
    padding-bottom: 10px;
    margin-top: 40px;
    font-weight: 700;
}

p, ul {
    font-size: 1.1em;
    font-weight: 300;
}

ul {
    list-style-position: outside;
    padding-left: 20px;
}

li {
    margin-bottom: 10px;
}

a {
    color: #E84A5F;
    text-decoration: none;
    font-weight: 400;
}

a:hover {
    text-decoration: underline;
}

.contact-info {
    background-color: #1a1a1a;
    border-left: 4px solid #E84A5F;
    padding: 15px 20px;
    margin-top: 20px;
}