/* Reset basic styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Page background & font */
body {
  font-family: "Segoe UI", Arial, sans-serif;
  background: #f5f7fa;
  color: #333;
}

/* Header styling */
.main-header {
  background-color: #004aad;
  color: white;
  padding: 15px 0;
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.main-header .container {
  width: 90%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.8em;
  font-weight: bold;
  letter-spacing: 1px;
}

.logo span {
  color: #ffd700;
}

/* Navigation */
.nav-links {
  list-style: none;
  display: flex;
  gap: 25px;
}

.nav-links a {
  text-decoration: none;
  color: white;
  font-weight: 500;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: #ffd700;
}

/* Content styling */
.content {
  width: 90%;
  margin: 40px auto;
  min-height: 60vh;
}

/* Footer styling */
.main-footer {
  background: #002b6f;
  color: #ccc;
  text-align: center;
  padding: 20px 0;
  font-size: 0.9em;
}

.main-footer p {
  margin: 0;
}

@media (max-width: 768px) {
  .nav-links {
    flex-direction: column;
    gap: 10px;
    align-items: center;
  }
}

.main-footer {
  background-color: #002b6f;   /* dark blue background */
  color: #ccc;                 /* light text */
  text-align: center;           /* center text horizontally */
  padding: 20px 0;             /* space inside the footer */
  font-size: 0.9em;            /* slightly smaller font */
  width: 100%;                 /* span full width */
}

.main-footer a {
  color: #ffd700;              /* link color */
  text-decoration: none;
  margin: 0 5px;
}

.main-footer a:hover {
  text-decoration: underline;
}
