.history {
  background: #fff;
}
.top-img {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  img {
    width: 100%;
  }
  h1 {
    font-size: 38px;
    font-weight: 500;
    position: absolute;
    color: #fff;
    margin-bottom: 0 !important;
    letter-spacing: 0.12em;
  }
}
.history-container {
  padding: 0 15px;
}

/* Each row is a flex container */
.history-row {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  border-bottom: 1px solid #e0e0e0;
  padding: 14px 0;
  gap: 36px; /* Space between year and description */
}

/* Year column */
.history-year {
  flex: 0 0 80px; /* Fixed width for year */
  font-weight: 500;
  font-size: 18px;
  white-space: nowrap;
  letter-spacing: 0.09em;
  color: #191919;
}

/* Description column */
.history-desc {
  flex: 1;
  font-size: 16px;
  letter-spacing: 0.09em;
  font-weight: 400;
  color: #191919;
}

.history-desc p {
  margin: 0 0 16px 0;
}

.history-desc p:last-child {
  margin-bottom: 0;
}
