body {
  margin: 0;
  font-family: 'Courier New', Courier, monospace;
  background-color: #0dd4b8;
}

.header {
  background-color: #0b388b;
  color: white;
  text-align: center;
  padding: 60px 20px 80px;
  position: relative;
  z-index: 1;
}

.logo {
  width: 300px;
  margin-bottom: 10px;
}

.header h1 {
  margin: 0;
  font-size: 2.5em;
}

.header p {
  margin: 10px 0 0;
  font-size: 1.2em;
  color: #0dd4b8;
}

.curve {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  z-index: 1;
}

.curve svg {
  display: block;
  width: 100%;
  height: 120px;
}

.nav-button {
  position: absolute;
  top: 20px;
  z-index: 2;
}

.nav-button.left {
  left: 20px;
}

.nav-button.right {
  right: 20px;
}

.btn-white {
  background-color: white;
  color: black;
  font-size: 1rem;
  padding: 8px 14px;
  border: 1px solid black;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 500;
  transition: background-color 0.3s ease;
}

.btn-white:hover {
  background-color: #aae9fa;
}

.content {
  padding: 60px 20px;
  text-align: center;
  color: black;
  min-height: 100vh;
  position: relative;
  font-size: 2rem;
  z-index: 0;
}

.image-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  margin-top: 50px;
  flex-wrap: wrap;
}

.half-image {
  height: 400px;
  max-width: 200%;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  object-fit: cover;
  transition: transform 0.3s ease;
}

.half-image:hover {
  transform: scale(1.05);
}