/* The Basics */
        body {
            background-color: #FFFFFF; /* Pure White */
            color: #000000;
            font-family: "Times New Roman", Times, serif;
            margin: 0;
            padding: 0;
        }

        /* This container mimics the old "Table Layouts" of 2000.
           It keeps everything centered and roughly 800px wide.x
        */
        .main-container {
            width: 800px;
            margin: 0 auto;
            border-left: 1px solid #CCCCCC;
            border-right: 1px solid #CCCCCC;
            min-height: 100vh; /* Full height */
	    display: flex;
	    flex-direction: column;
        }

        /* Header Area */
        header {
            background-color: #333333; /* Dark header for contrast */
            color: #FFFFFF;
            padding: 20px;
            border-bottom: 4px solid #000000;
        }

        h1 {
            margin: 0;
            font-size: 28px;
            letter-spacing: 2px;
        }

        .tagline {
            font-size: 14px;
            color: #DDDDDD;
        }

        /* The Layout: Sidebar (Left) + Content (Right) */
        .layout-wrapper {
            display: flex; /* Modern CSS, but mimics the old <table> look */
	    flex: 1;
        }

        /* Left Sidebar Styling */
        .sidebar {
            width: 180px;
            background-color: #F0F0F0; /* Light grey sidebar */
            padding: 15px;
            border-right: 1px solid #999999;
            font-size: 14px;
        }

        .sidebar ul {
            list-style-type: square; /* Square bullets were popular */
            padding-left: 20px;
        }

        .sidebar li {
            margin-bottom: 8px;
        }

        /* Main Content Styling */
        .content {
            flex: 1; /* Takes up the rest of the width */
            padding: 20px 30px;
        }

        h2 {
            border-bottom: 1px solid #000000;
            padding-bottom: 5px;
            font-size: 20px;
            margin-top: 0;
        }

        /* Classic Date Styling for "News" */
        .date {
            font-weight: bold;
            color: #555555;
            font-size: 12px;
        }

        /* Links: Standard Blue, but no underline until hover (very 2000s) */
        a {
            color: #0000CC;
            text-decoration: none;
        }
        a:hover {
            text-decoration: underline;
            color: #FF0000;
        }

        footer {
            text-align: center;
            font-size: 11px;
            border-top: 1px solid #CCCCCC;
            background-color: #FFFFFF;
            padding: 10px;
            margin-top: 0;
            color: #666666;
        }