/* ===== General Page Styling ===== */
body {
  background-color: #001f3f;  /* Dark blue */
  color: white;
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
}

/* ===== Header with Logo ===== */
#header {
  padding: 10px;
  overflow: auto;
  background-color: #001f3f;
}

#logo {
  float: left;
  width: 120px;       /* Enlarged logo */
  padding: 10px;
}

/* ===== Hero Image Section (Full Width, Full Image Visible) ===== */
#top-image img {
  display: block;
  width: 100%;        /* Stretch to full width */
  height: auto;       /* Maintain aspect ratio */
  margin: 0 auto;
  padding: 10px 0;
}

/* ===== Navigation Bar ===== */
#navbar {
  background-color: #005fa3;  /* Lighter blue */
  text-align: center;
  padding: 15px 0;
  margin-top: 10px;           /* Space below hero image */
}

.nav-list {
  list-style-type: none;
  padding: 0;
  margin: 0;
  display: inline-block;
}

.nav-list li {
  display: inline;
  margin: 0 20px;
}

.nav-list a {
  color: white;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1rem;
}

/* ===== Headings ===== */
.main-heading {
  font-size: 3rem;            /* Large main heading */
  margin: 40px 20px 10px 20px;
}

.sub-heading {
  font-size: 2rem;            /* Subheading */
  margin: 30px 20px 10px 20px;
}

h3 {
  font-size: 1.5rem;          /* Section headings */
  margin: 20px 20px 10px 20px;
}

/* ===== Paragraph Styling ===== */
p {
  margin: 0 20px 30px 20px;
  line-height: 1.6;
}

/* ===== Footer Styling ===== */
footer {
  text-align: center;
  padding: 20px;
  margin-top: 40px;
  border-top: 1px solid #444;
  color: #ccc;
  font-size: 0.9rem;
}
