body {
    font-family: Garamond, 'EB Garamond', serif;
    line-height: 1.4;
    padding: 10px;
    color: #333;
    font-size: 1.1rem;
}

.main, .header, .footer {
    max-width: 800px;
    margin: 0 auto;
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer {
    margin-top: 10px;
    margin-bottom: 10px;
}

.logo {
    width: 120px;
    height: 40px;
}

.nav {
    display: flex;
    gap: 20px;
}

.nav a {
    color: #6D28D9;
    text-decoration: none;
    font-weight: bold;
}

p {
    margin-bottom: 1em;
}

.contact {
    color: #6D28D9;
    text-decoration: none;
}

.blog-post {
    margin-bottom: 30px;
    border-bottom: 1px solid #eee;
}

.blog-post h2 {
    color: #6D28D9;
    margin-bottom: 10px;
}

.blog-post a {
    color: #6D28D9;
    text-decoration: none;
}

.blog-post a:hover {
    text-decoration: underline;
}

.date {
    color: #666;
    font-size: 0.9em;
    margin-bottom: 10px;
}

@media (max-width: 600px) {
    .header {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}