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

body {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: #333;
  background-color: #fff;
  line-height: 1.6;
}

/* Header */
header {
  background-color: #1b2a4a;
  padding: 20px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

header .logo {
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 1px;
  text-decoration: none;
}

header .logo span {
  font-weight: 300;
  color: #a0aec0;
  margin-left: 6px;
}

nav {
  display: flex;
  gap: 32px;
}

nav a {
  color: #c5cdd8;
  text-decoration: none;
  font-size: 14px;
  letter-spacing: 0.5px;
}

nav a:hover,
nav a.active {
  color: #fff;
}

/* Main content */
main {
  max-width: 780px;
  margin: 0 auto;
  padding: 60px 24px 80px;
}

h1 {
  font-size: 26px;
  font-weight: 600;
  color: #1b2a4a;
  margin-bottom: 24px;
}

h2 {
  font-size: 18px;
  font-weight: 600;
  color: #1b2a4a;
  margin-bottom: 8px;
}

p {
  font-size: 15px;
  color: #4a5568;
  margin-bottom: 16px;
}

/* Services list */
.services-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-top: 8px;
}

.services-list li {
  border-left: 3px solid #1b2a4a;
  padding-left: 20px;
}

.services-list li p {
  margin-bottom: 0;
}

/* Contact info */
.contact-info {
  margin-top: 8px;
}

.contact-info dt {
  font-size: 13px;
  font-weight: 600;
  color: #1b2a4a;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 20px;
}

.contact-info dd {
  font-size: 15px;
  color: #4a5568;
  margin-top: 4px;
}

/* Divider */
hr {
  border: none;
  border-top: 1px solid #e2e8f0;
  margin: 40px 0;
}

/* Footer */
footer {
  text-align: center;
  padding: 24px;
  font-size: 13px;
  color: #a0aec0;
  border-top: 1px solid #e2e8f0;
}
