.donate-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
  }
  
  .donate-section {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: row;
    max-width: 1000px;
    width: 90%;
  }
  
  .donate-info {
    flex: 1;
    padding: 40px;
  }
  
  .donate-info h2 {
    font-size: 32px;
    color: #333;
    margin-bottom: 20px;
  }
  
  .donate-info p {
    font-size: 18px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
  }
  
  .donate-qr {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px;
  }
  
  .donate-qr img {
    max-width: 300px;
    width: 100%;
  }
  
  /* Responsive Styles */
  @media (max-width: 768px) {
    .donate-section {
      flex-direction: column;
    }
  
    .donate-info {
      padding: 30px;
    }
  
    .donate-qr {
      padding: 30px;
    }
  
    .donate-qr img {
      max-width: 200px;
    }
  }
  