body {
  font-family: sans-serif; /* A clean, modern sans-serif font */
  margin: 0; /* Remove default browser margins */
  padding: 0; /* Remove default browser padding */
  background-color: #f4f4f4; /* A light gray background */
  color: #333; /* Dark gray text for good readability */
  line-height: 1.6; /* Improves text readability */
  display: flex; /* Enable flexbox for overall layout */
  flex-direction: column; /* Stack elements vertically */
  align-items: center; /* Center content horizontally */
  min-height: 100vh; /* Ensure the body takes up at least the full viewport height */
}

.banner {
  background-color: #ddd; /* A light gray for the banner area */
  width: 100%;
  padding: 20px 0;
  text-align: center;
  /* You can add background images or more styling here later */
}

.content {
  max-width: 600px; /* Limit the width of the main content for readability on larger screens */
  width: 90%; /* Take up 90% of the screen width on smaller screens */
  padding: 20px;
  background-color: #fff; /* White background for the content area */
  border-radius: 8px; /* Slightly rounded corners for a softer look */
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
  margin-top: 20px;
  margin-bottom: 20px;
}

.contact-download a {
  display: block; /* Make the link take up the full width of its container */
  background-color: #007bff; /* A common blue for call-to-action buttons */
  color: white;
  text-align: center;
  padding: 15px 20px;
  text-decoration: none; /* Remove the default underline */
  border-radius: 5px;
  font-size: 1.2em; /* Slightly larger font size for emphasis */
  margin-bottom: 20px;
}

.contact-download a:hover {
  background-color: #0056b3; /* Darker shade of blue on hover for feedback */
}

.personal-info h1 {
  font-size: 2em;
  margin-top: 0; /* Remove default top margin for the heading */
  margin-bottom: 10px;
  text-align: center;
}

.personal-info p {
  margin-bottom: 10px;
}

.personal-info a {
  color: #007bff;
  text-decoration: none;
}

.personal-info a:hover {
  text-decoration: underline;
}

.links {
  margin-top: 20px;
  text-align: center;
}

.links p {
  margin-bottom: 10px;
}

.links a {
  color: #007bff;
  text-decoration: none;
}

.links a:hover {
  text-decoration: underline;
}

footer {
  text-align: center;
  padding: 10px 0;
  color: #777;
  font-size: 0.9em;
  margin-top: 20px;
}

/* Basic responsive adjustments for smaller screens */
@media (max-width: 600px) {
  .content {
    width: 95%;
    padding: 15px;
  }

  .contact-download a {
    font-size: 1.1em;
    padding: 12px 15px;
  }

  .personal-info h1 {
    font-size: 1.8em;
  }
}
