body {
    margin: 0;
    padding: 0;
    background: #ffffff;
    font-family: Times New Roman, serif;
    color: #000;
}

/* PAGE CONTAINER */
.page {
    width: 900px;
    margin: 20px auto;
}

/* HEADER */
.header {
    width: 100%;
}

/* LOGO BAR */
.logo-bar {
    position: relative;
    width: 100%;
    padding: 0px 0;
}

.logo-bar img {
    height: 300px;
    width: auto;
    max-width: 100%;
    display: block;
    margin: 0 auto;
    transform: translateX(-30px); /* move left slightly */
}


/* UPDATED DATE BOX – ALIGNED BESIDE LOGO */
.update {
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    font-size: 12px;
    border: 1px solid #000;
    padding: 4px 6px;
    background: #ffffff;
    white-space: nowrap;
}

/* TOP NAV BAR */
.nav-bar {
    border-top: 3px solid #000;
    border-bottom: 3px solid #000;
    padding: 6px 0;
    text-align: center;
}

.nav-bar a {
    margin: 0 10px;
    text-decoration: none;
    font-size: 14px;
    color: #a00000;
}

/* CONTENT AREA */
.content {
    display: table;
    width: 100%;
    margin-top: 15px;
}

/* SIDEBAR */
.sidebar {
    display: table-cell;
    width: 220px;
    background: #e5f0a8;
    padding: 10px;
    vertical-align: top;
}

.sidebar h3 {
    margin-top: 0;
    font-size: 16px;
}

.side-button {
    display: block;
    margin: 6px 0;
    padding: 6px;
    text-decoration: none;
    color: #fff;
    font-size: 13px;
    text-align: center;
    background: linear-gradient(to bottom, #ffffff, #000000);
    border: 1px solid #000;
}

.sidebar-text {
    font-size: 13px;
    margin-top: 15px;
}

/* MAIN COLUMN */
.main {
    display: table-cell;
    padding: 0 20px;
    vertical-align: top;
}

.main h2 {
    font-size: 20px;
    color: #a00000;
}

.main p {
    font-size: 14px;
    line-height: 1.5;
}

/* IMAGE PLACEHOLDER */
.image-box {
    margin: 20px 0;
}

.image-placeholder {
    width: 220px;
    height: 120px;
    border: 1px solid #000;
    text-align: center;
    line-height: 120px;
    font-size: 12px;
    background: #f0f0f0;
}

/* FOOTER LINK */
.footer-link {
    margin-top: 30px;
}

.footer-link a {
    font-size: 13px;
    text-decoration: none;
    color: #003399;
}

.blog-entry h3 {
    margin-bottom: 4px;
    color: #000;
    font-size: 16px;
}

.blog-meta {
    font-size: 12px;
    color: #555;
    margin-top: 0;
}

hr {
    border: none;
    border-top: 1px solid #000;
    margin: 20px 0;
}

/* BLOG PAGE LOGO POSITIONING */
.blog-page .logo-bar img {
    margin: 0;
    margin-left: 40px; /* adjust: 20–60px */
}

