/* === Global Reset === */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  font-family: 'Ariel', sans-serif;
  background-color: #fdfaf5;
  color: #2d2d2d;
  line-height: 1.6;
}




.site-header {
  background-color: #ffffff;
  width: 100%;
  padding: 20px 0;
  border-bottom: 1px solid #eaeaea;
}

/* Override header and logo positioning */
.navbar {
  background-color: #ffffff !important;
}
.navbar .nav-links {
  margin-left: 0;
}
.navbar .logo {
  margin-left: auto;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.nav-bar {
  max-width: 1100px;
  margin: 0 auto;
  padding: 20px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

nav .logo {
  font-size: 32px;
  font-weight: 800;
  color: #0e2a47;
  white-space: nowrap; /* ✅ prevent breaking the logo text */
}

.nav-links {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 20px;
  flex-wrap: wrap; /* ✅ allows menu items to wrap *within* their section if space runs out */
}

.nav-links li a {
  text-decoration: none;
  color: #0e2a47;
  font-weight: 600;
  font-size: 16px;
}

.nav-links a:hover {
  color: #014f86;
  text-decoration: underline;
}


.site-footer {
  width: 100%;
  background-color: #0e2a47;
  color: white;
  padding: 20px 0;
  text-align: center;
  border-top: 1px solid #eaeaea;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

.container {
  max-width: 1100px;
  margin: auto;
  padding: 20px;
}

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