body {
  font-family: 'Poppins', sans-serif;
  margin: 0;
  color: #000000;
  line-height: 1.7;
}

.container {
  width: 90%;
  max-width: 1100px;
  margin: auto;
}

.narrow {
  max-width: 760px;
}

/* NAVBAR */
.navbar {
  background: #0b132b;
  padding: 18px 0;
}

.nav-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand {
  display: flex;
  flex-direction: column;
}

.logo {
  color: #ffffff;
  font-size: 22px;
  font-weight: 600;
  text-decoration: none;
}

.slogan {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 14px;
  color: #ffffff;
  opacity: 0.9;
}

nav a {
  color: #e5e7eb;
  margin-left: 24px;
  text-decoration: none;
}

/* SECTIONS */
.section {
  padding: 80px 0;
}

.section.light {
  background: #f5f7fb;
}

/* HEADINGS */
h1, h2 {
  font-weight: 600;
}

.blue {
  color: #2563eb;
}

.purpose {
  margin-top: 20px;
  font-size: 18px;
}

/* LISTS */
ul {
  margin-top: 25px;
  padding-left: 18px;
}

li {
  margin-bottom: 14px;
}

/* CONTACT */
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 14px;
  border: 1px solid #cbd5e1;
}

.contact-form button {
  background: #2563eb;
  color: #ffffff;
  padding: 10px 18px;
  border: none;
  cursor: pointer;
}

/* FOOTER */
footer {
  background: #0b132b;
  color: #cbd5e1;
  text-align: center;
  padding: 22px 0;
}

/* FORCE NAVBAR SLOGAN COLOR */
.navbar .slogan {
  color: #ffffff !important;
  opacity: 1 !important;
}

.slogan {
  display: block;
}