:root {
  --navy: #062b4f;
  --gold: #d9b24c;
  --text: #f5f1e8;
  --muted: rgba(245, 241, 232, 0.85);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  background: var(--navy);
  color: var(--text);
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 48px 24px;
}

.hero,
.content {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.logo {
  width: 180px;
  max-width: 70%;
  margin-bottom: 24px;
}

h1 {
  margin: 0 0 16px;
  font-size: 3rem;
  color: var(--gold);
  letter-spacing: 0.04em;
}

.subtitle {
  font-size: 1.2rem;
  line-height: 1.7;
  color: var(--muted);
  margin-bottom: 40px;
}

.content p {
  font-size: 1.08rem;
  line-height: 1.9;
  margin: 0 0 20px;
}
