/* Global Styles */
body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  margin: 0;
  padding: 0;
  color: #333;
  background-color: #f9f9f9;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* Header Styles */
header {
  background: #007bff;
  color: #fff;
  padding: 20px 0;
  text-align: center;
}

header h1 {
  margin: 0;
  font-size: 2.5em;
}

header p {
  margin: 5px 0 0;
  font-size: 1.2em;
}

/* Navigation Styles */
nav {
  background: #333;
  padding: 10px 0;
}

nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: center;
}

nav ul li {
  display: inline;
  margin: 0 15px;
}

nav ul li a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
}

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

/* Main Content Styles */
main {
  flex: 1; /* Ensure main takes up available space */
  padding: 20px;
  background: #fff;
  margin: 20px auto;
  max-width: 800px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
}

main section {
  margin-bottom: 30px;
}

main h2 {
  color: #007bff;
  font-size: 1.8em;
  border-bottom: 2px solid #007bff;
  padding-bottom: 5px;
}

main p {
  margin: 10px 0;
}

main ol {
  margin: 10px 0 0 20px;
}

main ol li {
  margin: 10px 0;
}

main strong {
  color: #333;
}

/* Highlight Text */
.highlight {
  color: #007bff;
  font-weight: bold;
}

/* Footer Styles */
footer {
  text-align: center;
  padding: 10px 0;
  background: #333;
  color: #fff;
  margin-top: auto; /* Ensures footer stays at the bottom */
}
.sub-title{
	font-size: 24px;
	font-weight: bold;
}