/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f5f5f5;
}

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

/* Header styles */
.site-header {
    background-color: #2c3e50;
    color: white;
    padding: 20px 0;
}

.site-header h1 {
    margin-bottom: 10px;
}

.main-nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

.main-nav a {
    color: white;
    text-decoration: none;
    padding: 5px 10px;
    border-radius: 3px;
    transition: background-color 0.3s;
}

.main-nav a:hover {
    background-color: #34495e;
}

/* Two column layout */
.two-column-layout {
    display: flex;
    gap: 30px;
    margin: 30px 0;
}

.main-content {
    flex: 2;
    background: white;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.sidebar {
    flex: 1;
}

.widget {
    background: white;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.widget h3 {
    margin-bottom: 15px;
    color: #2c3e50;
}

.widget ul {
    list-style: none;
}

.widget li {
    margin-bottom: 8px;
}

.widget a {
    color: #3498db;
    text-decoration: none;
}

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

/* Post styles */
.post {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.post h3 {
    margin-bottom: 10px;
    color: #2c3e50;
}

.post p {
    margin-bottom: 15px;
}

.post a {
    color: #3498db;
    text-decoration: none;
}

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

/* Footer styles */
.site-footer {
    background-color: #2c3e50;
    color: white;
    padding: 20px 0;
    text-align: center;
    margin-top: 30px;
}

/* Responsive design */
@media (max-width: 768px) {
    .two-column-layout {
        flex-direction: column;
    }
    
    .main-nav ul {
        flex-direction: column;
        gap: 10px;
    }
}