body {
  margin: 0;
  font-family: Georgia, serif;
  background-color: #f9f9f9;
  color: #333;
}

.container {
  width: 90%;
  max-width: 1000px;
  margin: 0 auto;
  padding: 20px;
}

header {
  background-color: #00274C; /* Deep university blue */
  color: white;
  padding: 20px 0;
  text-align: center;
  border-bottom: 4px solid #FFCB05; /* Subtle gold accent */
}

header .motto {
  font-style: italic;
  margin-top: 5px;
  font-size: 1.1em;
  color: #dbe9f4;
}

nav ul {
  list-style: none;
  padding: 0;
  margin: 15px 0 0;
  display: flex;
  justify-content: center;
  gap: 20px;
}

nav a {
  color: #FFCB05;
  text-decoration: none;
  font-weight: bold;
}

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

main section {
  background-color: white;
  padding: 30px;
  margin-top: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

footer {
  text-align: center;
  padding: 20px 0;
  margin-top: 40px;
  background-color: #f1f1f1;
  font-size: 0.9em;
  color: #333;
}
.hero img {
  width: 100%;
  height: auto;
  display: block;
  max-height: 500px;
  object-fit: cover;
  border-bottom: 4px solid #00274C;
}
.cookie-banner {
  display: none;
  position: fixed;
  bottom: 0;
  width: 100%;
  background-color: #00274C;
  color: white;
  padding: 15px;
  font-size: 0.9em;
  text-align: center;
  box-shadow: 0 -2px 6px rgba(0,0,0,0.2);
  z-index: 1000;
}

.cookie-banner button {
  margin-left: 15px;
  background-color: #FFCB05;
  color: #00274C;
  border: none;
  padding: 5px 10px;
  font-weight: bold;
  cursor: pointer;
  border-radius: 4px;
}

.cookie-banner button:hover {
  background-color: #e6b800;
}