* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: 'Georgia', 'Times New Roman', serif;
    line-height: 1.9;
    color: #444;
    background: linear-gradient(135deg, #f5f5f5 0%, #eeeeee 100%);
}
.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}
header {
    background: linear-gradient(to right, #2c3e50, #34495e);
    color: white;
    padding: 2rem 0;
}
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo {
    font-size: 2rem;
    font-weight: bold;
    font-family: 'Georgia', serif;
}
.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}
.nav-menu a {
    color: white;
    text-decoration: none;
    font-weight: 500;
}
.nav-menu a:hover {
    color: #bdc3c7;
}
main {
    min-height: calc(100vh - 200px);
    padding: 2rem 0;
}
footer {
    background-color: #2c3e50;
    color: white;
    text-align: center;
    padding: 2rem 0;
}
footer a {
    color: #bdc3c7;
}
h2 {
    color: #2c3e50;
    margin-bottom: 2rem;
    font-size: 2.2rem;
}
h4 {
    color: #34495e;
    font-size: 1.3rem;
    margin-bottom: 0.3rem;
}
.featured-essay {
    background: white;
    padding: 2rem;
    border-left: 5px solid #3498db;
    margin: 2rem 0;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}
.essay-card {
    background: white;
    padding: 1.8rem;
    margin: 1.5rem 0;
    border-radius: 4px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}
.essay-date {
    color: #7f8c8d;
    font-size: 0.9rem;
    display: block;
}
.read-link {
    color: #3498db;
    text-decoration: none;
    font-weight: 500;
}
.read-link:hover {
    text-decoration: underline;
}
.archive-section {
    background: white;
    padding: 1.5rem;
    margin: 1.5rem 0;
    border-radius: 4px;
}
.archive-section h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
}
.essay-list {
    list-style: none;
}
.essay-list li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #ecf0f1;
}
.essay-list li:last-child {
    border-bottom: none;
}
.essay-list a {
    color: #3498db;
    text-decoration: none;
}