<style>
    /* --- BASE TYPOGRAPHY & COLORS --- */
    body {
        font-family: 'Verdana', 'Segoe UI', Tahoma, sans-serif;
        color: #333333;
        line-height: 1.6;
        margin: 0;
        padding: 2% 2% 5% 1%;
        background-color: #fbfbfb;
    }

    /* Force old <font> tags to inherit modern sizing */
    font {
        font-family: inherit !important;
        font-size: 16px !important;
    }

    /* Clean up links */
    a {
        color: #4E8B34;
        text-decoration: none;
        transition: color 0.2s ease;
    }
    
    a:hover {
        color: #2e541e;
        text-decoration: underline;
    }

    /* --- RESPONSIVE IMAGES & MODERN TOUCHES --- */
    img {
        max-width: 100%;
        height: auto;
    }

    /* Modernize the green side navigation */
    table[bgcolor="4E8B34"] {
        border-radius: 8px;
        overflow: hidden;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        margin-bottom: 20px;
    }

    /* Modernize the right-aligned image */
    img[src="1.jpg"] {
        border-radius: 8px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
        margin: 10px 0 20px 20px;
    }

    /* Replace the old 90s horizontal rule image with a clean CSS border */
    img[src="hr.gif"] {
        display: none;
    }
    img[src="bjlogo.jpg"] {
        display: block;
        margin-bottom: 20px;
        border-bottom: 3px solid #4E8B34;
        padding-bottom: 15px;
        width: 100%;
        max-width: 374px; /* Keeps logo from getting too big */
    }

    /* --- MOBILE THOUGHTFULNESS --- */
    @media (max-width: 768px) {
        body {
            padding: 15px;
        }

        /* Force the main layout table to stack its cells vertically */
        body > table,
        body > table > tbody,
        body > table > tbody > tr,
        body > table > tbody > tr > td {
            display: block;
            width: 100%;
            box-sizing: border-box;
        }

        /* Center the sidebar content on small screens */
        td[valign="middle"] {
            text-align: center;
            margin-bottom: 30px;
        }

        /* Center the navigation table */
        td[valign="middle"] > table {
            margin: 0 auto 20px auto;
        }

        /* Un-float the content image and center it so text doesn't squish */
        img[src="1.jpg"] {
            float: none !important;
            display: block;
            margin: 20px auto;
        }
    }
</style>