:root {
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    --text-color: #1a365d;
    --muted-color: #4a5568;
    --accent-color: #0284c7;
    --bg-color: #ffffff;
    --nav-bg: #ffffff;
    --border-color: #e5e7eb;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-family);
    color: var(--text-color);
    background-color: var(--bg-color);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.container {
    width: 100%;
    margin: 0;
    padding: 2rem 3rem 2rem 3rem;
    text-align: left;
    flex: 1;
}

h1 {
    margin-top: 0.5rem;
    margin-bottom: 2.5rem;
}

ol {
    list-style-position: inside;
    padding-left: 0; /* Removes default left padding indentation */
}
