    .download {
        display: flex;
        flex-wrap: wrap;
        gap: 20px;
        justify-content: center;
        max-width: 1200px;
        margin: auto;
      }
  
      .download-card {
        display: flex;
        background: #fff;
        border-radius: 12px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        overflow: hidden;
        transition: transform 0.2s;
        flex: 1 1 48%;
        min-width: 300px;
      }
  
      .download-card:hover {
        transform: translateY(-4px);
      }
  
      .download-card img {
        width: 200px;
        height: 100%;
        object-fit: cover;
        flex-shrink: 0;
        padding: 16px;
      }
  
      .card-content {
        padding: 16px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        flex: 1;
      }
  
      .card-content h3 {
        margin: 0 0 8px;
        font-size: 20px;
        color: #333;
      }
  
      .card-content p {
        font-size: 14px;
        color: #666;
        margin-bottom: 16px;
      }
  
     .download-btn{
        max-width: 50%;
     }
  
      @media (max-width: 991px) {
  
        .download-card img {
          width: 50%;
          height: auto;
        }
  
        .card-content {
          text-align: center;
          align-items: center;
        }
        .download-btn{
            max-width: 100%;
            margin-right: 0px !important;
         }
   
      }