/* ===== Reset for Print ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ===== Body (white background, black text) ===== */
body {
    font-family: 'Times New Roman', serif;
    font-size: 12pt;
    line-height: 1.4;
    color: #000;
    background: #fff;
    margin: 20px;
}

/* ===== Hide Navigation & Extras ===== */
nav, footer {
    display: none;
}

/* ===== Sections (no shadows or colors) ===== */
section {
    width: 100%;
    max-width: 100%;
    margin: 10px 0;
    padding: 0;
    background: #fff;
    border: none;
    box-shadow: none;
}

/* ===== Headings ===== */
h1, h2, h3 {
    color: #000;
}
h1 {
    font-size: 18pt;
    margin-bottom: 5px;
}
h2 {
    font-size: 14pt;
    margin: 10px 0 5px;
    border: none;
}
h3 {
    font-size: 12pt;
    margin-top: 5px;
}

/* ===== Lists ===== */
ul {
    list-style-type: disc;
    margin-left: 20px;
    margin-bottom: 8px;
}
li {
    margin-bottom: 4px;
}

/* ===== Links Show URLs ===== */
a {
    color: #000;
    text-decoration: none;
}
a:after {
    content: " (" attr(href) ")";
    font-size: 10pt;
}
