#content {
    margin: 20px;
  }
  
  .asset-page {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
  }
  
  .asset-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
  }
  
  .asset-image img {
    width: 700px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  }
  
  .asset-info {
    max-width: 60%;
    margin-left: 20px;
    background-color: #2b2b2b;
    border-radius: 10px;
    padding: 30px;
    max-width: 320px;
  }
  
  .asset-info h1 {
    font-size: 2rem;
    color: #fff;
    margin: 0;
  }
  
  .category {
    font-size: 1rem;
    color: #777;
  }
  
  .price {
    margin-top: 20px;
  }
  
  .search-btn {
    padding: 12px 25px;
    background-color: #61dafb;
    border: none;
    border-radius: 5px;
    color: black;
    font-size: 1rem;
    margin-top: 10px;
    cursor: pointer;
  }
  
  .search-btn:hover {
    background-color: #4da6d4;
  }
  
  .buy-now {
    padding: 12px 25px;
    background-color: #61dafb;
    border: none;
    border-radius: 5px;
    color: black;
    font-size: 1rem;
    margin-top: 10px;
    cursor: pointer;
  }
  
  .buy-now:hover {
    background-color: #4da6d4;
  }
  
  .description, .details {
    margin-top: 30px;
  }
  
  .description h2, .details h2 {
    font-size: 1.5rem;
    color: #fff;
  }
  
  .description p, .details p {
    font-size: 1rem;
    color: #bbb;
  }
  
  .details p {
    font-size: 1rem;
  }
  
  @media (max-width: 768px) {
    .asset-header {
      flex-direction: column;
      align-items: center;
    }
  
    .asset-image {
      display: flex;
      justify-content: center;
      margin-bottom: 20px;
    }
  
    .asset-image img {
      width: 80%;
      max-width: 300px;
      height: auto;
    }
  
    .asset-info {
      max-width: 100%;
      text-align: center;
      margin: 0;
    }
  
    .price p {
      font-size: 1.1rem;
    }
  
    .search-btn, .buy-now {
      padding: 10px 20px;
      font-size: 0.9rem;
    }
  }
  
  @media (max-width: 480px) {
    .asset-info h1 {
      font-size: 1.5rem;
    }
  
    .asset-info {
      padding: 20px;
    }
  
    .asset-image img {
      max-width: 90%;
    }
  }
  