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

body {
  font-family: 'Georgia', serif;
  background: #f5f5f5;
}

.container {
  display: flex;
  height: 100vh;
}

#map {
  flex: 1;
  position: sticky;
  top: 0;
  height: 100vh;
}

.story-panel {
  width: 450px;
  overflow-y: auto;
  background: white;
  box-shadow: -2px 0 10px rgba(0,0,0,0.1);
}

.story-section {
  min-height: 100vh;
  padding: 4rem 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.story-section.active {
  background: #fff;
}

h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #2c3e50;
}

h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: #34495e;
}

p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #555;
  margin-bottom: 1rem;
}

.intro {
  background: #2c3e50;
  color: white;
}

.intro h1, .intro p {
  color: white;
}

@media (max-width: 768px) {
  .container {
    flex-direction: column;
  }

  #map {
    height: 50vh;
    position: relative;
  }

  .story-panel {
    width: 100%;
  }
}
