/* Global Styles */
body {
  font-family: Arial, sans-serif;
  background-color: #f9f9f9; /* Soft White */
  color: #333333; /* Charcoal Black */
  margin: 0;
  padding: 0;
  font-size: large;
}

header, footer {
  background-color: #0b3d91; /* Deep Blue */
  color: #f9f9f9;
  padding: 20px;
  text-align: center;
}

nav a {
  color: #f9f9f9;
  margin: 0 15px;
  text-decoration: none;
  font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
  font-weight: bolder;
}

nav a:hover {
  background-color: #ffcc00; /* Golden Yellow */
  color: white;
}

h1, h2 {
  color: #0b3d91; /* Deep Blue */
}

.cta-button {
  background-color: #ffcc00; /* Golden Yellow */
  color: #0b3d91;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 5px;
}

.cta-button:hover {
  background-color: #228b22; /* Forest Green */
  color: #fff;
}

section {
  padding: 40px;
}

@media (max-width: 768px){
  /* Adjust styles for tables*/
}

@media (max-width: 480px){
  /* Adjust styles for phones*/ 
}
img {
  max-width: 100%;
  height: auto;
}