:root {
  --navy: #061f49;
  --gold: #c99a2e;
  --text: #162033;
  --bg: #f7f8fb;
  --white: #ffffff;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: var(--bg);
  color: var(--text);
  display: flex;
  min-height: 100vh;
}

.sidebar {
  width: 230px;
  background: var(--navy);
  color: white;
  padding: 32px 24px;
  position: fixed;
  height: 100vh;
  left: 0;
  top: 0;
  border-right: 6px solid var(--gold);
}

.brand-mark {
  width: 54px;
  height: 54px;
  border: 2px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 48px;
  letter-spacing: 2px;
}

nav a {
  display: block;
  color: white;
  text-decoration: none;
  margin: 22px 0;
  font-size: 16px;
  letter-spacing: 0.5px;
}

nav a:hover { color: var(--gold); }

.page {
  margin-left: 230px;
  width: calc(100% - 230px);
  padding: 42px;
}

.hero {
  background: var(--white);
  min-height: 280px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 35px rgba(6,31,73,0.08);
  margin-bottom: 28px;
  border-top: 5px solid var(--gold);
}

.logo-box { text-align: center; }

.logo-box h1 {
  margin: 0;
  font-size: 72px;
  letter-spacing: 12px;
  color: var(--navy);
  font-weight: 800;
}

.subtitle {
  color: var(--gold);
  letter-spacing: 5px;
  font-size: 20px;
  margin: 10px 0 24px;
  font-weight: 600;
}

.tagline {
  color: var(--navy);
  letter-spacing: 6px;
  text-transform: uppercase;
  font-size: 14px;
}

.section {
  background: var(--white);
  padding: 34px 42px;
  border-radius: 18px;
  margin-bottom: 24px;
  box-shadow: 0 8px 25px rgba(6,31,73,0.06);
}

.section h2 {
  margin-top: 0;
  color: var(--navy);
  font-size: 28px;
  position: relative;
  padding-bottom: 12px;
}

.section h2::after {
  content: "";
  width: 70px;
  height: 4px;
  background: var(--gold);
  position: absolute;
  left: 0;
  bottom: 0;
}

.section p {
  font-size: 17px;
  line-height: 1.7;
  color: #263243;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.card {
  border: 1px solid rgba(201,154,46,0.45);
  padding: 18px;
  border-radius: 12px;
  color: var(--navy);
  font-weight: 700;
  background: #fffdf8;
}

.contact a {
  color: var(--navy);
  text-decoration: none;
}

@media (max-width: 800px) {
  body { display: block; }
  .sidebar {
    position: relative;
    width: 100%;
    height: auto;
    border-right: none;
    border-bottom: 5px solid var(--gold);
  }
  nav a {
    display: inline-block;
    margin: 10px 14px 0 0;
  }
  .page {
    margin-left: 0;
    width: 100%;
    padding: 20px;
  }
  .logo-box h1 {
    font-size: 46px;
    letter-spacing: 6px;
  }
  .cards { grid-template-columns: 1fr; }
}
