.container {
    display: grid;
    grid-gap: 20px;
    padding: 20px;
  }
  .system-row {
    display: grid;
    grid-template-columns: 25% 75%;
    align-items: start;
    margin-bottom: 20px;
  }
  .logo {
    width: 50%;
    height: 50%;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center top;
  }
  .system-content {
    display: grid;
    grid-template-rows: auto 1fr;
  }
  .system-name {
    font-size: 1.5em;
    font-weight: bold;
    margin-bottom: 10px;
  }
  .system-details {
    list-style-type: none;
  }
  .system-details li {
    margin-bottom: 10px;
  }
  .system-details .label {
    font-weight: bold;
    font-size: 1em;
    color: rgb(73, 72, 72);
}
  .features {
    margin-left: 30px;
    list-style-type: circle;
    margin-top: 10px;
  }