body {
    background-color: #FEFFDB;
    font-family: Helvetica, Arial, sans-serif;
    min-height: 100vh;
    margin: 2rem;
    display: flex;
    flex-direction: column;
}

.site-wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main {
    flex: 1 0 auto;
}

footer {
    flex-shrink: 0;
}
a:link {
    color: #6633CC; /* Unvisited link color */
}
a:visited {
    color: #6633CC; /* Visited link color */
}

.main-nav {
    display: flex;
    gap: 1rem;
    justify-content: flex-start;
    align-items: center;
    padding: 1rem 0;
}
.main-nav a {
    text-decoration: none;
    font-weight: bold;
    color: #3333cc;
    font-size: 1.1rem;
    transition: color 0.2s;
}
.main-nav a:hover {
    color: #000066;
}

.header-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0 1.5rem 0;
}
.site-title h1 {
    margin: 0;
    font-size: 3rem;
    font-weight: 900;
    color: #000066;
}
.site-title a {
    color: #000066;
    text-decoration: none;
}

.page-title-bar {
    text-align: left;
    padding: 0 0 1.5rem 0;
}
.page-title {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 700;
    color: #000066;
}
.footer-text {
    text-align: center;
    font-size: 0.9rem;
    color: #666666;
    margin: 0.5rem 0;
}
