/* General Styles */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f0f0f0; /* Greyish white background for the entire page */
}

header {
  background-color: #f0f0f0;
  color: #007bff;
  text-align: center;
  padding: 20px 0 20px;
}

nav {
  background-color: #f0f0f0;
  text-align: center;
  position: fixed;
  width: 100%;
  top: 0;
}

nav ul {
  list-style-type: none;
  padding: 0;
}

nav ul li {
  display: inline;
  margin-right: 20px;
}

nav ul li a {
  text-decoration: none;
  color: white;
  font-weight: bold;
  font-size: 16px;
  transition: color 0.3s ease;
}

nav ul li a:hover {
  color: #0056b3;
}

/* Footer Styles */
footer {
  background-color: #f0f0f0;
  color: #007bff;
  text-align: center;
  font-size: 10px;
}

/* Page-Specific Styles */
section {
  background-color: #f0f0f0;
  text-align: center;
  padding: 0px 0 20px;
}

/* Additional Styles (You can customize these) */
h1 {
  font-size: 28px;
}
h4 {
  background-color: #f0f0f0;
  color: #007bff;
  text-align: center;
  padding: 80px 0 20px;
}

ul {
  list-style-type: disc;
}

li {
  margin-bottom: 10px;
}

/* Back Button Style */
nav a {
  background-color: #0056b3;
  color: white;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease;
  top: 0;
}

nav a:hover {
  background-color: #007bff;
}
