.landing-container {
  max-width: 900px;
  width: 100%;
  padding: 3rem 2rem;
  margin: 4rem auto;
  text-align: center;
  position: relative;
  z-index: 10;
}
.essay-card {
  padding: 3rem;
  margin-bottom: 2.5rem;
  text-align: justify;
}
.essay-title {
  text-align: center;
  margin-bottom: 2.5rem;
  line-height: 1.3;
}
.essay-content {
  font-size: 1.15rem;
  line-height: 1.8;
  color: var(--text-secondary);
}
.essay-paragraph {
  margin-bottom: 1.75rem;
  text-indent: 2rem;
}
.essay-paragraph:last-of-type {
  margin-bottom: 0;
}
.essay-callout {
  border-left: 4px solid var(--neon-cyan);
  background: rgba(0, 240, 255, 0.03);
  padding: 1.5rem;
  margin: 2rem 0;
  border-radius: 0 8px 8px 0;
  font-style: italic;
}
.proceed-wrapper {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}
@media (max-width: 768px) {
  .landing-container {
    padding: 1.5rem;
    margin: 2rem auto;
  }
  .essay-card {
    padding: 1.5rem;
  }
  .essay-title {
    font-size: 1.8rem;
  }
  .essay-content {
    font-size: 1rem;
    line-height: 1.6;
  }
}
