/* Global Styles */
body {
  font-family: 'Arial', sans-serif;
  margin: 0;
  padding: 0;
  line-height: 1.6; /* Improved line spacing for readability */
  color: #333; /* Slightly darker text for better contrast */
  background-color: #fafafa; /* Light background to reduce strain on the eyes */
}

/* Navbar */
.navbar {
  background: #f9f9f9;
  border-bottom: 1px solid #ddd;
  box-shadow: 0 2px 2px #eee;
  padding: 1em; /* Added padding for better spacing */
}

/* Section Styling */
.section {
  padding: 3em 2em;
  max-width: 800px; /* Limit content width for better readability */
  margin: 0 auto; /* Center the content */
  background-color: #fff; /* White background for the content */
  border-radius: 8px; /* Add subtle rounded corners */
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
}

/* Typography */
.title {
  font-size: 2.5rem;
  font-weight: bold;
  color: #222;
  margin-bottom: 1.5em;
  text-align: center; /* Center the main title */
}

h2 {
  font-size: 2rem;
  color: #444;
  margin-top: 1.5em;
  margin-bottom: 1em;
}

h3 {
  font-size: 1.8rem;
  color: #555;
  margin-top: 1.5em;
  margin-bottom: 0.5em;
}

p {
  font-size: 1rem;
  color: #444;
  margin-bottom: 1.5em;
}

/* Lists */
ul {
  font-size: 1rem;
  color: #444;
  margin-left: 1.5em; /* Slight indentation for lists */
  margin-bottom: 2em; /* Space below lists */
}

ul li {
  margin-bottom: 0.8em; /* Add space between list items */
}

/* Media Query for Mobile Devices */
@media (max-width: 768px) {
  .section {
      padding: 2em 1em; /* Reduce padding for smaller screens */
  }

  h2 {
      font-size: 1.8rem; /* Adjust font size for headers on smaller screens */
  }

  h3 {
      font-size: 1.6rem;
  }

  p,
  ul {
      font-size: 0.9rem; /* Slightly smaller text for better mobile readability */
  }
}
