/* style.css */
:root {
  --primary-blue: #0044cc;
  --light-blue: #e6f0ff;
}

body {
  margin: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: white;
  color: #333;
}

header {
  background-color: var(--primary-blue);
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #ddd;
}

nav a {
  color: white;
  text-decoration: none;
  margin-left: 1.5rem;
  font-weight: 500;
}

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

main {
  padding: 2rem;
}

footer {
  background-color: var(--primary-blue);
  color: white;
  text-align: center;
  padding: 1.5rem 1rem;
  margin-top: 4rem;
}
.page-image {
  text-align: center;
  margin: 1.5rem 0;
}

.page-image img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

