* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: Georgia, 'Times New Roman', serif;
  background-image: url('images/sunset.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  min-height: 100vh;
  padding: 30px 15px 50px;
}

.wrapper {
  max-width: 860px;
  margin: 0 auto;
  background: rgba(255,255,255,0.96);
  border-radius: 4px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.45);
  overflow: hidden;
}

/* ---- Header ---- */
.site-header {
  background: #1a3a5c;
  color: #fff;
  text-align: center;
  padding: 22px 20px 14px;
}
.site-title {
  font-size: 2.4em;
  font-weight: bold;
  letter-spacing: 1px;
  color: #f5c842;
  text-shadow: 1px 2px 4px rgba(0,0,0,0.5);
}
.site-tagline {
  font-style: italic;
  font-size: 0.95em;
  color: #ddeeff;
  margin-top: 6px;
  line-height: 1.4;
}

/* ---- Nav ---- */
nav {
  background: #224d7a;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
}
nav a {
  color: #fff;
  text-decoration: none;
  padding: 11px 22px;
  font-size: 0.97em;
  font-family: Arial, sans-serif;
  font-weight: bold;
  letter-spacing: 0.5px;
  transition: background 0.2s;
  text-transform: uppercase;
}
nav a:hover, nav a.active {
  background: #f5c842;
  color: #1a3a5c;
}

/* ---- Page image ---- */
.page-image {
  width: 100%;
  max-height: 360px;
  object-fit: cover;
  display: block;
}

/* ---- Content ---- */
.content {
  padding: 28px 36px 36px;
  line-height: 1.75;
  color: #222;
  font-size: 1.02em;
}
.content h1 {
  font-size: 1.6em;
  color: #1a3a5c;
  margin-bottom: 14px;
  border-bottom: 2px solid #f5c842;
  padding-bottom: 6px;
}
.content h2 {
  font-size: 1.25em;
  color: #1a3a5c;
  margin: 20px 0 8px;
}
.content p {
  margin-bottom: 14px;
}
.content ul {
  margin: 0 0 14px 24px;
}
.content li {
  margin-bottom: 6px;
}

/* ---- Footer ---- */
footer {
  background: #1a3a5c;
  color: #cde;
  text-align: center;
  padding: 14px 10px;
  font-size: 0.88em;
  font-family: Arial, sans-serif;
}
