* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #f9f9f9;
  color: #222;
  line-height: 1.6;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 20px;
}

/* NAVIGATION BAR */
.navbar {
  background-color: #002855; /* Dark blue */
  padding: 15px 0;
}

.nav-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
}

.nav-links li a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  font-size: 16px;
}

.menu-button {
  background-color: #4CAF50; /* Green */
  color: white;
  padding: 10px 20px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
}

.menu-button:hover {
  background-color: #388e3c; /* Darker green */
}

/* HEADER */
.header {
  background-color: #002855; /* Dark blue */
  color: white;
  padding: 60px 20px;
  text-align: center;
}

.header h1 {
  font-size: 32px;
  margin-bottom: 10px;
}

.header p {
  font-size: 18px;
}

/* MAIN CONTENT */
h2 {
  font-size: 24px;
  margin-top: 30px;
  color: #002855;
}

h3 {
  font-size: 18px;
  margin-top: 20px;
}

p, li {
  font-size: 16px;
  margin-bottom: 12px;
}

ul, ol {
  margin-left: 20px;
  margin-bottom: 20px;
}

a {
  color: #007bff;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* FOOTER */
.footer {
  background-color: #000;
  color: white;
  padding: 30px 20px 15px;
  text-align: center;
}

.footer-links {
  margin-bottom: 15px;
}

.footer-links a {
  color: #ccc;
  margin: 0 15px;
  font-size: 14px;
  text-decoration: none;
}

.footer-links a:hover {
  color: #fff;
}

.footer-copy p {
  font-size: 13px;
  color: #888;
}
