body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333;
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
  background-color: #f9f9f9;
}

header {
  border-bottom: 2px solid #eaeaea;
  padding-bottom: 20px;
  margin-bottom: 40px;
}

/* Flex container aligning photo alongside title and links */
.header-content {
  display: flex;
  align-items: center;
  gap: 20px;
}

/* Profile Picture Formatting */
.profile-pic {
  width: 75px;
  height: 75px;
  max-width: 75px;
  max-height: 75px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.header-text h1 {
  margin: 0 0 10px 0;
}

nav {
  display: flex;
  gap: 15px;
  align-items: center;
}

nav a {
  text-decoration: none;
  color: #0066cc;
  font-weight: bold;
}

nav a:hover {
  text-decoration: underline;
}

.hero {
  background: #fff;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  margin-bottom: 40px;
}

.blog-section {
  background: #fff;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

footer {
  text-align: center;
  margin-top: 60px;
  color: #777;
  font-size: 0.9rem;
}

/* Responsive adjustments for mobile screens */
@media (max-width: 600px) {
  .header-content {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }

  nav {
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px 15px;
  }

  .header-text h1 {
    font-size: 1.75rem;
  }
}
