body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background-color: #f8f9fb;
  color: #1a1a1a;
}

header {
  background-color: #0d355d;
  color: white;
  padding: 40px 20px;
  text-align: center;
}

header img {
  width: 460px; /* percentage or absolute px (e.g. 460px) is allowed */
  margin-bottom: 10px;
}

h1 {
  margin: 0;
  font-size: 2.5rem;
}

h2 {
  font-size: 1.8rem;
  margin-top: 40px;
  color: #0d355d;
}

section {
  max-width: 900px;
  margin: auto;
  padding: 40px 20px;
}

.section-light {
  background-color: #ffffff;
}

.section-dark {
  background-color: #eaeef3;
}

.section img {
  max-width: 10%;  /* Image will scale down to fit within the container you can also use px */
  height: auto;  /* Maintain aspect ratio */
  position: relative; /* Position the image within the container (relative or absolute) */
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  margin: 0; /* Center the image within the container */
  object-fit: cover; /* Fill the container, cropping if necessary */
}

p {
  font-size: 1.1rem;
  line-height: 1.6;
}

ul {
  font-size: 1.1rem;
  line-height: 1.8;
  padding-left: 20px;
}

.contact {
  text-align: center;
  padding: 40px 20px;
}

.contact a {
  color: #0d355d;
  text-decoration: none;
  font-weight: bold;
}

footer {
  text-align: center;
  background-color: #0d355d;
  color: white;
  padding: 20px;
  font-size: 0.9rem;
}
