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

body {
  font-family: "Segoe UI", sans-serif;
  background-color: #f4f6fa;
  color: #222;
  line-height: 1.6;
}

header {
  background-color: #ffffff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  padding: 15px 40px;
}

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

.logo img {
  height: 50px;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
}

.nav-links li a {
  text-decoration: none;
  color: #1e3a8a;
  font-weight: 500;
  transition: 0.3s;
}

.nav-links li a:hover,
.nav-links li a.active {
  color: #1e88e5;
}

.container {
  max-width: 1000px;
  margin: 40px auto;
  padding: 20px;
  background-color: #f4f6fa;
}

h1 {
  color: #1e3a8a;
  font-size: 26px;
  margin-bottom: 25px;
}

h2 {
  color: #1e3a8a;
  font-size: 22px;
  margin-top: 30px;
  margin-bottom: 15px;
}

ul {
  margin: 10px 0 20px 25px;
}

pre {
  background-color: #e7ecf7;
  padding: 12px;
  border-radius: 6px;
  overflow-x: auto;
  font-family: monospace;
  margin-bottom: 20px;
}

.image-placeholder {
  text-align: center;
  margin: 20px 0;
}

.image-placeholder img {
  max-width: 600px;
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
  margin-top: 10px;
}

footer {
  background-color: #1e3a8a;
  color: white;
  text-align: center;
  padding: 15px;
  margin-top: 40px;
}
