body {
  margin: 0;
  font-family: Arial, sans-serif;
}

header {
  display: flex;
  align-items: center;
  padding: 10px 20px;
  background-color: #4169E1; /* Royal blue */
  border-bottom: 1px solid #99c2ff;
}

.spacer {
  width: 40px; /* adjust as needed */
}

.logo {
  flex-shrink: 0;
}

.logo img {
  height: 50px;
}

.menu {
  flex: 1;
  display: flex;
  justify-content: center;
  gap: 15px;
}

.menu a {
  text-decoration: none;
  color: white;
  font-size: 12px; /* adjust as needed */
  font-weight: bold;
  padding: 5px 10px;
  transition: color 0.3s ease;
}

.menu a:hover {
  color: #003366; /* Dark blue on hover */
}

/* Centered content */
.container {
  max-width: 960px;
  margin: 40px auto;
  padding: 0 20px;
}

h2 {
  color: #0056b3; /* Replace with any hex, RGB, or named color */
}
footer {
  background-color: #000080; /* Navy */
  color: white;
  padding: 40px 20px;
}

.footer-container {
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  text-align: center;
}

.footer-section {
  flex: 1;
  min-width: 250px;
  margin: 10px;
}

.footer-section h3 {
  margin-bottom: 10px;
}

.footer-section a {
  color: white;
  text-decoration: none;
}

.footer-section a:hover {
  text-decoration: underline;
}

.button-row {
  display: flex;
  justify-content: center; /* centers the buttons */
  gap: 15px;
  margin-top: 20px;
  flex-wrap: wrap; /* ensures it works on smaller screens */
}

.btn {
  display: inline-block;
  padding: 10px 20px;
  background-color: #007BFF;
  color: white;
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.btn:hover {
  background-color: #0056b3;
}

.centered-image {
  display: block;
  margin: 0 auto;
  width: 50%; /* or whatever size you want */
  height: auto;
}