/* Global page settings */
body {
    font-family: "Times New Roman", Times, serif;
    font-size: 12pt;
    margin: 1in; /* 1-inch margins all around */
    color: #000;
    background-color: #fff;
}

/* Title style */
h1 {
    text-align: center;
    font-size: 18pt;
    font-weight: bold;
    margin-bottom: 0.5in;
}

/* Heading styles for sections */
h2 {
    font-size: 14pt;
    margin-top: 0.5in;
    margin-bottom: 0.25in;
}

/* Paragraph spacing */
p {
    margin: 0.15in 0;
    line-height: 1.3;
}

/* Make sure links and colors print in black and white */
a, a:visited {
    color: black;
    text-decoration: underline;
}

/* Print-specific rules */
@media print {
    body {
        color: black;
        background: white;
    }

    a {
        color: black;
        text-decoration: none;
    }
}