body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    background-color: #f4f4f4;
    color: #333;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.site-header {
    background-color: #fff;
    color: #333;
    padding: 10px 0;
    margin-bottom: 40px;
    border-bottom: 1px solid #eaeaea;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.site-header h1 {
    text-align: left;
    margin: 0;
    font-size: 2rem;
    font-weight: 700;
}

.nav-links {
    list-style: none;
    padding: 0;
    text-align: left;
    margin-top: 10px;
    display: flex;
    gap: 20px;
}

.nav-links li {
    display: inline-block;
}

.nav-links a {
    color: #333;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    padding: 8px 12px;
    border-radius: 0;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #007bff;
}

#search {
    display: block;
    margin: 20px auto;
    padding: 10px;
    width: 100%;
    max-width: 400px;
    border: 1px solid #ccc;
    border-radius: 0;
    font-size: 1rem;
}

.blog-post {
    background-color: #fff;
    padding: 20px;
    margin-bottom: 20px;
    border: 1px solid #eaeaea;
    border-radius: 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.blog-post img {
    width: 100%;
    max-height: 300px;
    object-fit: cover;
    border-radius: 0;
    margin-bottom: 15px;
}

.blog-post h2 {
    margin-top: 0;
    font-size: 1.5rem;
    font-weight: 700;
}

.post-meta {
    color: #555;
    font-size: 0.9rem;
}

.tags {
    color: #007bff;
}

.read-more {
    align-self: flex-start;
    color: #007bff;
    text-decoration: none;
    font-weight: 500;
    margin-top: auto;
}

.read-more:hover {
    text-decoration: underline;
}

.site-footer {
    background-color: #fff;
    color: #333;
    text-align: center;
    padding: 20px 0;
    margin-top: 40px;
    border-top: 1px solid #eaeaea;
}

.site-footer p {
    margin: 0;
    font-size: 0.9rem;
}
