body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fdfdfd;
    margin: 0;
    padding: 20px;
    max-width: 800px;
    margin: 20px auto; /* Centers the content on wider screens */
}

/* This rule now ONLY targets the main section headers */
h1, h2 {
    color: #222;
    border-bottom: 1px solid #eaeaea; /* The line you wanted */
    padding-bottom: 10px;
    margin-top: 30px;
}

/* This new rule targets the sub-headers */
h3 {
    color: #333; /* Slightly less prominent than h2 */
    margin-top: 25px;
    margin-bottom: 10px;
    /* Note: No border-bottom here */
}

p {
    margin-bottom: 15px;
}

/* This makes lists look cleaner */
ul {
    padding-left: 20px;
}

li {
    margin-bottom: 10px;
}

a {
    color: #465d92; /* A blue from your app's theme */
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

hr {
    border: none;
    border-top: 1px solid #eaeaea;
    margin: 40px 0; /* Increased margin for more separation */
}
