body {
  margin: 0;
  font-family: Arial, sans-serif;
  background-color: #88AA88;
}

.container {
  display: flex;
  height: 100vh;
}

.left, .right {
  flex: 1;
  padding: 40px;
  box-sizing: border-box;
}

.left {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #88AA88;
}

.image-placeholder {
  width: 300px;
  height: 300px;
  background-color: #ffffff;
  color: #333;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0,0,0,0.2);
}

.right {
  background-color: #88AA88;
  color: #fff;
  overflow-y: auto;
}
