/* ------------------ GENERAL STYLES ------------------ */
body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  background-color: #fdfdfd; /* very light gray/white */
  color: #333;
  margin: 0;
  padding: 0;
}

/* Top banner image */
.top-banner img {
  width: 100%;
  max-height: 300px;
  object-fit: cover;
  display: block;
  border-bottom: 2px solid #e0e0e0;
}

/* Header styling */
header {
  display: flex;
  align-items: center;
  padding: 15px 20px;
  background-color: #ffffff; /* white header */
  border-bottom: 2px solid #ddd;
  box-shadow: 0 1px 3px rgba(0,0,0,0.05); /* subtle shadow for depth */
}

header .logo {
  width: 80px;
  height: auto;
  margin-right: 15px;
}

header h1 {
  font-size: 1.8rem;
  margin: 0;
  color: #222;
}

/* ------------------ STORY SECTIONS ------------------ */
.story {
  display: flex;
  align-items: flex-start;
  background-color: #ffffff; /* white story card */
  margin: 20px auto;
  padding: 15px;
  max-width:
