
:root {
  --brand: #0A1F44; /* navy */
  --accent: #C9A646; /* gold */
  --text: #333333;
  --bg: #ffffff;
}

body {
  margin: 0;
  font-family: 'Open Sans', Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

header {
  background: var(--brand);
  color: white;
  padding: 20px;
  text-align: center;
}

header h1 {
  margin: 0;
  font-family: 'Merriweather', serif;
}

nav {
  background: #122957;
  display: flex;
  justify-content: center;
}

nav a {
  color: white;
  padding: 14px 20px;
  text-decoration: none;
  font-weight: bold;
}

nav a:hover {
  background: var(--accent);
  color: var(--brand);
}

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

.hero {
  text-align: center;
  padding: 60px 20px;
  background: linear-gradient(rgba(10,31,68,0.85), rgba(10,31,68,0.85)), url('hero.jpg') no-repeat center/cover;
  color: white;
}

.hero h2 {
  font-size: 2em;
  margin-bottom: 20px;
}

.button {
  background: var(--accent);
  color: white;
  padding: 12px 24px;
  text-decoration: none;
  border-radius: 4px;
  font-weight: bold;
}

footer {
  text-align: center;
  padding: 20px;
  background: #f4f4f4;
  margin-top: 40px;
  font-size: 0.9em;
}
