body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  background: #f4f6f8;
  color: #222;
}

/* NAVBAR */

.navbar {
  background: white;
  border-bottom: 1px solid #e5e7eb;
}

.nav-container {
  max-width: 1100px;
  margin: auto;
  padding: 14px 20px;

  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* LOGO */

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 20px;
}

.logo img {
  height: 84px;
}

/* NAV LINKS */

.nav-links a {
  margin-left: 20px;
  text-decoration: none;
  color: #444;
  font-weight: 500;
}

.nav-links a:hover {
  color: #1a73e8;
}

/* CONTENT */

.container {
  max-width: 900px;
  margin: 60px auto;
  padding: 0 20px;
  background: white;
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.04);
}

h1,h2,h3 {
  margin-top: 0;
}

ul {
  line-height: 1.7;
}

/* FOOTER */

.footer {
  text-align: center;
  margin: 60px 0 20px 0;
  color: #777;
  font-size: 14px;
}