/* General Reset */
body {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f9f9f9;
}

/* Header Section */
.header {
  background: #0056b3;
  color: white;
  text-align: center;
  padding: 20px 0;
}

.header .meta {
  font-size: 14px;
  color: #d9d9d9;
  margin-top: 5px;
}

/* Main Content Container */
.content-container {
  display: flex;
  justify-content: space-between;
  padding: 20px;
  max-width: 1200px;
  margin: auto;
  gap: 20px;
}

/* Main Content */
.main-content {
  flex: 3;
  background: white;
  padding: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
}

.main-content img.blog-image {
  width: 100%;
  border-radius: 8px;
  margin-bottom: 20px;
}

.main-content h2 {
  color: #0056b3;
  margin-top: 20px;
}

blockquote {
  margin: 20px 0;
  padding: 15px;
  background: #f1f1f1;
  border-left: 4px solid #0056b3;
  font-style: italic;
  color: #555;
}

/* Sidebar */
.sidebar {
  flex: 1;
  background: white;
  padding: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
}

.sidebar h2 {
  margin-bottom: 15px;
  color: #0056b3;
}

.sidebar .recent-posts {
  list-style: none;
  padding: 0;
}

.sidebar .recent-posts li {
  margin-bottom: 10px;
}

.sidebar .recent-posts a {
  text-decoration: none;
  color: #333;
}

.sidebar .recent-posts a:hover {
  color: #0056b3;
}

/* Footer */
.footer {
  text-align: center;
  background: #333;
  color: white;
  padding: 10px 0;
  font-size: 14px;
}
