body {
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    background-color: #f6f6f6;
    color: #202122;
}
#container {
    display: flex;
}
#sidebar {
    width: 220px;
    background-color: #f8f9fa;
    border-right: 1px solid #a2a9b1;
    padding: 20px 10px;
    height: 100vh;
    box-sizing: border-box;
}

#sidebar h2 {
    font-size: 18px;
    margin-top: 0;
    border-bottom: 1px solid #a2a9b1;
    padding-bottom: 5px;
}

#sidebar a {
    display: block;
    text-decoration: none;
    color: #0645ad;
    margin: 6px 0;
    font-size: 14px;
}

#sidebar a:hover {
    text-decoration: underline;
}

#content {
    flex: 1;
    padding: 30px;
    background-color: white;
    max-width: 1000px;
}

#content h1 {
    font-size: 32px;
    border-bottom: 1px solid #a2a9b1;
    margin-top: 0;
    font-weight: normal;
}

#content p {
    line-height: 1.6;
    font-size: 15px;
}

.footer {
    margin-top: 60px;
    font-size: 12px;
    color: #54595d;
    border-top: 1px solid #a2a9b1;
    padding-top: 10px;
}