body {
    margin: 0;
    padding: 0;
    font-family: 'Ubuntu Mono', Arial, sans-serif;
    background: #dbdbdb;
  }
  
  .split-container {
    display: flex;
    height: 100vh;
    width: 100vw;
  }
  
  .split {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .left {
    background: #515739;
    color: #dbdbdb;
  }
  
  .right {
    background: #df6630;
    color: #dbdbdb;
  }
  
  .content {
    max-width: 500px;
    width: 100%;
    text-align: left;
    padding-left: 40px;
    padding-right: 40px;
    box-sizing: border-box;
  }
  
  h1 {
    font-family: 'Jersey 20', Arial, sans-serif;
    font-size: 3.5rem;
    font-weight: bold;
    margin-bottom: 24px;
    line-height: 1.1;
  }
  
  p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 32px;
    color: #df6630;
  }

  .highlight {
    color: #dce4b8;
  }
  
  .stats {
    font-size: 1rem;
    display: flex;
    justify-content: flex-start;
    gap: 48px;
    border-top: 2px solid #dbdbdb;
    padding-top: 28px;
    margin-top: 32px;
  }
  
  .stat-number {
    display: block;
    font-size: 2.2rem;
    font-weight: bold;
    color: #dce4b8;
    margin-bottom: 6px;
    text-align: left;
  }
  
  .stat-label {
    display: block;
    font-size: 1rem;
    color: #dce4b8;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-align: left;
  }
  
  ul {
    list-style: none;
    padding: 0;
    margin-bottom: 40px;
  }
  
  ul li {
    font-size: 1rem;
    margin-bottom: 12px;
    position: relative;
    padding-left: 28px;
  }
  
  ul li:before {
    content: ">";
    color: #dce4b8;
    position: absolute;
    left: 0;
    top: 0;
    font-size: 1.1rem;
  }
  
  .learn-more-btn {
    font-family: 'Jersey 20', Arial, sans-serif;
    display: inline-block;
    padding: 16px 38px;
    border: 2px solid #dbdbdb;
    border-radius: 4px;
    background: transparent;
    color: #dce4b8;
    font-size: 1rem;
    font-weight: bold;
    letter-spacing: 1px;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
    cursor: pointer;
  }
  
  .learn-more-btn:hover {
    background: #515739;
    color: #df6630;
  }
  
  @media (max-width: 900px) {
    .split-container {
      flex-direction: column;
      height: auto;
      width: 100vw;
      align-items: center; 
      justify-content: center; 
    }
    .split {
      width: 100vw;
      height: 50vh;
      position: static;
      align-items: center;
      justify-content: center;
    }
    .content {
      max-width: 100%;
      padding: 40px 20px;
      margin: 0 auto;
    }
  }