* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  overflow-x: hidden;
  width: 100%;
}

body {
  font-family: "MaerskText", sans-serif;
  color: #333;
}

/* ── Hero ── */
.hero {
  position: relative;
  width: 100vw;
  height: 70svh;
  min-height: 500px;
  background-image: url("/public/images/Maasvlakte-Quay.jpg");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 30, 60, 0.45);
  opacity: 1;
}

.hero__content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: #ffffff;
}

.hero__content h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.hero__content p {
  font-size: 1.1rem;
  opacity: 0.85;
}

/* ── Page content below hero (gives room to scroll) ── */
.page-section {
  max-width: 80%;
  margin: 0 auto;
  padding: 80px 0;
}

.page-section h2 {
  font-size: 1.75rem;
  color: #005986;
  margin-bottom: 16px;
}

.page-section p {
  line-height: 1.8;
  color: #555;
  margin-bottom: 24px;
}
