/* --- General Body and Typography --- */
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.6;
  background-color: #f4f4f9; /* A soft, light gray background */
  color: #333; /* Dark gray for readable text */
  max-width: 800px; /* A slightly wider content area */
  margin: 2rem auto; /* Center the layout on the page */
  padding: 0 1rem;
}

/* --- Header and Main Title --- */
header {
  text-align: center; /* Center the title and subtitle */
  padding: 2rem 0;
  border-bottom: 1px solid #ddd; /* A subtle line to separate header from nav */
  margin-bottom: 2rem;
}

h1 {
  font-size: 3rem;
  margin-bottom: 0.5rem;
  color: #2c3e50; /* A deep, professional blue */
}

/* --- Navigation Bar --- */
nav {
  display: flex; /* Use Flexbox to easily manage link layout */
  justify-content: center; /* Center the links horizontally */
  gap: 1rem; /* Add space between the navigation links */
  margin-bottom: 2rem;
}

nav a {
  text-decoration: none; /* Remove the default underline */
  color: #2c3e50;
  background-color: #ffffff; /* Give links a solid background */
  padding: 0.75rem 1.5rem; /* Make them look like buttons */
  border-radius: 8px; /* Give them rounded corners */
  box-shadow: 0 2px 4px rgba(0,0,0,0.1); /* Add a subtle shadow for depth */
  font-weight: 500;
  transition: all 0.2s ease-in-out; /* Smooth transition for hover effects */
}

/* Style for when you hover over a navigation link */
nav a:hover {
  background-color: #2980b9; /* A nice blue for the hover effect */
  color: #ffffff; /* White text on hover */
  transform: translateY(-2px); /* Lift the button slightly */
  box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

/* --- Main Content Area --- */
main {
  background-color: #ffffff;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

/* --- General Link Styling (for links not in the nav) --- */
a {
  color: #2980b9;
}

a:hover {
  text-decoration: underline;
}/* --- Content & Article Styling --- */
main h2 {
  margin-top: 0; /* Remove default top margin from the first heading */
  border-bottom: 2px solid #eee;
  padding-bottom: 0.5rem;
  margin-bottom: 1.5rem;
}

main h3 {
  color: #34495e; /* A slightly softer blue-gray for subheadings */
  margin-bottom: 0.5rem;
}

main p {
  margin-bottom: 1.25rem; /* Add consistent spacing between paragraphs */
}

main ul {
  padding-left: 20px; /* Indent the list */
  margin-bottom: 1.25rem;
}

main li {
  margin-bottom: 0.5rem; /* Add spacing between list items */
}
/* --- Social Media Icon Links --- */
.social-links {
  text-align: center; /* Center the icons within the main content box */
  margin-top: 2rem;
}

.social-links a {
  text-decoration: none; /* Remove underline from the icon links */
  color: #34495e; /* A nice, neutral dark blue-gray */
  font-size: 2.5rem; /* Make the icons larger */
  margin: 0 1rem; /* Add some space between the icons */
  transition: color 0.2s ease-in-out; /* Smooth color transition on hover */
}

/* Change icon color when you hover over it */
.social-links a:hover {
  color: #2980b9; /* The primary blue color from your theme */
}