body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  margin: 0;
  padding: 0;
  background: #fafafa;
  color: #333;
}

header {
  background: #003366;
  color: #fff;
  padding: 1rem 0;
}

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

nav {
  text-align: center;
  margin-top: 0.5rem;
}

nav a {
  color: #fff;
  margin: 0 10px;
  text-decoration: none;
  font-weight: bold;
}

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

.container {
  width: 85%;
  max-width: 900px;
  margin: 2rem auto;
}

.profile-pic {
  width: 150px;
  border-radius: 50%;
  display: block;
  margin: 0 auto 1rem;
}

.logo-box {
  display: flex;
  gap: 10px;
}

.logo {
  height: 60px;
}

.logo.small {
  height: 40px;
}

h2 {
  color: #003366;
}

footer {
  background: #003366;
  color: #fff;
  padding: 1rem 0;
}

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