.site-header {
  text-align: center;
  padding: 40px 20px;
  border-bottom: 1px solid #ddd;
}

.site-header h1 {
  font-size: 32px;
  margin-bottom: 10px;
}

.site-header p {
  font-size: 16px;
  color: #555;
}

nav a {
  margin: 0 10px;
  text-decoration: none;
  color: blue;
}




body {
  background: #fafafa;
  font-family: Georgia, serif;
}

.site-header {
  text-align: center;
  padding: 50px 20px;
}

.site-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
  padding: 10px 20px;
}
/* Navigation links */
.site-nav a {
  margin-right: 20px;
  text-decoration: none;
  color: #0066cc;
  font-size: 0.95rem;
}

/* Search input */
.site-nav input[type="search"] {
  padding: 6px 8px;
  font-size: 0.9rem;
  border: 1px solid #ccc;
  border-radius: 3px;
  font-family: inherit;
}

/* Main content container */
.content {
  max-width: 720px;
  margin: 40px auto;
  padding: 0 20px;
}

/* Articles */
article {
  margin-bottom: 45px;
}

article h2 {
  margin-bottom: 6px;
  font-size: 1.4rem;
  font-weight: normal;
}

article h2 a {
  color: #0066cc;
  text-decoration: none;
}

article p {
  margin-top: 6px;
}

/* Meta text */
.meta {
  font-size: 0.85rem;
  color: #777;
  margin-bottom: 10px;
}

/* Footer */
.site-footer {
  text-align: center;
  padding: 30px 20px;
  font-size: 0.85rem;
  color: #777;
}
.content ul {
  margin-left: 20px;
}

.content ul li {
  margin-bottom: 10px;
}

/* ------------------------------
   About Page – Content Refinement
   (Safe to append at end)
-------------------------------- */

.content article {
  max-width: 800px;
  margin-bottom: 3rem;
}

.content article h2 {
  margin-top: 0;
  margin-bottom: 1rem;
  font-size: 1.6rem;
}

.content article p {
  line-height: 1.7;
  margin-bottom: 1rem;
}

.content article ul {
  margin: 1rem 0 1.5rem 1.2rem;
}

.content article ul li {
  margin-bottom: 0.6rem;
}

/* Improve readability on larger screens */
@media (min-width: 768px) {
  .content {
    padding-right: 1rem;
  }
}

