div.column {
	float: left;
	width: 45%;
}

.container {
      max-width: 1000px;
      margin: 0 auto;
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
    }

    .tablerow {
      display: flex;
      justify-content: center;
      align-items: flex-start;
      gap: 2.5rem;
      flex-wrap: wrap;
    }

    .col-left, .col-right {
      flex: 1;
      min-width: 300px;
      display: flex;
      flex-direction: column;
      gap: 1rem;
    }

    .box {
      background: var(--bg);
      border:1px solid rgb(16, 95, 148);
      border-radius: 14px;
      padding: 1.3rem 1.4rem;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
      transition: all 0.2s ease;
    }

    .box:hover {
      transform: translateY(-3px);
      box-shadow: 0 8px 20px rgba(59, 130, 246, 0.15);
    }

    .box p {
      margin: 0 0 0.4rem;
      color: #1e40af;
      line-height: 1.4;
    }

    .box p {
      margin: 0.5rem 0 0;
    }

    .highlight {
      color: #1e40af;
    }

    /* Top Label (still kept, as in your design) */
    .top-label {
      text-align: center;
      margin-bottom: 1rem;
      color: #1e40af;
    }

    /* Responsive */
    @media (max-width: 768px) {
      .row {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
      }
      .top-label {
        order: -1;
      }
    }

    .historyImg{
      width: 150px;
      height: auto;
    }

    .introImg{
      width: 300px;
      height: auto;
    }

.history-table {
    display: flex;
    width: 100%;
    max-width: 900px;
    margin: 1.5rem auto;
    border-radius: 12px;
    overflow: hidden;
  }

  /* LEFT: Rowspan 2 cell – set your width here */
  .history-cell-span {
    flex: 0 0 10%;               /* Change 30% to whatever you want */
    display: flex;
    text-align: center;
    /* Automatically stretches to full height */
    align-self: stretch;
    padding-right: 1.5rem;
  }

  /* RIGHT: Container for the two rows – takes ALL remaining space */
  .right-column {
    flex: 1;                     /* This is the key: takes 100% of remaining space */
    display: flex;
    flex-direction: column;
  }

  /* Normal right cells */
  .history-cell {
    flex: 1;
    display: flex;
    align-items: center;
    text-align: center;
  }

  /* Remove border from last cell */
  .history-cell:last-child {
    border-bottom: none;
  }

  /* Responsive: stack vertically on small screens */
  @media (max-width: 640px) {
    .history-table {
      flex-direction: column;
    }
    .history-cell-span,
    .right-column {
      flex: 0 0 100%;
    }
    .history-cell {
      border-bottom: 1px solid #ddd;
    }
  }
