/* Basic reset for consistency */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: sans-serif;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    color: #333;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 15px;
    margin-bottom: 40px;
}

nav a {
    text-decoration: none;
    color: #007bff;
    font-weight: bold;
}

header {
    margin-bottom: 30px;
}
