body {
    margin: 0;
    font-family: 'Anton', sans-serif;
    color: white;
    display: flex;
    height: 100vh;
    overflow: hidden;
  }
  
  .left-panel {
    width: 35%;
    background: linear-gradient(to right, #a00000, #000);
    padding: 40px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow-y: auto;
  }
  
  .left-panel h1 {
    font-size: 40px;
    margin-bottom: 20px;
    font-family: 'Bebas Neue', Impact, sans-serif;

  }
  
  .left-panel p {
    font-size: 30px;
    line-height: 1.5;
    font-family: 'Bebas Neue', Impact, sans-serif;
  }
  
  .back-button {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background-color: red;
    color: white;
    text-decoration: none;
    padding: 10px 20px;
    font-size: 30px;
    font-weight: bold;
    border: none;
    border-radius: 0;
    display: inline-block;
    clip-path: polygon(20% 0%, 100% 0%, 80% 100%, 0% 100%);
    font-family: 'Bebas Neue', Impact, sans-serif;
    z-index: 10;
  }
  
  .right-panel {
    width: 65%;
    background: black;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .car-image {
    max-width: 80%;
    max-height: 80%;
  }

  @media (max-width: 768px) {
  body {
    flex-direction: column;
    position: relative;
  }

  .left-panel {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 20px;
    background: rgba(0, 0, 0, 0.7); 
    z-index: 2;
    color: white;
    overflow-y: auto;
  }

  .right-panel {
    position: relative;
    width: 100%;
    height: 100vh;
    background: black;
    z-index: 1;
  }

  .car-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
  }

  .left-panel h1 {
    font-size: 28px;
  }

  .left-panel p {
    font-size: 16px;
  }
  
    .back-button {
      font-size: 14px;
      padding: 8px 16px;
    }
  }  
  