body {
  font-family: "Segoe UI", Arial, sans-serif;
  margin: 0;
  color: #222;
  background: #fff;
}

header {
  background: #003366;
  color: white;
  padding: 20px;
  text-align: center;
}

nav a {
  color: white;
  text-decoration: none;
  margin: 0 15px;
  font-weight: 500;
}

nav a:hover {
  text-decoration: underline;
}

main {
  padding: 30px;
}

footer {
  background: #003366;
  color: white;
  text-align: center;
  padding: 15px;
  font-size: 14px;
}
/* --- Logo and header styling --- */
.logo-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin-bottom: 10px;
}

.logo {
  height: 60px;
  filter: brightness(0) invert(1); /* makes it white on dark background */
}

.image-row {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    margin: 30px 0;
    max-width: 900px;         /* same width as your main text */
    margin-left: auto;
    margin-right: auto;
}

.image-row img {
    width: 32%;
    height: 220px;            /* fixed equal height */
    object-fit: cover;        /* crops neatly while keeping proportions */
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}