/* General styles */
body {
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f8f9fa;
  margin: 0;
}

.container {
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
}

/* Header */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  border-bottom: 1px solid #eee;
}

.header h1 {
  font-size: 24px;
  font-weight: 600;
  margin: 0;
}

.nav a {
  text-decoration: none;
  color: #555;
  margin-left: 20px;
  font-weight: 500;
  transition: color 0.3s ease;
}

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

/* Profile section */
.profile {
  text-align: center;
  padding: 60px 0;
}

.profile img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 20px;
}

.profile h2 {
  font-size: 32px;
  font-weight: 600;
  margin: 0;
}

.profile p {
  font-size: 18px;
  color: #555;
  max-width: 600px;
  margin: 20px auto 0;
}

/* Blog posts */
.blog-posts {
  padding: 40px 0;
}

.blog-posts h2 {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 30px;
  text-align: center;
}

.post {
  background-color: #fff;
  border: 1px solid #eee;
  border-radius: 8px;
  padding: 30px;
  margin-bottom: 30px;
  transition: box-shadow 0.3s ease;
}

.post:hover {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
}

.post h3 {
  font-size: 22px;
  font-weight: 600;
  margin: 0 0 10px;
}

.post p {
  color: #555;
  margin: 0 0 20px;
}

.post .read-more {
  text-decoration: none;
  color: #007bff;
  font-weight: 500;
}

.post .post-meta {
  font-size: 14px;
  color: #777;
}

/* Footer */
.footer {
  text-align: center;
  padding: 20px 0;
  border-top: 1px solid #eee;
  color: #777;
}