body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fdf8f3;
    margin: 0;
    padding: 40px;
    font-size: 16px;
}

.container {
    display: flex;
    justify-content: space-between;
    max-width: 800px;
    margin: 0 auto;
    gap: 40px;
}

.main-content {
    flex: 1;
    max-width: 500px;
}

.nav {
    width: 200px;
    text-align: right;
}

.nav a {
    display: block;
    color: #333;
    text-decoration: underline;
    margin-bottom: 15px;
    transition: color 0.2s;
}

.nav a:hover {
    color: #666;
}

h1 {
    margin-top: 0;
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 20px;
}

h2 {
    font-size: 22px;
    font-weight: 600;
    margin-top: 40px;
    margin-bottom: 15px;
}

p {
    margin-bottom: 1.2em;
}

.main-image {
    max-width: 300px;
    height: auto;
    margin: 20px 0;
    display: block;
    border-radius: 4px;
}

a {
    color: #333;
    text-decoration: underline;
}

a:hover {
    color: #666;
}

.social-links {
    margin-top: 20px;
    display: flex;
    gap: 15px;
}

.social-links a {
    display: inline-block;
    width: 24px;
    height: 24px;
    text-decoration: none;
}

.social-links img {
    width: 100%;
    height: 100%;
    opacity: 0.7;
    transition: opacity 0.2s;
}

.social-links img:hover {
    opacity: 1;
}

.essay-link {
    display: block;
    margin-bottom: 1em;
}

.quote {
    margin-bottom: 2em;
}

.quote p {
    margin-bottom: 0.5em;
}

.quote .author {
    font-style: italic;
    color: #666;
}

.signature {
    margin-top: 40px;
    font-size: 16px;
    color: #666;
}

.signature a {
    color: #666;
    text-decoration: none;
}

.signature a:hover {
    text-decoration: underline;
}

.contact-section {
    margin-top: 40px;
    border-top: 1px solid #ddd;
    padding-top: 20px;
} 
